From 4254e29917d8911278a3bbefe4cd421af8a26188 Mon Sep 17 00:00:00 2001 From: Gyoo Date: Fri, 9 Aug 2024 20:08:49 +0200 Subject: [PATCH] DDR Implementation (#1132) * feat: DDR Implementation * style: lint fixes * chore: update rg-stats * feat: ddr konaste songs and charts update --- client/example/.env | 2 +- client/package.json | 4 +- .../app/pages/dashboard/import/ImportPage.tsx | 1 + client/src/components/gpt-utils/GPTUtils.tsx | 2 + .../components/tables/cells/DDRScoreCell.tsx | 28 + client/src/lib/game-implementations.tsx | 3 + client/src/lib/games/ddr.tsx | 154 + common/src/config/config.ts | 4 + common/src/config/game-support/ddr.ts | 195 + common/src/constants/grade-boundaries.ts | 20 + common/src/utils/util.ts | 1 + database-seeds/collections/charts-ddr.json | 149220 +++++++++++++++ database-seeds/collections/folders.json | 646 + database-seeds/collections/songs-ddr.json | 14258 ++ database-seeds/collections/tables.json | 60 + .../rerunners/add-table-and-folders.js | 41 +- .../scripts/rerunners/ddr/README.md | 30 + .../rerunners/ddr/parse-gameData-json.ts | 37 + .../rerunners/ddr/parse-gameData-xml.ts | 9 + .../scripts/rerunners/ddr/parse-gameData.ts | 147 + docs/docs/game-support/games/ddr-DP.md | 86 + docs/docs/game-support/games/ddr-SP.md | 86 + pnpm-lock.yaml | 12 +- server/example/conf.json5 | 1 + server/package.json | 4 +- .../game-implementations.ts | 3 + .../game-implementations/games/ddr.test.ts | 197 + server/src/game-implementations/games/ddr.ts | 342 + .../src/lib/migration/migrations/v3-props.ts | 1 + .../src/lib/migration/migrations/v3-scores.ts | 2 + server/src/test-utils/misc.ts | 5 + server/src/test-utils/test-data.ts | 97 + 32 files changed, 165652 insertions(+), 46 deletions(-) create mode 100644 client/src/components/tables/cells/DDRScoreCell.tsx create mode 100644 client/src/lib/games/ddr.tsx create mode 100644 common/src/config/game-support/ddr.ts create mode 100644 database-seeds/collections/charts-ddr.json create mode 100644 database-seeds/collections/songs-ddr.json create mode 100644 database-seeds/scripts/rerunners/ddr/README.md create mode 100644 database-seeds/scripts/rerunners/ddr/parse-gameData-json.ts create mode 100644 database-seeds/scripts/rerunners/ddr/parse-gameData-xml.ts create mode 100644 database-seeds/scripts/rerunners/ddr/parse-gameData.ts create mode 100644 docs/docs/game-support/games/ddr-DP.md create mode 100644 docs/docs/game-support/games/ddr-SP.md create mode 100644 server/src/game-implementations/games/ddr.test.ts create mode 100644 server/src/game-implementations/games/ddr.ts diff --git a/client/example/.env b/client/example/.env index 45632562a..11d328df1 100644 --- a/client/example/.env +++ b/client/example/.env @@ -12,4 +12,4 @@ TACHI_NAME="Tachi Local Dev" # turn this off if you're on linux for actually good performance # this needs to be on for windows because lol lmao -FORCE_FS_POLLING="true" \ No newline at end of file +FORCE_FS_POLLING="true" diff --git a/client/package.json b/client/package.json index dd4f6d559..6e345e0da 100644 --- a/client/package.json +++ b/client/package.json @@ -68,7 +68,7 @@ "react-router-bootstrap": "^0.25.0", "react-router-dom": "5.1.2", "react-select": "^5.6.1", - "rg-stats": "0.5.6", + "rg-stats": "0.5.8", "sync-fetch": "^0.3.1", "tachi-common": "workspace:../common", "vite-plugin-html": "^3.2.0" @@ -91,4 +91,4 @@ "node": "20", "pnpm": "8" } -} \ No newline at end of file +} diff --git a/client/src/app/pages/dashboard/import/ImportPage.tsx b/client/src/app/pages/dashboard/import/ImportPage.tsx index cbef105d5..4092d48d3 100644 --- a/client/src/app/pages/dashboard/import/ImportPage.tsx +++ b/client/src/app/pages/dashboard/import/ImportPage.tsx @@ -397,6 +397,7 @@ function InputAlert({ game }: { game: Game }) { case "popn": case "wacca": case "ongeki": + case "ddr": return ( <> Scores must be achieved on an arcade-size controller! diff --git a/client/src/components/gpt-utils/GPTUtils.tsx b/client/src/components/gpt-utils/GPTUtils.tsx index ca878a648..de2dae879 100644 --- a/client/src/components/gpt-utils/GPTUtils.tsx +++ b/client/src/components/gpt-utils/GPTUtils.tsx @@ -29,6 +29,8 @@ const GPT_UTILS: Record> = { "maimaidx:Single": [], "maimai:Single": [], "ongeki:Single": [], + "ddr:SP": [], + "ddr:DP": [], }; export function GetGPTUtils(game: Game, playtype: Playtype) { diff --git a/client/src/components/tables/cells/DDRScoreCell.tsx b/client/src/components/tables/cells/DDRScoreCell.tsx new file mode 100644 index 000000000..39d4a931f --- /dev/null +++ b/client/src/components/tables/cells/DDRScoreCell.tsx @@ -0,0 +1,28 @@ +import { ChangeOpacity } from "util/color-opacity"; +import React from "react"; +import { integer } from "tachi-common"; + +export default function DDRScoreCell({ + score, + colour, + grade, + scoreRenderFn, +}: { + score?: integer; + grade: string; + colour: string; + showScore?: boolean; + scoreRenderFn?: (s: number) => string; +}) { + return ( + + {grade} +
+ {score !== undefined && <>{scoreRenderFn ? scoreRenderFn(score) : score}} + + ); +} diff --git a/client/src/lib/game-implementations.tsx b/client/src/lib/game-implementations.tsx index 0e7017250..e3fb66b33 100644 --- a/client/src/lib/game-implementations.tsx +++ b/client/src/lib/game-implementations.tsx @@ -27,6 +27,7 @@ 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"; +import { DDR_DP_IMPL, DDR_SP_IMPL } from "./games/ddr"; type GPTClientImplementations = { [GPT in GPTString]: GPTClientImplementation; @@ -40,6 +41,8 @@ const defaultEnumIcons = { export const GPT_CLIENT_IMPLEMENTATIONS: GPTClientImplementations = { "iidx:SP": IIDX_SP_IMPL, "iidx:DP": IIDX_DP_IMPL, + "ddr:SP": DDR_SP_IMPL, + "ddr:DP": DDR_DP_IMPL, "chunithm:Single": { sessionImportantScoreCount: 30, enumIcons: defaultEnumIcons, diff --git a/client/src/lib/games/ddr.tsx b/client/src/lib/games/ddr.tsx new file mode 100644 index 000000000..a336bc93f --- /dev/null +++ b/client/src/lib/games/ddr.tsx @@ -0,0 +1,154 @@ +import { NumericSOV } from "util/sorts"; +import { GPTClientImplementation } from "lib/types"; +import { COLOUR_SET, GPTStrings } from "tachi-common"; +import ScoreCell from "components/tables/cells/ScoreCell"; +import { GetEnumColour } from "lib/game-implementations"; +import React from "react"; +import RatingCell from "components/tables/cells/RatingCell"; +import LampCell from "../../components/tables/cells/LampCell"; +import DDRScoreCell from "../../components/tables/cells/DDRScoreCell"; +import { bg, bgc } from "./_util"; + +const DDR_ENUM_COLOURS: GPTClientImplementation["enumColours"] = { + grade: { + E: COLOUR_SET.gray, + D: COLOUR_SET.paleBlue, + "D+": COLOUR_SET.paleBlue, + "C-": COLOUR_SET.purple, + C: COLOUR_SET.purple, + "C+": COLOUR_SET.purple, + "B-": COLOUR_SET.blue, + B: COLOUR_SET.blue, + "B+": COLOUR_SET.blue, + "A-": COLOUR_SET.gold, + A: COLOUR_SET.gold, + "A+": COLOUR_SET.gold, + "AA-": COLOUR_SET.gold, + AA: COLOUR_SET.gold, + "AA+": COLOUR_SET.gold, + AAA: COLOUR_SET.teal, + }, + lamp: { + FAILED: COLOUR_SET.maroon, + ASSIST: COLOUR_SET.purple, + CLEAR: COLOUR_SET.blue, + "FULL COMBO": COLOUR_SET.vibrantBlue, + "GREAT FULL COMBO": COLOUR_SET.vibrantGreen, + "PERFECT FULL COMBO": COLOUR_SET.gold, + "MARVELOUS FULL COMBO": COLOUR_SET.pink, + LIFE4: COLOUR_SET.vibrantRed, + }, +}; + +const DDR_DIFF_COLOURS: GPTClientImplementation["difficultyColours"] = { + BEGINNER: COLOUR_SET.blue, + BASIC: COLOUR_SET.paleGreen, + DIFFICULT: COLOUR_SET.red, + EXPERT: COLOUR_SET.vibrantYellow, + CHALLENGE: COLOUR_SET.purple, +}; + +const DDR_HEADERS: GPTClientImplementation<"ddr:SP" | "ddr:DP">["scoreHeaders"] = [ + ["Score", "Score", NumericSOV((x) => x.scoreData.score)], + ["Lamp", "Lamp", NumericSOV((x) => x.scoreData.enumIndexes.lamp)], +]; + +const DDR_COLOURS: GPTClientImplementation<"ddr:SP" | "ddr:DP">["classColours"] = { + flare: { + NONE: bg("gray"), + "NONE+": bg("gray"), + "NONE++": bg("gray"), + "NONE+++": bg("gray"), + MERCURY: bg("blue"), + "MERCURY+": bg("blue"), + "MERCURY++": bg("blue"), + "MERCURY+++": bg("blue"), + VENUS: bgc("yellow", "black"), + "VENUS+": bgc("yellow", "black"), + "VENUS++": bgc("yellow", "black"), + "VENUS+++": bgc("yellow", "black"), + EARTH: bg("forestgreen"), + "EARTH+": bg("forestgreen"), + "EARTH++": bg("forestgreen"), + "EARTH+++": bg("forestgreen"), + MARS: bg("red"), + "MARS+": bg("red"), + "MARS++": bg("red"), + "MARS+++": bg("red"), + JUPITER: bg("darkgreen"), + "JUPITER+": bg("darkgreen"), + "JUPITER++": bg("darkgreen"), + "JUPITER+++": bg("darkgreen"), + SATURN: bg("purple"), + "SATURN+": bg("purple"), + "SATURN++": bg("purple"), + "SATURN+++": bg("purple"), + URANUS: bgc("powderblue", "black"), + "URANUS+": bgc("powderblue", "black"), + "URANUS++": bgc("powderblue", "black"), + "URANUS+++": bgc("powderblue", "black"), + NEPTUNE: bg("darkslateblue"), + "NEPTUNE+": bg("darkslateblue"), + "NEPTUNE++": bg("darkslateblue"), + "NEPTUNE+++": bg("darkslateblue"), + SUN: bg("orange"), + "SUN+": bg("orange"), + "SUN++": bg("orange"), + "SUN+++": bg("orange"), + WORLD: bg("black"), + }, +}; + +const DDRCoreCells: GPTClientImplementation["scoreCoreCells"] = ({ + sc, + chart, +}) => ( + <> + + + +); + +const DDRRatingCell: GPTClientImplementation["ratingCell"] = ({ + sc, + chart, + rating, +}) => ( + <> + + +); + +export const DDR_SP_IMPL: GPTClientImplementation<"ddr:SP"> = { + sessionImportantScoreCount: 20, + difficultyColours: DDR_DIFF_COLOURS, + enumColours: DDR_ENUM_COLOURS, + enumIcons: { + grade: "sort-alpha-up", + lamp: "lightbulb", + }, + ratingSystems: [], + scoreHeaders: DDR_HEADERS, + classColours: DDR_COLOURS, + scoreCoreCells: DDRCoreCells, + ratingCell: DDRRatingCell, +}; + +export const DDR_DP_IMPL: GPTClientImplementation<"ddr:DP"> = { + sessionImportantScoreCount: 20, + difficultyColours: DDR_DIFF_COLOURS, + enumColours: DDR_ENUM_COLOURS, + enumIcons: { + grade: "sort-alpha-up", + lamp: "lightbulb", + }, + ratingSystems: [], + scoreHeaders: DDR_HEADERS, + classColours: DDR_COLOURS, + scoreCoreCells: DDRCoreCells, + ratingCell: DDRRatingCell, +}; diff --git a/common/src/config/config.ts b/common/src/config/config.ts index bc05823aa..afebdb1a8 100644 --- a/common/src/config/config.ts +++ b/common/src/config/config.ts @@ -3,6 +3,7 @@ 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 { DDR_CONF, DDR_DP_CONF, DDR_SP_CONF } from "./game-support/ddr"; import { GITADORA_CONF, GITADORA_DORA_CONF, GITADORA_GITA_CONF } from "./game-support/gitadora"; import { IIDX_CONF, IIDX_DP_CONF, IIDX_SP_CONF } from "./game-support/iidx"; import { ITG_CONF, ITG_STAMINA_CONF } from "./game-support/itg"; @@ -50,6 +51,7 @@ export const GAME_CONFIGS = { itg: ITG_CONF, arcaea: ARCAEA_CONF, ongeki: ONGEKI_CONF, + ddr: DDR_CONF, } as const satisfies Record; /** @@ -98,6 +100,8 @@ export const GAME_PT_CONFIGS = { "itg:Stamina": ITG_STAMINA_CONF, "arcaea:Touch": ARCAEA_TOUCH_CONF, "ongeki:Single": ONGEKI_SINGLE_CONF, + "ddr:SP": DDR_SP_CONF, + "ddr:DP": DDR_DP_CONF, } as const satisfies Record; /** diff --git a/common/src/config/game-support/ddr.ts b/common/src/config/game-support/ddr.ts new file mode 100644 index 000000000..ff56dc543 --- /dev/null +++ b/common/src/config/game-support/ddr.ts @@ -0,0 +1,195 @@ +import { IIDXDans } from "./iidx"; +import { FmtNum, FmtPercent, FmtScoreNoCommas } from "../../utils/util"; +import { ClassValue, zodNonNegativeInt } from "../config-utils"; +import { p } from "prudence"; +import { z } from "zod"; +import type { INTERNAL_GAME_CONFIG, INTERNAL_GAME_PT_CONFIG } from "../../types/internals"; + +export const DDR_FLARE_CATEGORIES = z.enum(["CLASSIC", "WHITE", "GOLD", "NONE"]); + +export const DDR_DIFFICULTIES = ["BEGINNER", "BASIC", "DIFFICULT", "EXPERT", "CHALLENGE"]; + +export const DDRFlare = [ + ClassValue("NONE", "NONE"), + ClassValue("NONE+", "NONE+"), + ClassValue("NONE++", "NONE++"), + ClassValue("NONE+++", "NONE+++"), + ClassValue("MERCURY", "水星 / MERCURY"), + ClassValue("MERCURY+", "水星 / MERCURY+"), + ClassValue("MERCURY++", "水星 / MERCURY++"), + ClassValue("MERCURY+++", "水星 / MERCURY+++"), + ClassValue("VENUS", "金星 / VENUS"), + ClassValue("VENUS+", "金星 / VENUS+"), + ClassValue("VENUS++", "金星 / VENUS++"), + ClassValue("VENUS+++", "金星 / VENUS+++"), + ClassValue("EARTH", "地球 / EARTH"), + ClassValue("EARTH+", "地球 / EARTH+"), + ClassValue("EARTH++", "地球 / EARTH++"), + ClassValue("EARTH+++", "地球 / EARTH+++"), + ClassValue("MARS", "火星 / MARS"), + ClassValue("MARS+", "火星 / MARS+"), + ClassValue("MARS++", "火星 / MARS++"), + ClassValue("MARS+++", "火星 / MARS+++"), + ClassValue("JUPITER", "木星 / JUPITER"), + ClassValue("JUPITER+", "木星 / JUPITER+"), + ClassValue("JUPITER++", "木星 / JUPITER++"), + ClassValue("JUPITER+++", "木星 / JUPITER+++"), + ClassValue("SATURN", "土星 / SATURN"), + ClassValue("SATURN+", "土星 / SATURN+"), + ClassValue("SATURN++", "土星 / SATURN++"), + ClassValue("SATURN+++", "土星 / SATURN+++"), + ClassValue("URANUS", "天王星 / URANUS"), + ClassValue("URANUS+", "天王星 / URANUS+"), + ClassValue("URANUS++", "天王星 / URANUS++"), + ClassValue("URANUS+++", "天王星 / URANUS+++"), + ClassValue("NEPTUNE", "海王星 / NEPTUNE"), + ClassValue("NEPTUNE+", "海王星 / NEPTUNE+"), + ClassValue("NEPTUNE++", "海王星 / NEPTUNE++"), + ClassValue("NEPTUNE+++", "海王星 / NEPTUNE+++"), + ClassValue("SUN", "太陽 / SUN"), + ClassValue("SUN+", "太陽 / SUN+"), + ClassValue("SUN++", "太陽 / SUN++"), + ClassValue("SUN+++", "太陽 / SUN+++"), + ClassValue("WORLD", "世界 / WORLD"), +]; + +export const DDR_CONF = { + name: "DDR", + playtypes: ["SP", "DP"], + songData: z.strictObject({ + inGameID: zodNonNegativeInt, + flareCategory: DDR_FLARE_CATEGORIES, + }), +} as const satisfies INTERNAL_GAME_CONFIG; + +export const DDR_SP_CONF = { + providedMetrics: { + score: { + type: "INTEGER", + validate: p.isBetween(0, 1_000_000), + formatter: FmtNum, + description: "The score value. This is between 0 and 1 million.", + }, + + lamp: { + type: "ENUM", + values: [ + "FAILED", + "ASSIST", + "CLEAR", + "FULL COMBO", + "GREAT FULL COMBO", + "PERFECT FULL COMBO", + "MARVELOUS FULL COMBO", + "LIFE4", + ], + minimumRelevantValue: "CLEAR", + description: "The type of clear this user got.", + }, + }, + + derivedMetrics: { + grade: { + type: "ENUM", + values: [ + "E", + "D", + "D+", + "C-", + "C", + "C+", + "B-", + "B", + "B+", + "A-", + "A", + "A+", + "AA-", + "AA", + "AA+", + "AAA", + ], + minimumRelevantValue: "D", + description: + "The grade this score was. Note that grades are capped at F if this was a fail.", + }, + }, + + optionalMetrics: { + flare: { + type: "ENUM", + values: ["0", "I", "II", "III", "IV", "V", "VI", "VII", "VIII", "IX", "EX"], + minimumRelevantValue: "0", + description: "The Flare rank. If no Flare is provided, Flare 0 is chosen by default.", + }, + }, + + defaultMetric: "score", + preferredDefaultEnum: "lamp", + + scoreRatingAlgs: { + flareSkill: { + description: "Flare Skill as it's implemented in DDR World.", + formatter: FmtScoreNoCommas, + }, + }, + + sessionRatingAlgs: { + flareSkill: { + description: "Average of your 10 best Flare Points this session", + formatter: FmtScoreNoCommas, + }, + }, + + profileRatingAlgs: { + flareSkill: { + description: + "Flare Skill as it's implemented in DDR World, taking 30 best flare points from 3 different categories: CLASSIC (DDR 1st~X3 vs 2ndMIX), WHITE (DDR(2013)~DDR A), GOLD (DDR A20~WORLD).", + formatter: FmtScoreNoCommas, + }, + }, + + defaultScoreRatingAlg: "flareSkill", + defaultProfileRatingAlg: "flareSkill", + defaultSessionRatingAlg: "flareSkill", + + difficulties: { + type: "FIXED", + order: DDR_DIFFICULTIES, + shorthand: { + BEGINNER: "BEG", + BASIC: "BAS", + DIFFICULT: "DIF", + EXPERT: "EXP", + CHALLENGE: "CHA", + }, + default: "EXPERT", + }, + + classes: { + flare: { + type: "DERIVED", + values: DDRFlare, + }, + }, + + orderedJudgements: ["MARVELOUS", "PERFECT", "GREAT", "GOOD", "MISS", "OK"], + + versions: { + a3: "A3", + konaste: "Konaste", + }, + + chartData: z.strictObject({ + inGameID: zodNonNegativeInt, + }), + + preferences: z.strictObject({}), + scoreMeta: z.strictObject({}), + + supportedMatchTypes: ["inGameID", "songTitle", "tachiSongID"], +} as const satisfies INTERNAL_GAME_PT_CONFIG; + +export const DDR_DP_CONF = { + ...DDR_SP_CONF, +} as const satisfies INTERNAL_GAME_PT_CONFIG; diff --git a/common/src/constants/grade-boundaries.ts b/common/src/constants/grade-boundaries.ts index ba6af7a4c..ae2002d67 100644 --- a/common/src/constants/grade-boundaries.ts +++ b/common/src/constants/grade-boundaries.ts @@ -221,3 +221,23 @@ export const ONGEKI_GBOUNDARIES = MakeGradeBoundaries>({ + AAA: 990000, + "AA+": 950000, + AA: 900000, + "AA-": 890000, + "A+": 850000, + A: 800000, + "A-": 790000, + "B+": 750000, + B: 700000, + "B-": 690000, + "C+": 650000, + C: 600000, + "C-": 590000, + "D+": 550000, + D: 0, + // cannot be achieved. This can only be attained if the player failed the chart. + E: -Infinity, +}); diff --git a/common/src/utils/util.ts b/common/src/utils/util.ts index eb969e994..95c5685aa 100644 --- a/common/src/utils/util.ts +++ b/common/src/utils/util.ts @@ -131,6 +131,7 @@ export function FormatDifficultySearch(chart: ChartDocument, game: Game): string case "arcaea": case "ongeki": case "chunithm": + case "ddr": case "usc": return chart.difficulty; case "iidx": diff --git a/database-seeds/collections/charts-ddr.json b/database-seeds/collections/charts-ddr.json new file mode 100644 index 000000000..543cdff82 --- /dev/null +++ b/database-seeds/collections/charts-ddr.json @@ -0,0 +1,149220 @@ +[ + { + "chartID": "2fc2e0cfdda42addb7840b58be1df1f545310d66", + "data": { + "inGameID": 10 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 10, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "99611d95213c3215227e02a7859c57365ac6a948", + "data": { + "inGameID": 10 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 10, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "81022b2c857b9f7cc7a6884caba96623317f57ce", + "data": { + "inGameID": 10 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 10, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "20ad3171347c472b81346f729036adac2b41e4ef", + "data": { + "inGameID": 10 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 10, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "077e4fa5c0fd935e74b652d1e84884a408594b54", + "data": { + "inGameID": 10 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 10, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "73af08930c998e79238806765456035860865a02", + "data": { + "inGameID": 10 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 10, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "265c61767e4df0ff19c1debe23ac809b1dfdc526", + "data": { + "inGameID": 10 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 10, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3586429efc41ce1cca26a8e061cc117d9ecabf22", + "data": { + "inGameID": 11 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 11, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "08f1c52486a3d7d81b9300d9d646ce9f707ea9d9", + "data": { + "inGameID": 11 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 11, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e6fedc758ae15c364c25d12589c9ee342894215b", + "data": { + "inGameID": 11 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 11, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e0ee74cbb1cde9254498dcc3112d8b2c1798e731", + "data": { + "inGameID": 11 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 11, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ef87d3d05e7d32cd96a049f56ebc4b0fd3ab3a4a", + "data": { + "inGameID": 11 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 11, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c1299086d090842ba80bcef67c0c1cce70cdd946", + "data": { + "inGameID": 11 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 11, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f9a247463aedb14b4b499afb81508b75afbc67d8", + "data": { + "inGameID": 11 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 11, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2899b90ea42606760ebc861f03f5b808ca6ed371", + "data": { + "inGameID": 11 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 11, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4989694be2d855f5b73b9dd1f38a496d611a0a7c", + "data": { + "inGameID": 11 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 11, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "80769060de02b2717d14a746e56820b7a0ef4983", + "data": { + "inGameID": 12 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 12, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8a45d64f818abca002a896073c56b4f932e3e37", + "data": { + "inGameID": 12 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 12, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fd38071392405d952fd0b0ab71922238864099fc", + "data": { + "inGameID": 12 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 12, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bd6bd982471beb873b58cee3df90f44e861a135f", + "data": { + "inGameID": 12 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 12, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "072c0bf21545a9a4e2ab8b6814c642a775d9cc11", + "data": { + "inGameID": 12 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 12, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1b369f1df9ce125ef35053e28a32fc2f523cff80", + "data": { + "inGameID": 12 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 12, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b6ba93a72770d5a991934c92015619cc26a160fa", + "data": { + "inGameID": 12 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 12, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f68993409242de38132bbfe4dc622f4f6009e46f", + "data": { + "inGameID": 12 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 12, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bc69f9db5435a9e3db214176f1cdda10d4b6e0d0", + "data": { + "inGameID": 12 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 12, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c4c8bbeea9cfb19f4bcbb2971cfe1e52ef6689b3", + "data": { + "inGameID": 13 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 13, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "22557ceaeec23800b96afe0fba1e934c887f7aee", + "data": { + "inGameID": 13 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 13, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f23495d914189b62ac2c5ed6817682b822867123", + "data": { + "inGameID": 13 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 13, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "11608623275b2f17064c79856cec7a1d0d442e79", + "data": { + "inGameID": 13 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 13, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d28c67b3fcd727ef8783d615668add3507457bf6", + "data": { + "inGameID": 13 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 13, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dc0c5df6fb25d2d2d3b90508f64413815a76c022", + "data": { + "inGameID": 13 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 13, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "45368965ff0163661fcaaaeb7368335e913a2743", + "data": { + "inGameID": 13 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 13, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2b6bb05f9f8ee5a9e3f4414f78f0f2dea39ea6d2", + "data": { + "inGameID": 13 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 13, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8fcfe81f8740057cca219a2b20308a4b778776c0", + "data": { + "inGameID": 13 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 13, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5d3a3bbea747a51ae19074bc40c79ef6e8205802", + "data": { + "inGameID": 14 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 14, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7afc4938633f146c3f43ac0e062fe6c7f60e6b9f", + "data": { + "inGameID": 14 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 14, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ecbd2a8059c0e83782d8c5b2cc6419c8bf0f651d", + "data": { + "inGameID": 14 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 14, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9498974a05f339f782567de0d8843e8f5790020d", + "data": { + "inGameID": 14 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 14, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1f539104059127c432b5411693e28afd30e3b38b", + "data": { + "inGameID": 14 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 14, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "17c1c5202b49e60fbd4a49a27ced2b51677519ba", + "data": { + "inGameID": 14 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 14, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fe1031f9d979a1a331b760c663744a63db9dd9c6", + "data": { + "inGameID": 14 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 14, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "38dea143294a06a3d9194d6c1058536ef48d9ea4", + "data": { + "inGameID": 15 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 15, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aff42f54965056da117a1c65db4d345b1a39d805", + "data": { + "inGameID": 15 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 15, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b259dfa205a8ab1b63fe1b66d338ff95cffa23e2", + "data": { + "inGameID": 15 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 15, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "36c2401665b5105dacbb9c60aeeef4206fadc9bd", + "data": { + "inGameID": 15 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 15, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d73c4528700fcedb2a390fcbad995c64a5dbaec6", + "data": { + "inGameID": 15 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 15, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "22033dc50f9c3668439b02fba7cfa4ce077519f9", + "data": { + "inGameID": 15 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 15, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f4557a2e3cd97ceaa6f66e86f4891e23ba93cb63", + "data": { + "inGameID": 15 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 15, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6a9d256997249c578bf082b59a68f1f08f5ab44b", + "data": { + "inGameID": 15 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 15, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0a3d9f9b3659fb18ba356b0e172393bb85088a0e", + "data": { + "inGameID": 15 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 15, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e82104655a38ce7ad40b32456ccaed4b35d39b80", + "data": { + "inGameID": 25 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 25, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8d554c7ed6b8d649466c28656a7620c865bb4486", + "data": { + "inGameID": 25 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 25, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a1aef05bae264e0afc120d70bea3e4876d9b5a2a", + "data": { + "inGameID": 25 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 25, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3dd9d9b318d392ac2e61e633b85403a81f87a96a", + "data": { + "inGameID": 25 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 25, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5c196842aaf48cef1415c82fa88c5964583f89eb", + "data": { + "inGameID": 25 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 25, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "99e4b6ca0e20ca6934f4e6b0c1a377a04cb9c868", + "data": { + "inGameID": 25 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 25, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a7c84ebcf2545fb4f2d1ac979ad61871d306a0e5", + "data": { + "inGameID": 25 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 25, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "15d62fbffaaf22139f0d6272585915c523c11a3f", + "data": { + "inGameID": 26 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 26, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e2b6e36767dfc4d8820d58271bc6a7f672c822c5", + "data": { + "inGameID": 26 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 26, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "febb31b58a90615d0707cc2b88cf5ba108ba0436", + "data": { + "inGameID": 26 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 26, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a8ff0e2c98338589ec31e6311a348ffc49548cea", + "data": { + "inGameID": 26 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 26, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a2681809a0ac3b8e389204d6927aa5d7aae86698", + "data": { + "inGameID": 26 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 26, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "87192cb1215d23b128ca7e71fe8317b35ee0e3ab", + "data": { + "inGameID": 26 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 26, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c5d1fc811ee87f7074661433508d313745148a77", + "data": { + "inGameID": 26 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 26, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c9e5ff325a89d367811159f26c90fe7a9b709e31", + "data": { + "inGameID": 27 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 27, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5c315412878e80269046900f66ffdcbffe4d56ef", + "data": { + "inGameID": 27 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 27, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e3eb6bb939783d6f2d88e38b046d638f1c5145ab", + "data": { + "inGameID": 27 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 27, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fc4cd31f1101c0eb2fec3ce487ba4ac1ad0ee8ef", + "data": { + "inGameID": 27 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 27, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c8ed9531575ffa11b8b7e834897396123fdd2222", + "data": { + "inGameID": 27 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 27, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "845b7feb03caab484464642d5ec7f13e9308461b", + "data": { + "inGameID": 27 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 27, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6ca27fda14eab8e5cda08062fa48009b5ca2bde0", + "data": { + "inGameID": 27 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 27, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9e150eeb1b074d8e430ec4adc217f18c6bd26ce8", + "data": { + "inGameID": 28 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 28, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "858189e6d74a80631f27f81e59ad4f0d962868fa", + "data": { + "inGameID": 28 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 28, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "798aeda63fb8fc0244451eecbd39b00b32aac7ba", + "data": { + "inGameID": 28 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 28, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "375b42d896c23236b80048d46d3146d1d534ea09", + "data": { + "inGameID": 28 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 28, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ded85447cbefe6a62432c6eb32e4d55c1210bac6", + "data": { + "inGameID": 28 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 28, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2079b466000d7dc751429eb57fbd69d2b536beae", + "data": { + "inGameID": 28 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 28, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4cb8601980812e22aee14b9e2b1a6051bf9f51da", + "data": { + "inGameID": 28 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 28, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "94c7f1de8f03e7d20c935a225a56449e05129b91", + "data": { + "inGameID": 29 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 29, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b65a09b2d099029b170d1d24085dde0058b7bf2b", + "data": { + "inGameID": 29 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 29, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a30bc87ea024c59b8186a967220c55917e1f001b", + "data": { + "inGameID": 29 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 29, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aa9806ad693ca796421ef21983696db9b3191a57", + "data": { + "inGameID": 29 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 29, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e83578153bbf872bb0d86a5c7c5672404156e252", + "data": { + "inGameID": 29 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 29, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "edb8f9bbf98464c4cdeb6ca5f547da9a2eaffdde", + "data": { + "inGameID": 29 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 29, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "06332b7ea745b8cb17642b2bc9fbb94f3af10f5a", + "data": { + "inGameID": 29 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 29, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "35ae18ea0a004503714b04f05a0b0e333b49f26a", + "data": { + "inGameID": 41 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 41, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d3a53a6240fc2e916b6738ac94f944b5d8eeb5b8", + "data": { + "inGameID": 41 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 41, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1586525e6d6538a40674dd5a653a40d36291868b", + "data": { + "inGameID": 41 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 41, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "af4353cd06315f83f726d49f9e5fe4c784d0be6e", + "data": { + "inGameID": 41 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 41, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7d452150ff71f2b6d97318ba72920b9f88dc3748", + "data": { + "inGameID": 41 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 41, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f5257333fe1bda51dd03e2b758a8a745369d9fc6", + "data": { + "inGameID": 41 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 41, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c7803d0f5c5fafcee5a5e119a8dc97f0aa527ef0", + "data": { + "inGameID": 41 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 41, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2eca290ce86b0f13c573bc752fe6c14f0a435fee", + "data": { + "inGameID": 42 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 42, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f6eb86d38227f1e4b384c58f4a579906a3807646", + "data": { + "inGameID": 42 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 42, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ec2c7511bb220bd8118b8ececaaf27d9f8e1b8af", + "data": { + "inGameID": 42 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 42, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6a05aa7d090d65fbbe49110d2e551e95d6924060", + "data": { + "inGameID": 42 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 42, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ba510db15b3a7608a7fc82775e794293c7ef1647", + "data": { + "inGameID": 42 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 42, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "731643c0060a5e739de7065adc68705d773b4243", + "data": { + "inGameID": 42 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 42, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cf7f3f3a4b2d463df8fdbd79ad4fbfd27312489e", + "data": { + "inGameID": 42 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 42, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "62b766a8ebced78a8bc28e621b076f9b88f81a2b", + "data": { + "inGameID": 42 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 42, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7de93e38231ebb76130ed339002942e28da7882f", + "data": { + "inGameID": 42 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 42, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f5d1dd5160efc24be3f7f5d33c03010b35112d44", + "data": { + "inGameID": 43 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 43, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c1858fabd08418617d0767ed68520d2e624260df", + "data": { + "inGameID": 43 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 43, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "84ea9cc60e2bd3f36ceca328b83bdbcfa3d59c24", + "data": { + "inGameID": 43 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 43, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d35e7a1bbc89d35f9411cbf73d242f076eebe01f", + "data": { + "inGameID": 43 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 43, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f5d57ab54ab0701e286936b99d81af1fb2f50326", + "data": { + "inGameID": 43 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 43, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "37d7ef712cb626242b2c8f47d12f2a6b4da84095", + "data": { + "inGameID": 43 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 43, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7ec9c5a64fad0ed579fa1c8ae6929bf55cb5322c", + "data": { + "inGameID": 43 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 43, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7d719b601da4250078a20c9ecdfe541cfe623a0a", + "data": { + "inGameID": 44 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 44, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eb2a51414d4eef198d59764f70315f761cfc1fee", + "data": { + "inGameID": 44 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 44, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b2e8370557b4125049b848e4e258bace4c19a230", + "data": { + "inGameID": 44 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 44, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1e0fb3f12461236e3f796cd66f0d3fafae6ee198", + "data": { + "inGameID": 44 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 44, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a1d6d022b3ac6d771ccbcffa63fee1bebd0c3b3f", + "data": { + "inGameID": 44 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 44, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "09d15db6bba7fa4933ae7d614ee4f88511c9f239", + "data": { + "inGameID": 44 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 44, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "23c00d7a8835cc0710ba4c38099135e0a45c0101", + "data": { + "inGameID": 44 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 44, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fe05297131cbe223204c4b7664652d596c1d3972", + "data": { + "inGameID": 45 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 45, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2b36dd8036136d34de9a21ecbeea9f447811e768", + "data": { + "inGameID": 45 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 45, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "10fdfb4aa66b0764255e4c643b09a75c0e084922", + "data": { + "inGameID": 45 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 45, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "45dd3892e3dbf5f02917d630d54d74db7662f8be", + "data": { + "inGameID": 45 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 45, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3a30ed26c839cf5b178e0e19e42579cda523bd8d", + "data": { + "inGameID": 45 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 45, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2d6b6a35ad1a14a73175d864fded137a0d57a0cb", + "data": { + "inGameID": 45 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 45, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e3e158fba644e6bc421f75fe77609b05c21f6392", + "data": { + "inGameID": 45 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 45, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d3f4dde5b39ba897d10eac830c527395f6b5028d", + "data": { + "inGameID": 46 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 46, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "48055af9d3350ae0b117a624f76393ee39021ed0", + "data": { + "inGameID": 46 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 46, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3da7c8b72d45a95e1b60a276a16aa75781ea43bb", + "data": { + "inGameID": 46 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 46, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d39abd35882d2c4e1ef193abea7ae84d35c2b948", + "data": { + "inGameID": 46 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 46, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5f38b1e79a52635e18e3ee3a40843a4e40fcda62", + "data": { + "inGameID": 46 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 46, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "73f025dbaff5aa006069427ff66f4f7f3c231903", + "data": { + "inGameID": 46 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 46, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eb76ba0794f8514bf0f30d64d95d0755104567b0", + "data": { + "inGameID": 46 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 46, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1c799c63681afa57dc6232c3c454614a6184350c", + "data": { + "inGameID": 58 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 58, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "27ea100c5d20487a23da65e4c57cdcdd547169a1", + "data": { + "inGameID": 58 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 58, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "568092c4e9abe72db5cd6b630c3e7a321b80a8ab", + "data": { + "inGameID": 58 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 58, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a2e11783cfdbe348e64e56189945c8f4574eed35", + "data": { + "inGameID": 58 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 58, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "503f1cf25b23ebde4d2334f1e1c8a6aaeb70402a", + "data": { + "inGameID": 58 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 58, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8ebf8ec78158c3bf401bcd48eeb7f4c4bae55536", + "data": { + "inGameID": 58 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 58, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "34df633f8a77d9b4febe0d9719ff1a26f8a5a82b", + "data": { + "inGameID": 58 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 58, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "71334204051b47cafcf035bed3a3e9435055c643", + "data": { + "inGameID": 84 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 84, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f2e07292d5ed812206b184bf2d0e5cdef94f8faa", + "data": { + "inGameID": 84 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 84, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "85a29f94c707257517b8e3591d5946e71f2765af", + "data": { + "inGameID": 84 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 84, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fa7b28b17d5a02b01cbd105f4ffc7ed88cf68bae", + "data": { + "inGameID": 84 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 84, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d4b2f1e2357679ce7d7d082fbc55cf081bd54423", + "data": { + "inGameID": 84 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 84, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2747c0ebc4d104fc489f2621c05c79671482eec4", + "data": { + "inGameID": 84 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 84, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7ce54f75a5edaf56532f91171036e79cfcf178b9", + "data": { + "inGameID": 84 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 84, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "74c4e296d20e16ed576515754ac74a0683594353", + "data": { + "inGameID": 124 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 124, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4afa29b5d0eb382e8e8a8c88578fb65ad7e53908", + "data": { + "inGameID": 124 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 124, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "097c6a279c8141333ab2dc98ae8b8502f049b531", + "data": { + "inGameID": 124 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 124, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cc303703e99986642081261496112671c133eafa", + "data": { + "inGameID": 124 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 124, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c818880aefa3fbb4cb7da4441ac0ee20d2422811", + "data": { + "inGameID": 124 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 124, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e4559d1b991ce196153ae7a9cba945ea26221d33", + "data": { + "inGameID": 124 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 124, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6be2a4760240435e3966656f935f62998482b1c4", + "data": { + "inGameID": 124 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 124, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6c18ccae60c22411a20b06b080c7bfdc954d9e4c", + "data": { + "inGameID": 126 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 126, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c0815d439e5f249233ab37aa8b17ca08abf438fc", + "data": { + "inGameID": 126 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 126, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "05c0cdee70fb3c32c39c229c4f8733616577e900", + "data": { + "inGameID": 126 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 126, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7a2195c7ba70cf15c17c1b28d41cd4866cb0959d", + "data": { + "inGameID": 126 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 126, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "27f26c784b1bff5d1bffdd750abcdb959d62ec02", + "data": { + "inGameID": 126 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 126, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c90ba101c0b7b813e2819dcfcb28e414c613c89a", + "data": { + "inGameID": 126 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 126, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2caf7149d2f8ba95f71a0f279f7c970bdecf7681", + "data": { + "inGameID": 126 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 126, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "934f97bbf772301cc18405a729da5a8c0b2f9bed", + "data": { + "inGameID": 126 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 126, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "97591ce2f69e1f71a0b1a68bab56b3a8b0c0ab59", + "data": { + "inGameID": 126 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 126, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f6020b7f722cb960ba2033b07d170081841a6f79", + "data": { + "inGameID": 127 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 127, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4f8b22ed63d8e12c54a9c36fd25ac10a3fd9e8db", + "data": { + "inGameID": 127 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 127, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f07733d03335966fc1ff4fd015e80e15ae8def4", + "data": { + "inGameID": 127 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 127, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8a9ed0feba298248f9bd97bf674904778613bf0", + "data": { + "inGameID": 127 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 127, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7ec5cf3e965fad81d404e4db7234b91e8972bd84", + "data": { + "inGameID": 127 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 127, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "165bb241f4dd1bbec472306225c0c8328d7dfe65", + "data": { + "inGameID": 127 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 127, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f44a1e4a27cf4d1bec7f0b898bba53c041f5e938", + "data": { + "inGameID": 127 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 127, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b4e6def7abd376e07bcf47b466cec9864f5c0d86", + "data": { + "inGameID": 128 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 128, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e246aed4bab973bd1d87a417868417c5922bb207", + "data": { + "inGameID": 128 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 128, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2d3ad93741991e5564e064a3ac30c5774795bd59", + "data": { + "inGameID": 128 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 128, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9fc3592a904cddaf49bb7248fce6348361eb8dd4", + "data": { + "inGameID": 128 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 128, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "de3406ae1fa108447aae9cab5fee3d13ac2ad7c1", + "data": { + "inGameID": 128 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 128, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9a40fdc760ca5b875496658a4ce024ed48672f82", + "data": { + "inGameID": 128 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 128, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dd21750d5d448ff74cf18f952d6617160effa073", + "data": { + "inGameID": 128 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 128, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cbf1b89636139016d3e86b35cbfed78d51832fdf", + "data": { + "inGameID": 129 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 129, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "352e9f48adfd3b7a3080bf9d8e23dca13cafa17b", + "data": { + "inGameID": 129 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 129, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ca8c45a905710bf30eba44e25421d0880b24ee91", + "data": { + "inGameID": 129 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 129, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "859b63d17e1b4f19e1b80b0db76a4c8417dc8677", + "data": { + "inGameID": 129 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 129, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2738e15840f853b61c21e2a634f2146eb2acf875", + "data": { + "inGameID": 129 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 129, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "234226aad8713fd99918dedc0a226e3ae423b6b4", + "data": { + "inGameID": 129 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 129, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0304baafd7bdff39f631b54cb73bdf1a06220af2", + "data": { + "inGameID": 129 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 129, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cf14e44eab12db295c62a733c8f13b4ea03fea96", + "data": { + "inGameID": 130 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 130, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "70cef1e8e682e5aaf5d3ce949891ee73b0513e62", + "data": { + "inGameID": 130 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 130, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a64e64ebedaeed57e7c314c6a9430abad2224ca1", + "data": { + "inGameID": 130 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 130, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d342690ca193269d76cd17da3bbff4b244dc8fa8", + "data": { + "inGameID": 130 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 130, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6e6e870d081f89b380fbf8e3b440a91f9d527ba7", + "data": { + "inGameID": 130 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 130, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dd6cda12147f3a636ebb7232493da1c2c9587aed", + "data": { + "inGameID": 130 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 130, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ed532c3eb4ea3f34ddf0c72c88a4335c5d8df203", + "data": { + "inGameID": 130 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 130, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7d8430f34f0bbb8856b41ba35aed02eb750c14cb", + "data": { + "inGameID": 133 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 133, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c76e04615565afebd291de36548c27f3f91730c8", + "data": { + "inGameID": 133 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 133, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9df9a98e4a6f637ba1a03317536978354fc52c42", + "data": { + "inGameID": 133 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 133, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4e7ddf5b5a5956118cb3cbb9f5b1e3abe11a809a", + "data": { + "inGameID": 133 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 133, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5f86560d280be2b92bef72dee727de346265f1a0", + "data": { + "inGameID": 133 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 133, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7ad412e2805140f7d7ca5c2648ff49c843f9f7bb", + "data": { + "inGameID": 133 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 133, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2e68c87d22a2cbe801264753ad268157dcfbabaf", + "data": { + "inGameID": 133 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 133, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "59776b145ed2ad0269e76c8beba94924388f7c1b", + "data": { + "inGameID": 137 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 137, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f99494057d81794bf010b14f44e34e1ba8644e16", + "data": { + "inGameID": 137 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 137, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "41edd51cb8f244efae20313dd0c0b432937abef1", + "data": { + "inGameID": 137 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 137, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "537c4a3458af035f6d7025e7ae14e256105b3870", + "data": { + "inGameID": 137 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 137, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "401d360f41b115f063a7509bc8f97b67147db850", + "data": { + "inGameID": 137 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 137, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bed7f2aca905911208418793f24c2f026b823529", + "data": { + "inGameID": 137 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 137, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "14b2d6283847af056f3433e3479b4d1ce52d0f20", + "data": { + "inGameID": 137 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 137, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6f8f917b283e72d3ca1bef1bcb5fe4b35e7a902f", + "data": { + "inGameID": 138 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 138, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "006e9527ee8d70f5e5242c72f455b4c583181756", + "data": { + "inGameID": 138 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 138, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8518c95774878485e40226817c8112742f98ad3b", + "data": { + "inGameID": 138 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 138, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b0bd0e65001924c3dcbf19d6416eaa1b93483388", + "data": { + "inGameID": 138 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 138, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6ba951a9f4a0ec79b34d6e02ee36da4c1ba99fd3", + "data": { + "inGameID": 138 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 138, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ea362939d67fe49a3263f182fa18ca3be4d82703", + "data": { + "inGameID": 138 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 138, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5c665692ea6fad69394092f9bad3c2ae046d3946", + "data": { + "inGameID": 138 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 138, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "052bf3503c7435222aa4b29909c96578b079ce5f", + "data": { + "inGameID": 139 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 139, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3c367c529a839671d87c6ec34e51a7cbaf0d94e1", + "data": { + "inGameID": 139 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 139, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c976d34b53de68993c2ae3e8fef7c1928ab61b46", + "data": { + "inGameID": 139 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 139, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "20f39cd0491cbba2737bd40d000205ecfe3e8825", + "data": { + "inGameID": 139 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 139, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0981075ba4a6fdb80bf0bd0c104767735b166979", + "data": { + "inGameID": 139 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 139, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "14f6ae58a594e5646a7cd6f5b33d69e88a243ba4", + "data": { + "inGameID": 139 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 139, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b681e814b3e5bae059cb9433b801c67e60a14818", + "data": { + "inGameID": 139 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 139, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3dfae7ce560598274d443519a72f251b88a456c1", + "data": { + "inGameID": 140 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 140, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "842ccf5bf9bacb80dd4de867a4f57d6e16ecb0f5", + "data": { + "inGameID": 140 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 140, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5acc0714078dd6d29e06d87a7d2dce88d7278b7c", + "data": { + "inGameID": 140 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 140, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "27aead38cc6b53b01d2548cc624b58bce3b0403c", + "data": { + "inGameID": 140 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 140, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e38d7a94f7ff21e380d815ab761814bbc33c50b8", + "data": { + "inGameID": 140 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 140, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b209d81fd4430ad566bda9659fe7bd80562b6841", + "data": { + "inGameID": 140 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 140, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "de95102b629a4dc825bb2488098fe45472838705", + "data": { + "inGameID": 140 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 140, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0ad34445d1988b50e1cfd5a901f7b5f4f4a24f2f", + "data": { + "inGameID": 141 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 141, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "81efb91ce1e375e30183335e454fbd073a75ea65", + "data": { + "inGameID": 141 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 141, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5555bb13f7788e351c3343ffd264bcac6ac9d1c2", + "data": { + "inGameID": 141 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 141, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e76af4b3bb2c8b71093dc72bc13c52bba0341779", + "data": { + "inGameID": 141 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 141, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6ccd041796794daab9d505393ee56d5d567baa90", + "data": { + "inGameID": 141 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 141, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d6d3984da1a5f685b0fe30c339021d02e95c6820", + "data": { + "inGameID": 141 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 141, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f446342c9a9dff0a61819f486b25732d357602fe", + "data": { + "inGameID": 141 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 141, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b02606bddae876f8281d8aa4e1dd078452fdc5ed", + "data": { + "inGameID": 154 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 154, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c48490464357d88826460a7aaa10444f76897dcc", + "data": { + "inGameID": 154 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 154, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8839efb23b9cc6faa69116385f4e7dd7ae9161c1", + "data": { + "inGameID": 154 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 154, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0c874095d891b44195a243456100b6031c110c3e", + "data": { + "inGameID": 154 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 154, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b7d657a673d6fd805dc650173378e4ccc7b138a8", + "data": { + "inGameID": 154 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 154, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a336471350ccc2b6cd189255e95e18694eb25da2", + "data": { + "inGameID": 154 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 154, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "363f1cbfb00f5832bd86abba439c32a23fe437f2", + "data": { + "inGameID": 154 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 154, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "46cf470c7d92205433d7896e9ed5070db731d814", + "data": { + "inGameID": 155 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 155, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8b8c8fbe026edc4d5f4ed834e4d7ba574c981f4b", + "data": { + "inGameID": 155 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 155, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cbc7fce94f308d7a556f58efa5a24bb6b7933770", + "data": { + "inGameID": 155 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 155, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4cea0e38f45aba383fd21bf79d80fba319d931c7", + "data": { + "inGameID": 155 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 155, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c64515a5d34a4cf3419c3df987a9fea83531f773", + "data": { + "inGameID": 155 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 155, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4e9fdd03bba716e08d176446cc745d7a3fd6e3db", + "data": { + "inGameID": 155 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 155, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "81fd01f04503c6aebf0d5b3b7e942a0688cb5a8f", + "data": { + "inGameID": 155 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 155, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1c79248ef68d43d6b29a47aa270cb5f7fdef9214", + "data": { + "inGameID": 156 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 156, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0fdaf333189cc8ddab382533dd41bde95312082e", + "data": { + "inGameID": 156 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 156, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8d385c040b1c34586fb06bba4d68dd80880c5fde", + "data": { + "inGameID": 156 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 156, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c0fd77e3ff34471ab08d63cfe849a62fa5c8ef59", + "data": { + "inGameID": 156 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 156, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d984d6e9e8c496e1a5b5b0c1b9cd86f9845dc6db", + "data": { + "inGameID": 156 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 156, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4f62485b998ad1189eccbe1847a77b537bb3cd3c", + "data": { + "inGameID": 156 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 156, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dc4d2e9ee5bdffa6a82424a0d30b0e5fd5f47585", + "data": { + "inGameID": 156 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 156, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1f70f68d3bf54c3c697c2d26c8716d285f029305", + "data": { + "inGameID": 158 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 158, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0ed403c30803576e18fa71963847ae172ba85e50", + "data": { + "inGameID": 158 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 158, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8b75a687cbdc5a41aa3057479b8a365c9e15faaf", + "data": { + "inGameID": 158 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 158, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "722aef620d85b6d028b57d19811b6fdac8137e42", + "data": { + "inGameID": 158 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 158, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3f0ff10b4c6aba8897e34e4f27cb765aff49d7ef", + "data": { + "inGameID": 158 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 158, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b0563db2319a31116bd50511151189d498d8c227", + "data": { + "inGameID": 158 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 158, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "21bdd2810e941c0c7b94a9a72405f999797f51d3", + "data": { + "inGameID": 158 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 158, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4800cf1005ccdc2f68fdec369887399a5d8fdbc4", + "data": { + "inGameID": 159 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 159, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5b1e033aa7c71647ad318fa02741e26f0522318a", + "data": { + "inGameID": 159 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 159, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7f20c45a6426c122c3d69360b85f1493bd7449a3", + "data": { + "inGameID": 159 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 159, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e11f9028150b8315fd121ca439729e7f94f346d4", + "data": { + "inGameID": 159 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 159, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6615ac8579a524bc50a33343d593324baff03b00", + "data": { + "inGameID": 159 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 159, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3b441bffded22e6f3c715c7819920f2a87c75bc2", + "data": { + "inGameID": 159 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 159, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3c80f0b758be1c2776c00e16a99bf66a40b1ed37", + "data": { + "inGameID": 159 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 159, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff3fe8843ba9e434d2043b26816fd0b428eba9b1", + "data": { + "inGameID": 160 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 160, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4707ebbecf884a0eca9e7075a7a8c360b9e26c21", + "data": { + "inGameID": 160 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 160, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5dfc1eccb8a9f9048a3823f0b49384edb6d9e477", + "data": { + "inGameID": 160 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 160, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7ef99f5102ee955714fcb5986a1f07e276dfafab", + "data": { + "inGameID": 160 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 160, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9c4b2da4924f787f5e36804f379b0700ee8df08c", + "data": { + "inGameID": 160 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 160, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9e166dece1e298d10206f6c1f7d67f008d2a7065", + "data": { + "inGameID": 160 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 160, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8f7c3ce6116aea77eb2d0fa4daae09b3846690f4", + "data": { + "inGameID": 160 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 160, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cd6c6c64a7afe9817bf7d8c74585f7bc4c5fa211", + "data": { + "inGameID": 182 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 182, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8bdb5f6bacc354cce86487914e274df577fc78ed", + "data": { + "inGameID": 182 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 182, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e068aaf513c521bee2f37d06d9e23548925e9868", + "data": { + "inGameID": 182 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 182, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f741bcf24922bd5031544bd61aefdef4e29a4bb7", + "data": { + "inGameID": 182 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 182, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "03bfe3b658ab3fc9b98278bca33c3c8df156c1ed", + "data": { + "inGameID": 182 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 182, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bd018ae9cfee250bff1bb96b977b9a1f5907ec5b", + "data": { + "inGameID": 182 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 182, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bc097d8b1ce6aea8dd302affb811464f9fe39768", + "data": { + "inGameID": 182 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 182, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4808414728ae2161f72aff7d334ac31e400abf71", + "data": { + "inGameID": 183 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 183, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e20474c41067a4341a7914200f66e6cb047dcc2a", + "data": { + "inGameID": 183 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 183, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fa43f57fc1e4948d7f5d3cbd9ddcfe3aadb44aae", + "data": { + "inGameID": 183 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 183, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e89ef09cb3845c0229b07212a42f2cc968f1b5f6", + "data": { + "inGameID": 183 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 183, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "430a7c6cdfe2d6c68a34f7bd98e1c1b8a8f3d1f1", + "data": { + "inGameID": 183 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 183, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c950c2f259546633f4a146b572c652515a8b2985", + "data": { + "inGameID": 183 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 183, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c6ebd9c6c30f4a50c590565477489c77f32b97f2", + "data": { + "inGameID": 183 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 183, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "42ef854329ca4e58b4344ec573edcced367c4133", + "data": { + "inGameID": 184 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 184, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6ce98c4d451593e32bc5278a46e58ebcdac605db", + "data": { + "inGameID": 184 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 184, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8eadf100dfd25640d6ab9924bec6cd78bac6d7bf", + "data": { + "inGameID": 184 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 184, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dd266504b08ff987630fdbdbfa387d989737e044", + "data": { + "inGameID": 184 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 184, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0867478447e83427da64adddab407699e23b17ee", + "data": { + "inGameID": 184 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 184, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ad7ae0eb15fb6a145ffa2fb164d44b600473e9cc", + "data": { + "inGameID": 184 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 184, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "616cc3d53926545696e1a98026766eb2a5691fdf", + "data": { + "inGameID": 184 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 184, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c6630d50246bef646d696607c85836218a0ea81b", + "data": { + "inGameID": 185 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 185, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b7840496d4b84f8ba5fc81fef11533dff13a9420", + "data": { + "inGameID": 185 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 185, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "105897fa89de53b68ad77902f55151f996d5ce91", + "data": { + "inGameID": 185 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 185, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "296191e44fa9a515c9868c528daa0b6385a76bc3", + "data": { + "inGameID": 185 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 185, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "597fced729fa883d16f1c64464a9a830e8f1c0f8", + "data": { + "inGameID": 185 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 185, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "daa5005c288ccf493b9fd5222b8b69cc83b82a8a", + "data": { + "inGameID": 185 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 185, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f45df95807ffd4b13cc8d22b4a5c6109227a442d", + "data": { + "inGameID": 185 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 185, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "469f9dc817a9ba78051b1e281c3b448bba30d11e", + "data": { + "inGameID": 186 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 186, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0a4f29084dc11f1bfc165c483c289f83de72499d", + "data": { + "inGameID": 186 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 186, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f0d301ea84e2042d19009cf45060585b4c9d9963", + "data": { + "inGameID": 186 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 186, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8cf6c9d7c41319c00f36bfab94fe2ec6803e6363", + "data": { + "inGameID": 186 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 186, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "54417ba77c975912cdfafdf99f86cc6dacde93a8", + "data": { + "inGameID": 186 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 186, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a477cbe4f58d1dbe1001e42ec903634399ddc1b3", + "data": { + "inGameID": 186 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 186, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "13cea68d7f8b9cfeafab9657f1708ca796300656", + "data": { + "inGameID": 186 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 186, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b1fefe8caf9927a83b3b519ce745b8eac853e4ca", + "data": { + "inGameID": 187 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 187, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0c9f1bd1d9bccf52a122ae93e510004340bf562a", + "data": { + "inGameID": 187 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 187, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5a1f01392e11f0a5c4983a5ff9f8b412be5c98a1", + "data": { + "inGameID": 187 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 187, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "43585e2970a5ca5183f3d7be2ecd87c5ac9b699d", + "data": { + "inGameID": 187 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 187, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8cdf961c9651f068ccbb5e10481b9f31305e5ce2", + "data": { + "inGameID": 187 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 187, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fec83b714db6732a2f52f714061c51e51c27ce91", + "data": { + "inGameID": 187 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 187, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2e15bedfdefa101de439fcfec17e9ed4d7f84552", + "data": { + "inGameID": 187 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 187, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "214d143d5cf53ae5b81258aaa9926c76a47318fa", + "data": { + "inGameID": 188 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 188, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "06e9527d035cfa2731c56935183385d7662769b3", + "data": { + "inGameID": 188 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 188, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9069627ae3cca6538b4107efe1b0e8ab0a723fb5", + "data": { + "inGameID": 188 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 188, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "228d04c2dfc925026b6690171c14235525105df6", + "data": { + "inGameID": 188 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 188, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8af258c3cc8fb1aedb538d869dfaba23d39fd8c7", + "data": { + "inGameID": 188 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 188, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "97bfbb370e3d28f785cd234dc1cd001b982ea885", + "data": { + "inGameID": 188 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 188, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c2c3f97e497ccf725c2c65972342a2564517a90c", + "data": { + "inGameID": 188 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 188, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "55947ee5876027aa496a86523ab55fb3434eb7a3", + "data": { + "inGameID": 190 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 190, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "377a7c00f403d2ea61166fc2e31e2ff7810a3453", + "data": { + "inGameID": 190 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 190, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "09c5938115f7bdbdbdc4b438063c0a60dc686afc", + "data": { + "inGameID": 190 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 190, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d5bf8b337018892db8f920104d095f89e5813831", + "data": { + "inGameID": 190 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 190, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f0d2eaab80f8ce973e2b94b4b79042322c42e817", + "data": { + "inGameID": 190 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 190, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1f6238d5c1bec487644e597ae11592f7185c59bb", + "data": { + "inGameID": 190 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 190, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "738edbcec748c6343e1386eaf0272e3e96adca5c", + "data": { + "inGameID": 190 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 190, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "624a8f378296dd3e88da811ee2bdf48dee55d256", + "data": { + "inGameID": 195 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 195, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b58efce4c9b02263f100fb7a326bd612916ecc01", + "data": { + "inGameID": 195 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 195, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f1dc6fea388104ad7788ad381be24e390b5a6f76", + "data": { + "inGameID": 195 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 195, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2302c9a9c205020300e1cc74bbee879855788f9d", + "data": { + "inGameID": 195 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 195, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d55d4f83e5d097055e93f4657ea12e5470c2d2f4", + "data": { + "inGameID": 195 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 195, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "82decf671da0ee97335004208c1866ff17d793fb", + "data": { + "inGameID": 195 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 195, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f497b21037ca985fb4ebd981740d44b60df3dea", + "data": { + "inGameID": 195 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 195, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c582b302e9854bd32fd9e29c6facd4bfbcadbb4b", + "data": { + "inGameID": 196 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 196, + "versions": [ + "a3" + ] + }, + { + "chartID": "b1f6b009048374a123d575a5ab35a2258283e561", + "data": { + "inGameID": 196 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 196, + "versions": [ + "a3" + ] + }, + { + "chartID": "99c9781e3ae6e43042046aa754e2fa8bff298144", + "data": { + "inGameID": 196 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 196, + "versions": [ + "a3" + ] + }, + { + "chartID": "7b7a92bec8d3285644d7483e3c55cf3c9278617d", + "data": { + "inGameID": 196 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 196, + "versions": [ + "a3" + ] + }, + { + "chartID": "a2c5d76920b66d6270ee13865621718e675f68f1", + "data": { + "inGameID": 196 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 196, + "versions": [ + "a3" + ] + }, + { + "chartID": "2f228f650bcdda3806f3c89654afaba71a25eda9", + "data": { + "inGameID": 196 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 196, + "versions": [ + "a3" + ] + }, + { + "chartID": "95f39aae0f32fd8c432f8893650f8045cb143d14", + "data": { + "inGameID": 196 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 196, + "versions": [ + "a3" + ] + }, + { + "chartID": "d06d38ef28b4c32472f413a2b9e1912d8978a4f5", + "data": { + "inGameID": 197 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 197, + "versions": [ + "a3" + ] + }, + { + "chartID": "bf71d80586a44204b01971f23e52749e57575fac", + "data": { + "inGameID": 197 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 197, + "versions": [ + "a3" + ] + }, + { + "chartID": "78dc5288d6ea6df07e31d8c14fa0162426945069", + "data": { + "inGameID": 197 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 197, + "versions": [ + "a3" + ] + }, + { + "chartID": "0999342a3b57405a471f0ff8f3a737d92fc4b72b", + "data": { + "inGameID": 197 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 197, + "versions": [ + "a3" + ] + }, + { + "chartID": "2d25e810b1e1d446073125c5f61e0240fc0d4366", + "data": { + "inGameID": 197 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 197, + "versions": [ + "a3" + ] + }, + { + "chartID": "4b58c7fc2e1d52c234d4a69e0fadaf7a744a52a9", + "data": { + "inGameID": 197 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 197, + "versions": [ + "a3" + ] + }, + { + "chartID": "768ba63dece4d41d808e70adbaa57b65d5ded415", + "data": { + "inGameID": 197 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 197, + "versions": [ + "a3" + ] + }, + { + "chartID": "c680665c0cbc1cfd43ee23188715b02e6e16191e", + "data": { + "inGameID": 198 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 198, + "versions": [ + "a3" + ] + }, + { + "chartID": "03fc6f492df4970d4cdeab8c7775bc4a49f9da3a", + "data": { + "inGameID": 198 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 198, + "versions": [ + "a3" + ] + }, + { + "chartID": "d46e7889e4a55b5960d7e481e5349b3d92655d01", + "data": { + "inGameID": 198 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 198, + "versions": [ + "a3" + ] + }, + { + "chartID": "75bde4d6e65a89ed69fb6612877599b1afcc18c6", + "data": { + "inGameID": 198 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 198, + "versions": [ + "a3" + ] + }, + { + "chartID": "7e6ca7e91c21709a8aafae174e20ea611af585d6", + "data": { + "inGameID": 198 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 198, + "versions": [ + "a3" + ] + }, + { + "chartID": "be2c1ac1bb4f615cf7242ce8b1f94fd6b6259743", + "data": { + "inGameID": 198 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 198, + "versions": [ + "a3" + ] + }, + { + "chartID": "2aed03067265b9c4410432aedfe2d4b99267242d", + "data": { + "inGameID": 198 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 198, + "versions": [ + "a3" + ] + }, + { + "chartID": "7d88e237ff98ce2ed283114d86d179658430ac0c", + "data": { + "inGameID": 201 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 201, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9ecbe5af41e194b177e2b020bb870973f0acfef5", + "data": { + "inGameID": 201 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 201, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aa49d47dda243c7e89aa5fca3f5f30e36f8f611c", + "data": { + "inGameID": 201 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 201, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a2f593f5589331561b396c47cc33637e0986f641", + "data": { + "inGameID": 201 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 201, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d71567ea1c99930aa44c515a5b87dff0d731281d", + "data": { + "inGameID": 201 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 201, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bf7734c9964cb2323abd8a8e74999af77ffb1350", + "data": { + "inGameID": 201 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 201, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "07ee8d9d70b4fdc9f71b5533f459835b81b18115", + "data": { + "inGameID": 201 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 201, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "79a0da2d4034a4337320e5d10a8ab2ec1ee6f4bd", + "data": { + "inGameID": 213 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 213, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fd74cc3c6a2db2cdc6b94785974997c9c882f4c3", + "data": { + "inGameID": 213 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 213, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dff370f70f671aa0ed8f299fdb495f1d50b78b52", + "data": { + "inGameID": 213 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 213, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "156ddb0705a3d757aa91869cc0c9fc04ac7d664c", + "data": { + "inGameID": 213 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 213, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6e0a18ba9d8e30f0c9bbd2927eb9d486a3ec6dd1", + "data": { + "inGameID": 213 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 213, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0fac1ada614c51aa192544346ce6c5b33ee5f058", + "data": { + "inGameID": 213 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 213, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "69ddb9c58299c31bfc08e4e51888ba83261c08e5", + "data": { + "inGameID": 213 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 213, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c16b2d7579664c5ef5deb15172b4b4172ccf8d36", + "data": { + "inGameID": 221 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 221, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ed4b9d269eae166ebf7d9f436531556ccc81e3bf", + "data": { + "inGameID": 221 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 221, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a49fb51a7af933111cf2616e853f1d21a0ef2472", + "data": { + "inGameID": 221 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 221, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f3f374401c932c9a4ce883994780c3ae4070707", + "data": { + "inGameID": 221 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 221, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7f4039bea38e158f09b57e7ef162a9ac839c5492", + "data": { + "inGameID": 221 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 221, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "62cbbfe390e7c94d21df5f03dab41a2919f4dfe1", + "data": { + "inGameID": 221 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 221, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9accaf23a773cf049f895bb2302e9252d6c9e810", + "data": { + "inGameID": 221 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 221, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "80d07c8a2447a65e816e3c9ad212ebfe9c4983ae", + "data": { + "inGameID": 222 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 222, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6e3662e2db28dfa5a7cce732d85c402899536823", + "data": { + "inGameID": 222 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 222, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9db826b4aff28aa3cc3dfd370d91de939aca1396", + "data": { + "inGameID": 222 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 222, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f484c0280f4b3e07e853595524b2b4313daf57c0", + "data": { + "inGameID": 222 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 222, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fa0a7064e09480e62bf2ebfac7ac0f6586a3f557", + "data": { + "inGameID": 222 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 222, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6bd811033ed16457364aec0b02f6e38de08895de", + "data": { + "inGameID": 222 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 222, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "26fdec0694cdd3e2c983966851ee115ad75f91af", + "data": { + "inGameID": 222 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 222, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "271f93ba60bee4cd55ddd3599fd363240fd180a8", + "data": { + "inGameID": 233 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 233, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "969bdd9c5f55da9cc5e514af195d03d869fe0b5b", + "data": { + "inGameID": 233 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 233, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "02423b46a38be8e17ef121ff985727b0c940422f", + "data": { + "inGameID": 233 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 233, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "53cecfff475af51bd10a28c9eb0a52803f35945f", + "data": { + "inGameID": 233 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 233, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cd7a859b374383d937e81a2aae4e0e65e6fe222c", + "data": { + "inGameID": 233 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 233, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c372b5f52c7338c83984fcf84d2a02e553baede6", + "data": { + "inGameID": 233 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 233, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2cae4c4934841ccbfe16592cd03955cda73a02f0", + "data": { + "inGameID": 233 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 233, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d3faf21577a1f8cfb16d43c8ee551543adc608fb", + "data": { + "inGameID": 234 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 234, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2d7ed683e5155a31a9f474ecfdc6eaf05a0c0473", + "data": { + "inGameID": 234 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 234, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "885098e1911de5e4c53ce8fb2e6954dd18ca1101", + "data": { + "inGameID": 234 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 234, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "19aa10d143f7c1f394cd532a7346a4098f02b78a", + "data": { + "inGameID": 234 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 234, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3c7fc7924d758cb6c69605e38005ceda30222b35", + "data": { + "inGameID": 234 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 234, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b81baaca41c16e2dd892d9f72e7dc4f0d96d9fcb", + "data": { + "inGameID": 234 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 234, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "57cf2b0b0e8aed2a69591fbdf0ac66ab268b4ae2", + "data": { + "inGameID": 234 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 234, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2ee014e187c06c26ff1697f1cc8db8f40b493a04", + "data": { + "inGameID": 235 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 235, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ae1f3afe08f5466f5a71328c475fea701db4f34", + "data": { + "inGameID": 235 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 235, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2664c7762f6984c6110282b0bbd03c1f15f89d61", + "data": { + "inGameID": 235 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 235, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "237ab6ea1c6120d507ae80fc53a3a3ed88239bfa", + "data": { + "inGameID": 235 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 235, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ca1156ae6e6567a73032ddbca4f00b11485e7e9c", + "data": { + "inGameID": 235 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 235, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "70beb55fc87b1bdd4de705a2d5176146a78128a6", + "data": { + "inGameID": 235 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 235, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0fb54bbd7d24c47bc282c8fc5a7f8b56f375d568", + "data": { + "inGameID": 235 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 235, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2a68b69acd10262828a3a822d6bb4dee79373e6e", + "data": { + "inGameID": 236 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 236, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fe24e3ce71e27c5fc8880f948faf5397a4a5de68", + "data": { + "inGameID": 236 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 236, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c409d8c9cf9158590da4297f4a8160a7ee1ced9e", + "data": { + "inGameID": 236 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 236, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f6476f87312547e163109b23c622f66de5847859", + "data": { + "inGameID": 236 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 236, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "941d351ad7d826115c1e72d098d37504395b3668", + "data": { + "inGameID": 236 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 236, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6741737ac9606e49644271de6e890987b4aaa684", + "data": { + "inGameID": 236 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 236, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aee75fc2c1871d6fce23f0016fda249cc3c045e6", + "data": { + "inGameID": 236 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 236, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "95c75b8d8f356fb11929988bcc0f1368c4c7a230", + "data": { + "inGameID": 237 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 237, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1408bf893363218dd12d43bc0d79da0aeb8851fd", + "data": { + "inGameID": 237 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 237, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aa5a61d8ecee95b8d07f0422ea1bdeb4c4bd8cf9", + "data": { + "inGameID": 237 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 237, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7e047d55c8d0f58390d6f18a321ca21af20456ba", + "data": { + "inGameID": 237 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 237, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b12582faf2917398dc0a195745e8f88f7060a50c", + "data": { + "inGameID": 237 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 237, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "03ea7c4d66c58193ab7e4c75acd669046da9af46", + "data": { + "inGameID": 237 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 237, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2534424996a924e76bf23e7fe74880cd052585c5", + "data": { + "inGameID": 237 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 237, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4bc328de369a40d098a144ca4bbb7f3a86c2d787", + "data": { + "inGameID": 238 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 238, + "versions": [ + "a3" + ] + }, + { + "chartID": "44e4f6b8d247d48913af167cd36de6f2bcec47ed", + "data": { + "inGameID": 238 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 238, + "versions": [ + "a3" + ] + }, + { + "chartID": "367bf68b478c36c69e5a2c8fdc87eeb353d4f0b8", + "data": { + "inGameID": 238 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 238, + "versions": [ + "a3" + ] + }, + { + "chartID": "b50ce9b621f3e90b445ac3491972da6ae82baf5d", + "data": { + "inGameID": 238 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 238, + "versions": [ + "a3" + ] + }, + { + "chartID": "d935a8477333e5e0554ee011a8ed8fdfc452db46", + "data": { + "inGameID": 238 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 238, + "versions": [ + "a3" + ] + }, + { + "chartID": "b2287a3b8f5a44ede5412d27666ed6941d1b13cb", + "data": { + "inGameID": 238 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 238, + "versions": [ + "a3" + ] + }, + { + "chartID": "b8a7984e7821a95292e4434219d0fdd150795596", + "data": { + "inGameID": 238 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 238, + "versions": [ + "a3" + ] + }, + { + "chartID": "90c3e70194c573b8f5e4401140ef6847d3516eb9", + "data": { + "inGameID": 243 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 243, + "versions": [ + "a3" + ] + }, + { + "chartID": "6c85a4ec71947e84dd34a3c129b96c892de1d973", + "data": { + "inGameID": 243 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 243, + "versions": [ + "a3" + ] + }, + { + "chartID": "67f463ab9c92fd70721dd2ee675b2d46ca963b96", + "data": { + "inGameID": 243 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 243, + "versions": [ + "a3" + ] + }, + { + "chartID": "06c41dcf62a1c256ae55a898fa69b8f83a73be9f", + "data": { + "inGameID": 243 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 243, + "versions": [ + "a3" + ] + }, + { + "chartID": "62a9eeffeb2e12203a2f59e2a50a4b2a6ca2c753", + "data": { + "inGameID": 243 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 243, + "versions": [ + "a3" + ] + }, + { + "chartID": "aaa25a16a94bd94539e5213d0dd59aa8ce54f204", + "data": { + "inGameID": 243 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 243, + "versions": [ + "a3" + ] + }, + { + "chartID": "d3cd63dc8f3d667bb10b1773cfe8fd8f9a6e3404", + "data": { + "inGameID": 243 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 243, + "versions": [ + "a3" + ] + }, + { + "chartID": "73ce1985cb227f5f15152835f480d605af5a3412", + "data": { + "inGameID": 244 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 244, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f7ebacff2c9ef52e6bba21b40e8fb121271e36d7", + "data": { + "inGameID": 244 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 244, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a833b390d21381a6df93fc152d43401c04b8cf51", + "data": { + "inGameID": 244 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 244, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cb88b9507102483b509cfdd23ee15f10dfb8e548", + "data": { + "inGameID": 244 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 244, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "08a1b4ba2b1f3bc5abd2bdaa733851afd8019c30", + "data": { + "inGameID": 244 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 244, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "76578dfaf528c83cb7ca46f3fe52a6d29029c476", + "data": { + "inGameID": 244 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 244, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "efa88b746447385a46ba0638f691c852cac34d23", + "data": { + "inGameID": 244 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 244, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f26ef9c2d460a5138c0a452ea9bbc55f30f4574", + "data": { + "inGameID": 257 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 257, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8de12a78d200b999cdd73aa76c77c7bd9098336e", + "data": { + "inGameID": 257 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 257, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "27ed15e89a93295493978ee07ac1419fe33fd35e", + "data": { + "inGameID": 257 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 257, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c8136dceff33507062913fa9ed8653d199227ded", + "data": { + "inGameID": 257 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 257, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bd39d6b675d1e837e621c0b3ada13be41ba72f12", + "data": { + "inGameID": 257 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 257, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "307dec90f658263db3192dca6d394bb9ffd3bcfc", + "data": { + "inGameID": 257 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 257, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "35d9aeae1dce03a001baf8513477fea1e880209d", + "data": { + "inGameID": 257 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 257, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c0a16082ffce837b1cfa8a67374df016b7239ada", + "data": { + "inGameID": 258 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 258, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "41205bfb921ee4e5856ff66432eb12b4e2b79485", + "data": { + "inGameID": 258 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 258, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "90c047e45d2bcbe260cc342d3814a6e790df64c5", + "data": { + "inGameID": 258 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 258, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4c92b9ba8f6d983c90b0c12fc3eb034f622c249c", + "data": { + "inGameID": 258 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 258, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f7caa48655e4a9e11e24eaabdc5c8d0d82332e4", + "data": { + "inGameID": 258 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 258, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4b06289a3e35c473d4a9e50555bc3bca06e435eb", + "data": { + "inGameID": 258 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 258, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "76b522952c2157c95492d31fd70a3ee1efec908b", + "data": { + "inGameID": 258 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 258, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1fff76006f9e85a137f7d62da4b1e69137c0c32d", + "data": { + "inGameID": 267 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 267, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "322a9ec1a16c771dcad8deb020d0ecc52ad02451", + "data": { + "inGameID": 267 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 267, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "39674ec1a0fff4607030f822b9f9bec01beb4a2a", + "data": { + "inGameID": 267 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 267, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "98168c6db9da2b319586c619b20ec00bc8b26e41", + "data": { + "inGameID": 267 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 267, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7614d3d50b0fe21c20086a46ca2430e960acfb36", + "data": { + "inGameID": 267 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 267, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0fa49da57ee2fa97c1ba7741a257933042085f7b", + "data": { + "inGameID": 267 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 267, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "04b9f231465914ba32687851acca41fde299b4ec", + "data": { + "inGameID": 267 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 267, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "289ac9a993f5207aad4bc076cc20a0c397f7ddba", + "data": { + "inGameID": 269 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 269, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8fd08a3ddae93653f166297b9b2632f9e7567666", + "data": { + "inGameID": 269 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 269, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d742b26e6230eff776f0f4adb7fd269962665bb4", + "data": { + "inGameID": 269 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 269, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b7c7cc00433368def0797038dd97e2bdbca5e0cd", + "data": { + "inGameID": 269 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 269, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0ebe27c82a7acdede1c03c5586255be61ea38065", + "data": { + "inGameID": 269 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 269, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "754cf1e581d671246121b739c4420cec28afc0d3", + "data": { + "inGameID": 269 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 269, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5244b1706aec19cfa505f5a81c713f69d5bf390c", + "data": { + "inGameID": 269 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 269, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bf04416c14c9f1484c0c57ae26f1b59b9f9d266c", + "data": { + "inGameID": 270 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 270, + "versions": [ + "a3" + ] + }, + { + "chartID": "822854212d46017fc26d661cec0afe52bd748c5e", + "data": { + "inGameID": 270 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 270, + "versions": [ + "a3" + ] + }, + { + "chartID": "439c63faa3532baa976951dde8c1e99733e7463b", + "data": { + "inGameID": 270 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 270, + "versions": [ + "a3" + ] + }, + { + "chartID": "5065348675ead504207f7b20860ffb4766b21c9c", + "data": { + "inGameID": 270 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 270, + "versions": [ + "a3" + ] + }, + { + "chartID": "4161f6b02c73949102e00bed4e7771012c9df4d2", + "data": { + "inGameID": 270 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 270, + "versions": [ + "a3" + ] + }, + { + "chartID": "ec97c47c9e4186b57ec7408cb61964a7f6c8cd28", + "data": { + "inGameID": 270 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 270, + "versions": [ + "a3" + ] + }, + { + "chartID": "a5261bbe6c8c6af95cc9284f283307080754d25e", + "data": { + "inGameID": 270 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 270, + "versions": [ + "a3" + ] + }, + { + "chartID": "1f5be2b0d8238a8782c10013ab84ae445c3ebac7", + "data": { + "inGameID": 297 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 297, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5672a8b791afc26aed9c3b068cd97b16d082b67f", + "data": { + "inGameID": 297 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 297, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0dd90056ece1ce5026d340d6f65b95fe394ee7ba", + "data": { + "inGameID": 297 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 297, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "06b008cfb054ae51df0952ceab46558ac53e21a6", + "data": { + "inGameID": 297 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 297, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "37f1190973ae5dbcd699c6acf212ffcdad9069e1", + "data": { + "inGameID": 297 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 297, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "26b2cc372cce112476039292f2be4b23a1e02fa7", + "data": { + "inGameID": 297 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 297, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ec1ed5a177978124d3fda808dfb77d878b8ca684", + "data": { + "inGameID": 297 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 297, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e7d4f66131643ac83dfea8ff1395d061d5a28483", + "data": { + "inGameID": 299 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 299, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d5edeeae7cb3ac064cddab81d4f0bc66332c9a60", + "data": { + "inGameID": 299 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 299, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e0e02e1814751561b9ea4e108c512152033b0678", + "data": { + "inGameID": 299 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 299, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0a651c6a2b39ec78fb42dc95139e903f7dad9845", + "data": { + "inGameID": 299 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 299, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ae950e8aad471acd57b62dd89ef96768a981ee6d", + "data": { + "inGameID": 299 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 299, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "afba6cd68522c5dd78c03714df95deae1f524194", + "data": { + "inGameID": 299 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 299, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a2576ace95014b3ce2bec6cd2e69e4abffccccb6", + "data": { + "inGameID": 299 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 299, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "655ada29e310a1cf6df96559d6d94c4635010d7a", + "data": { + "inGameID": 325 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 325, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "959c5aa0795dbff50d62dca90b16b75568900f94", + "data": { + "inGameID": 325 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 325, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f109b29299f67981a008ef6acd5a367eec4ba3c0", + "data": { + "inGameID": 325 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 325, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4721bbb83a46081279ef2f2f1962d44d1c1b3e83", + "data": { + "inGameID": 325 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 325, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0e273b03c3950552a2ad66213d42f20369300b78", + "data": { + "inGameID": 325 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 325, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3f8ed5a037fe1f207a06d81dbb6fd002029e23e9", + "data": { + "inGameID": 325 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 325, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9a72eb4ad447818fa507fbcb5e886c32bc0c6c61", + "data": { + "inGameID": 325 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 325, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b9d1b38cde13dc77a93b04db179826b4e71c5ea0", + "data": { + "inGameID": 332 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 332, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dd5d4d92aa0403b536c912a907a187bcff4d0f9a", + "data": { + "inGameID": 332 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 332, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ad53520d59c5a9b8f50f828949a2df023de61102", + "data": { + "inGameID": 332 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 332, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1f52a4354e43599760c27404846a29885393eea7", + "data": { + "inGameID": 332 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 332, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "699745ea8a22fcec8a038e2654edcc163aeb48cb", + "data": { + "inGameID": 332 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 332, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "88b1d7547bcf2a58f57cd09293a60f69079a468d", + "data": { + "inGameID": 332 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 332, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d1c87be73e7a47a571b519ee4a34e4a9d8cadbfb", + "data": { + "inGameID": 332 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 332, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2d62c3298516d0ab3aa8d2f27c1af9d58eb9eba8", + "data": { + "inGameID": 333 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 333, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5e69ba85b794c6131a56bdc47aef205f211c13fb", + "data": { + "inGameID": 333 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 333, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "75bb7f65c4ff0af6f09aba5795aca295ccec42f9", + "data": { + "inGameID": 333 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 333, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8c9e8160644b017689b33fa445198d6a0b68eb89", + "data": { + "inGameID": 333 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 333, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bcd56b0e588d5d47d8d29d7afc766701265e908e", + "data": { + "inGameID": 333 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 333, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "596f0262026f2dc257f694b8250ba691be44dd84", + "data": { + "inGameID": 333 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 333, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c654d3cf6b001ba07369da231465fc5122d72472", + "data": { + "inGameID": 333 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 333, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e8d8fa8423e7eed514782d21d45c1396a07fc577", + "data": { + "inGameID": 336 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 336, + "versions": [ + "a3" + ] + }, + { + "chartID": "2eab239fdb612deece6d64532e4070e914759c1e", + "data": { + "inGameID": 336 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 336, + "versions": [ + "a3" + ] + }, + { + "chartID": "fe2f56be8a0e37dee05e63d303ad2b62ad2fd234", + "data": { + "inGameID": 336 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 336, + "versions": [ + "a3" + ] + }, + { + "chartID": "322c25bfd60b2998eaffb5561aa3db8c1b7269f3", + "data": { + "inGameID": 336 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 336, + "versions": [ + "a3" + ] + }, + { + "chartID": "16a047c8223f4a22be7f6d1dd7d633da6da35664", + "data": { + "inGameID": 336 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 336, + "versions": [ + "a3" + ] + }, + { + "chartID": "078e65e1de44741fc72363b8eeb63fe063fb41dc", + "data": { + "inGameID": 336 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 336, + "versions": [ + "a3" + ] + }, + { + "chartID": "de9d48ea7b3d63f2f279bd1ec51af53036487b31", + "data": { + "inGameID": 336 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 336, + "versions": [ + "a3" + ] + }, + { + "chartID": "c376dd26a878c1e04c73e7d5d46bf45f18d04370", + "data": { + "inGameID": 342 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 342, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6df7eabd628fd3ed3663a809e34f4b3d7933980f", + "data": { + "inGameID": 342 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 342, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a52b5ed6220bb988c817c9d7e001ac019d035813", + "data": { + "inGameID": 342 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 342, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b36e0224052a9fcda6030b977586718c6c94f1c5", + "data": { + "inGameID": 342 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 342, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "389d4f8819eaad68dff08053ff4074e5b00f90fa", + "data": { + "inGameID": 342 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 342, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "38a35660cde0b278ce36454712f09cbd7f918e66", + "data": { + "inGameID": 342 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 342, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5d35ab621d684cddc3d0a1a72b3da57a38620807", + "data": { + "inGameID": 342 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 342, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "75bf089feea2eedb52874b4014db1ecf77b5b69c", + "data": { + "inGameID": 343 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 343, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "67d98412bae91ecb7c2ab5d9fd80d30752e5fe5c", + "data": { + "inGameID": 343 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 343, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d436f87675433371d734e3ae65c522d44cce7636", + "data": { + "inGameID": 343 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 343, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c1269bb44051e31fe00838169b620b5b2c30c0de", + "data": { + "inGameID": 343 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 343, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1fa89207c5ed1e7baf7fe91a4ae85ac4aeccb800", + "data": { + "inGameID": 343 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 343, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aa6a17e08dab3ad7320fead5aec30f01baa65c30", + "data": { + "inGameID": 343 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 343, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ffcc2454678757649b14c004dfca7b5a0b33d663", + "data": { + "inGameID": 343 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 343, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f598cbd62028919d24668aaf3fca5315cf037b92", + "data": { + "inGameID": 346 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 346, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5d2f09e724790229cb3956029f29bf887b303c25", + "data": { + "inGameID": 346 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 346, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dc1708beb2c1e27af114c69b934ba39f9c5ceef4", + "data": { + "inGameID": 346 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 346, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "70071007c94c76478e977300531880f8d3674997", + "data": { + "inGameID": 346 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 346, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d936275aaa21e974eca2e70b6d0f0a5b9b0f200", + "data": { + "inGameID": 346 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 346, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "532ddac6fc367bc863fb7c2cdb4cbddf7cb68a94", + "data": { + "inGameID": 346 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 346, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2625a8edb2afcd16daa5d5fe9b21429e6629949e", + "data": { + "inGameID": 346 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 346, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d7631d8af52acbe0769295953ab05b4d8a8a2860", + "data": { + "inGameID": 354 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 354, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d7c01776fe3bf3aac9064ec71729858336a8b3ec", + "data": { + "inGameID": 354 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 354, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2da92a150d89fd88ba760b76b01227e5b19e3e5a", + "data": { + "inGameID": 354 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 354, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ab9d1ae2ff501772c046e2499f20c4d731fa1ada", + "data": { + "inGameID": 354 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 354, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c7027addd333382ab131da6d1a251d5dda410122", + "data": { + "inGameID": 354 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 354, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d3b39dcbfdb07861c87264ace8016e543d350da0", + "data": { + "inGameID": 354 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 354, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b3f3fef22ae1daa93facaba2e499f662d1994468", + "data": { + "inGameID": 354 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 354, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "55c5313bef727dee688fc6570ac33a5719bd4ee4", + "data": { + "inGameID": 356 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 356, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c6a860da57d7909eb4bffbab89c3a4257644ec6f", + "data": { + "inGameID": 356 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 356, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "57ff66fddc0a69ea45363d9f9bb5e8662bcd31d3", + "data": { + "inGameID": 356 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 356, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "54f00ba2928d2afb41830094d55b9e4b1aa48912", + "data": { + "inGameID": 356 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 356, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce4aba289390bcfd53f023c0b45a0728311e91e5", + "data": { + "inGameID": 356 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 356, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "74869822df7d3de74814abf85de232545cf85a42", + "data": { + "inGameID": 356 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 356, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "42c5f291ef7d67a75321b93ffe194744b6ff03d5", + "data": { + "inGameID": 356 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 356, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "44e280d764b0bd818645b2eed003233eafa74f6e", + "data": { + "inGameID": 357 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 357, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fbcf8f895efbbb1211f1c5cb18bd564157c7610f", + "data": { + "inGameID": 357 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 357, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ea6117a230674a8248a8f655cd1cf296dff04eb7", + "data": { + "inGameID": 357 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 357, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b1669928b804b8dfd057c9cdc401f61aff85a194", + "data": { + "inGameID": 357 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 357, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "35d8a78834f36d4fd6db16f385fc8a6b88349bb0", + "data": { + "inGameID": 357 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 357, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8d80b3591396fbdc39593eedaa37b957fe680cd5", + "data": { + "inGameID": 357 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 357, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "801b3b01eb8fbfdbd9bb3ef79f2b6345209a0ef7", + "data": { + "inGameID": 357 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 357, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4676e4330fe569162069422527e42c588510047d", + "data": { + "inGameID": 358 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 358, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "63773d8423e8f798661fbdafcce022c4c33e3b46", + "data": { + "inGameID": 358 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 358, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "67f98afce25d584639aafc6069b0ec1be084c1e3", + "data": { + "inGameID": 358 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 358, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4d6716569bbd43faab7273705faef3471568569a", + "data": { + "inGameID": 358 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 358, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ed89f971defa3017f8ce781e9d902775bf3fbc4a", + "data": { + "inGameID": 358 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 358, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "27e0d1d42422fe7bc4fa90b89cc47bd619546783", + "data": { + "inGameID": 358 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 358, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b0ffa02e2dca405493a32ed8c0ba01ca66caff1b", + "data": { + "inGameID": 358 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 358, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8182e30278abd4aa32e74846266d572267380fef", + "data": { + "inGameID": 359 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 359, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "de3f1c678405c332af75ca3c0da8e218275daf29", + "data": { + "inGameID": 359 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 359, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8c2a6923c945fb0a657f227e8937b025dc00a7f", + "data": { + "inGameID": 359 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 359, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "12d2ab3e44bcc4e8ce7cf8c6cdc1bf7bdc717465", + "data": { + "inGameID": 359 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 359, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7d2b62dd9da29987374e99c1d9d517011e260018", + "data": { + "inGameID": 359 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 359, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eb52656f56214aa4b608a240918fff0ee633663e", + "data": { + "inGameID": 359 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 359, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b9a66d0626f11eb2bb526804f044ac9508e5c53a", + "data": { + "inGameID": 359 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 359, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4f389a261345de3ce872a63cd6e67309d2bbdc32", + "data": { + "inGameID": 360 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 360, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "39250fe122db17993b5356cfab834f0e98a52c20", + "data": { + "inGameID": 360 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 360, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2c4884370fd1ba24ee4d907385644859227a6d3b", + "data": { + "inGameID": 360 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 360, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d2849d4cb72963fa466e245499cd6b65018fa0c3", + "data": { + "inGameID": 360 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 360, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "525c534b1c9abab642d996d795d98e5847dc073b", + "data": { + "inGameID": 360 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 360, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "95e7e4365fb7d68e7468a8eed97cb8ef17663e00", + "data": { + "inGameID": 360 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 360, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "db2600d204ba14e12c209b818c8b799900b4218a", + "data": { + "inGameID": 360 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 360, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1b088ff137a7905c872c5d960ee9e827b6ed5b25", + "data": { + "inGameID": 361 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 361, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "964db9bb7dc628d10f08ee02ffc783cc9b5094f4", + "data": { + "inGameID": 361 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 361, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d8926aa7be2b2eb2b758e64144be029d4372a279", + "data": { + "inGameID": 361 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 361, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "30632a56e7aeb5e4a3e6996e481fe71458fc8d0b", + "data": { + "inGameID": 361 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 361, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "563032799c814b0472747a5b8645fe565eb34485", + "data": { + "inGameID": 361 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 361, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e0f82533fb1db485d3167a66385c9aa18e4b3c5b", + "data": { + "inGameID": 361 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 361, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "48052185af3a21b4e10d3cb0eb961ab14b91c6bd", + "data": { + "inGameID": 361 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 361, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4b835d67f7847b8831c7a0b9fdf4d4f5566e07f5", + "data": { + "inGameID": 364 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 364, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fadef6bf42fb8c7ad5e6a4cf683cb2d807bbfbe9", + "data": { + "inGameID": 364 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 364, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "31c628f66e624bc8a1a1d8b5d82c5891000a100f", + "data": { + "inGameID": 364 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 364, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "db4fe2771ce788b935d6deaca3618236f1b9d30c", + "data": { + "inGameID": 364 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 364, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c7d9791621be02c1adddfb434c10103f0f7cd7f6", + "data": { + "inGameID": 364 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 364, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "05a3524f8cc7dcedc150658a74a9975f6d2b105f", + "data": { + "inGameID": 364 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 364, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "718bca4b3d00f97e5b72a76815d51d20688927c6", + "data": { + "inGameID": 364 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 364, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e0f0a3f9824b6dd10bc6ffa5773a34b81293ca74", + "data": { + "inGameID": 365 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 365, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "13cd70e767bb106b64d289f17ee12cfb042e6ff6", + "data": { + "inGameID": 365 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 365, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "90c83e2bae37f0f84e143b55d77bf698b020f6ff", + "data": { + "inGameID": 365 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 365, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1900a49b479379c7c9536dc1fb8700b7f5f13502", + "data": { + "inGameID": 365 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 365, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1020bf5ee3e4704c89f9ac69c899d7115c93b26e", + "data": { + "inGameID": 365 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 365, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eeb635aad6ae032f648666b79ea8580be93fda0b", + "data": { + "inGameID": 365 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 365, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "566d4675d7aee0df15f0c48f4f6ed4df62e1c877", + "data": { + "inGameID": 365 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 365, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3c86b39ed440e41832f231f9e5515b4948ae14e5", + "data": { + "inGameID": 371 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 371, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ca953435a327ae278ebd5c7f7d1842a19b772219", + "data": { + "inGameID": 371 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 371, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bdcf32ad27a3bef0df75ea66aecf702a9eeb5f3d", + "data": { + "inGameID": 371 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 371, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bbf627854f5d33710be311c11fe7922b74e0d3b8", + "data": { + "inGameID": 371 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 371, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "913a4bb70904a683e85575d5c0b0041aee56d484", + "data": { + "inGameID": 371 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 371, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5fee744755e0eaa5bf66309a4aecaf0a48a3b280", + "data": { + "inGameID": 371 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 371, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "78fb8746bafba4d32dfdfc680cb07c9eadc6c956", + "data": { + "inGameID": 371 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 371, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "49fb6abd79dd55c05fdd5544c457abfac2075817", + "data": { + "inGameID": 371 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 371, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "81500bfd7abc0d3751a8226e57df621ab890cbd9", + "data": { + "inGameID": 371 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 371, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d3bb389ce004bcca6d0c8dbdab6462eae09fad34", + "data": { + "inGameID": 372 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 372, + "versions": [ + "a3" + ] + }, + { + "chartID": "bfc78f28388de78b5410e4b3bc10a4c5bfb6d197", + "data": { + "inGameID": 372 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 372, + "versions": [ + "a3" + ] + }, + { + "chartID": "5308d21da81649fae8e6449395c848ee86fee7d2", + "data": { + "inGameID": 373 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 373, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "af294ae0bc646ac3482df68659d479600996e053", + "data": { + "inGameID": 373 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 373, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d21b593f653d93edea9de20f66e1bffd268018fc", + "data": { + "inGameID": 374 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 374, + "versions": [ + "a3" + ] + }, + { + "chartID": "f7741b0fac3f10a73e86f5c2eeb8d02e64fbe672", + "data": { + "inGameID": 374 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 374, + "versions": [ + "a3" + ] + }, + { + "chartID": "0b3e2f1f4ef79ac570c4569d2dee8728dd73ec08", + "data": { + "inGameID": 375 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 375, + "versions": [ + "a3" + ] + }, + { + "chartID": "a2ae592c51707a9f78ef038717659704bb4c04cb", + "data": { + "inGameID": 375 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 375, + "versions": [ + "a3" + ] + }, + { + "chartID": "9b6b8a423c58ea7e91ffbd04242f0882f342b6fc", + "data": { + "inGameID": 376 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 376, + "versions": [ + "a3" + ] + }, + { + "chartID": "7fd7475fcf6ee1d55bd94f3a2cc84811235c9fc7", + "data": { + "inGameID": 376 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 376, + "versions": [ + "a3" + ] + }, + { + "chartID": "cd3f972669eed76e98497665603351b157ea72aa", + "data": { + "inGameID": 378 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 378, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6a6261a94a4e06d8b517a545973a83ffb0436be1", + "data": { + "inGameID": 378 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 378, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9a74a14cb219e0681fa09644cb11878a0a987333", + "data": { + "inGameID": 380 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 380, + "versions": [ + "a3" + ] + }, + { + "chartID": "a6e187880cfde9fa46d49353521e08d6cae05999", + "data": { + "inGameID": 380 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 380, + "versions": [ + "a3" + ] + }, + { + "chartID": "f4cbfee24639999107d7863e75f8f50bbc016e75", + "data": { + "inGameID": 381 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 381, + "versions": [ + "a3" + ] + }, + { + "chartID": "fa302a71ccf3c00f034765ba393bfeca205b6c4e", + "data": { + "inGameID": 381 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 381, + "versions": [ + "a3" + ] + }, + { + "chartID": "c29771ae3b73a337b6d2963558ff65a80ab76ed2", + "data": { + "inGameID": 382 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 382, + "versions": [ + "a3" + ] + }, + { + "chartID": "991b848b56c35ed9f2b5eb49b4577109ca8aba46", + "data": { + "inGameID": 382 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 382, + "versions": [ + "a3" + ] + }, + { + "chartID": "3207423b2e5700fece3274f3f4c3fa5a4703a01a", + "data": { + "inGameID": 383 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 383, + "versions": [ + "a3" + ] + }, + { + "chartID": "6b29e1e4689d3fd19611c343bf1e27f0fcf6254a", + "data": { + "inGameID": 383 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 383, + "versions": [ + "a3" + ] + }, + { + "chartID": "150446db60077e732289388a96c9334fb791a1f4", + "data": { + "inGameID": 384 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 384, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4ff588be64636e6e812d7390dafa99b0b04e3555", + "data": { + "inGameID": 384 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 384, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ac73db9df815a2fd2d58ce0985cfa3065302eff4", + "data": { + "inGameID": 385 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 385, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3adc9f3ca4d0b7fc762c6206caee43bc3fd20729", + "data": { + "inGameID": 385 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 385, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9ad917890289b8726fedc1223aeef675ee064c11", + "data": { + "inGameID": 386 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 386, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4622f0b49753b66b61e5fcc9c141d44c6f15eb9e", + "data": { + "inGameID": 386 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 386, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "81d84251d9091ef24e0f002b80f1ebbed607f61f", + "data": { + "inGameID": 387 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 387, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "88141313cb92db7e519df106a8b0432b594372ed", + "data": { + "inGameID": 387 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 387, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2601f9cba38a220d3a10ad4294f29b8da782d1b3", + "data": { + "inGameID": 388 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 388, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0bb55474948520ee6ff1ecc1cb8d18c1d508967a", + "data": { + "inGameID": 388 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 388, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c305f5a1434b2de1459b80152957278de158bdef", + "data": { + "inGameID": 389 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 389, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "72700af47985d3bd892854a1c0a33b3666cd6073", + "data": { + "inGameID": 389 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 389, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e6151a5e7775980935fdc37f38ae8bf13757366b", + "data": { + "inGameID": 390 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 390, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3598132ae5df019922aa538693fb833e32bdd5a8", + "data": { + "inGameID": 390 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 390, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4ef153891446c205a8cdb64d15f4802f3897cdb3", + "data": { + "inGameID": 411 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 411, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c8a728ec5cc67ddd01c42f75682f6c73b6449f82", + "data": { + "inGameID": 411 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 411, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "448677f8a7031e9a651e41214ed130b5795d3b55", + "data": { + "inGameID": 411 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 411, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "628b9a066b0de133f9e2b853bdbf74554d0df4ab", + "data": { + "inGameID": 411 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 411, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0fef37c63c7660d1aa4cb98a8a44c455c525e34c", + "data": { + "inGameID": 411 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 411, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "774ac72c00bfd0523ebee34c1b32753c335ec326", + "data": { + "inGameID": 411 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 411, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "30be94775fba37b9d38f467dccaed5224c408b66", + "data": { + "inGameID": 411 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 411, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d2f52d0d750cf0011bccb94003e20445c726ad99", + "data": { + "inGameID": 414 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 414, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "da1db680847428f7dbf63cbf60a4d0020fc30d3e", + "data": { + "inGameID": 414 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 414, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6dd0dc5d40ad0a9da0941ad729787496c1eb143f", + "data": { + "inGameID": 414 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 414, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bd3c460cf1bcf1a28ca1941c0987b08b54dc4180", + "data": { + "inGameID": 414 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 414, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bb5e3ff3227baf9fe4e07097393b15b79a5f9482", + "data": { + "inGameID": 414 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 414, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7ec0048edc88a16f6e3ee7e6a1a113b9359e6b30", + "data": { + "inGameID": 414 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 414, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2bc636ee2219327fc0f66d22f759c8555aaef14a", + "data": { + "inGameID": 414 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 414, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0bf8e31629e57d1b44f3ce96733335ee3ec9dfa7", + "data": { + "inGameID": 415 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 415, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c44b75befab81c6018dd04d9a9b2dac1b9017478", + "data": { + "inGameID": 415 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 415, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4517501929602940beb1230c60c8811b057d31ef", + "data": { + "inGameID": 415 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 415, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0b602696c3ca5e9f69fcf0bf8666160c66570288", + "data": { + "inGameID": 415 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 415, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e38a8579aa1f4a1d4d7c5d99355c8de77c5b2c8c", + "data": { + "inGameID": 415 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 415, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "44d22f02ba18ed2991378eaf01e9e3f8374cd7a3", + "data": { + "inGameID": 415 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 415, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4ac7d0e8dcd9aba6e4d3ddf72abb9f2dda4c2c3e", + "data": { + "inGameID": 415 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 415, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7b6c48586c88eaae8d0e2001848e52f7cb0367c7", + "data": { + "inGameID": 420 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 420, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "26a652477e70ab70aedf786359978454d8012e87", + "data": { + "inGameID": 420 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 420, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9d7ee4580fbb7d8555bd0ee0d9185d3be980db0d", + "data": { + "inGameID": 420 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 420, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a029c51aa965121d7cddcfc62c33dd202dcbce74", + "data": { + "inGameID": 420 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 420, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "43417d91507d609953b7dae0c575fdff22d26567", + "data": { + "inGameID": 420 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 420, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2c7085b835b0ee292c70f3b2eb02fe9ffc8948ec", + "data": { + "inGameID": 420 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 420, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "95846550bee467f8f66277b62ce10c5b2f476826", + "data": { + "inGameID": 420 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 420, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e8d345d0c9df4210f41daa7ff1abea1cc64be62b", + "data": { + "inGameID": 421 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 421, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e94473f7213abe2e2f95fc873ededae0c7d3a437", + "data": { + "inGameID": 421 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 421, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "04a9e8396991b5618662bd77cb5f4016ea66c2a7", + "data": { + "inGameID": 421 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 421, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "28a08ee6cd2080214ee61a3aa84f4c759ede6cd5", + "data": { + "inGameID": 421 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 421, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c8353f42be4154da7448b7d4945b3d15a03c71fd", + "data": { + "inGameID": 421 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 421, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a7b130db54378a8c53c49fad5cea1c990cd3382f", + "data": { + "inGameID": 421 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 421, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a949171581868a5d765ac2d030c449eb4cbfa0ed", + "data": { + "inGameID": 421 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 421, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b2e5e7e94c85e7bdc8429284c7a3fc557cfaa168", + "data": { + "inGameID": 428 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 428, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fb20fdd26abb1f5de214e04a4eb16c921dd81442", + "data": { + "inGameID": 428 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 428, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2d70292c91c2ed4fbe3c5fdd9a19cab2694eadb7", + "data": { + "inGameID": 428 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 428, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bb620878249a4a7f659884f8852443d1c38241e4", + "data": { + "inGameID": 428 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 428, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8833cb8d6accc8bc5290cacf4dbb1945ce1cd8b6", + "data": { + "inGameID": 428 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 428, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8bc1e14920fdb3e56ca529808835eeb76bb188eb", + "data": { + "inGameID": 428 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 428, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "390a5da59fc4bbb95b1f8b3983e323310471fbeb", + "data": { + "inGameID": 428 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 428, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "60101ba9a73dcdd22e719486c39722f0a7da510a", + "data": { + "inGameID": 429 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 429, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9b56062bd25eb01991f89f36cf0913e16934540c", + "data": { + "inGameID": 429 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 429, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "78652c7700d44244c1428da52e12aa36a3b4b785", + "data": { + "inGameID": 429 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 429, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "24395225d43bca3a30e5342987b5be35091d2ed9", + "data": { + "inGameID": 429 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 429, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "913714965d2358f41cf8d6346b3a37749d0076d5", + "data": { + "inGameID": 429 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 429, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "89064dff152f1084247e1bc27be253281897d1e9", + "data": { + "inGameID": 429 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 429, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dcc37e88bd95af07e921ec1032b42e733b374b17", + "data": { + "inGameID": 429 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 429, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "34784e5c68afcde6e732de32b9489095ab09750d", + "data": { + "inGameID": 430 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 430, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e8589b97a7c81b10883805f0d4cabb1690c1baa3", + "data": { + "inGameID": 430 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 430, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9249bdb5f4145fca04af4c1468571bced200b1cb", + "data": { + "inGameID": 430 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 430, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "97847ad0befb43406298577cbdb75437fda3915c", + "data": { + "inGameID": 430 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 430, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1a8995abc080c54b259e355f73851fc21293b0b1", + "data": { + "inGameID": 430 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 430, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "74156b6f20fff0b8ca1f7689e73b7d48e6aa4e17", + "data": { + "inGameID": 430 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 430, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b548f79f515002ea3be887f1170c4dca676683b6", + "data": { + "inGameID": 430 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 430, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7b94cee2947acb88d94cf378a0d2027a811d26a2", + "data": { + "inGameID": 436 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 436, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "35b73dc453c90ea310fd9e4a08b918eef4c579bc", + "data": { + "inGameID": 436 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 436, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f89f92da98481a11ff54723f06767d88cdb8cbb6", + "data": { + "inGameID": 436 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 436, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c3d29616594ed83135b2154259ddafdd0206402a", + "data": { + "inGameID": 436 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 436, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aee717be80c0e49ec54eb1cac0d0cac11058831a", + "data": { + "inGameID": 436 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 436, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aa699415fbc41dafc42a7c1d4eab0b50e81684d4", + "data": { + "inGameID": 436 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 436, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a064c914cba3eec1201e08ac0c55fd70e27e2f91", + "data": { + "inGameID": 436 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 436, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "879bf164f9a20f5659b366ab81a063608441c85a", + "data": { + "inGameID": 437 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 437, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2cab3c4ba97e198e993d7afe4b1a70642402be87", + "data": { + "inGameID": 437 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 437, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5dd1516038b54fbf09245506fce4b655ab6f9fb8", + "data": { + "inGameID": 437 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 437, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "73f08a0625a36eb26464449947491e08c7172db6", + "data": { + "inGameID": 437 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 437, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6f0de23cff43d746636ad68084f459b687cc3caf", + "data": { + "inGameID": 437 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 437, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fd228609d5cc0b080b481f158661c4188bed6f68", + "data": { + "inGameID": 437 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 437, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1c388692ae7ece3d73d70425e687ab825d5efac4", + "data": { + "inGameID": 437 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 437, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "12e8cf14a420c86e69f7c27d060b2a844ecfb2e4", + "data": { + "inGameID": 438 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 438, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "189818db2eca5170b9ff9ae0c6c9f5bff394e243", + "data": { + "inGameID": 438 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 438, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "77090a5bbd0fec97b73f1f3142ae50e678129edd", + "data": { + "inGameID": 438 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 438, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6138ef786f43573cf9fbb38b263da7af24bd5eb0", + "data": { + "inGameID": 438 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 438, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "71805cad427c5726e66dd772e31c320927c841cb", + "data": { + "inGameID": 438 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 438, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c6d5eea6890ff391562467e19f75002b1005e25f", + "data": { + "inGameID": 438 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 438, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "418e213277c6320ce4ceaa5b3b92f9d202c49525", + "data": { + "inGameID": 438 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 438, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "718cbe7eff980783147596147810bcb09f5dc121", + "data": { + "inGameID": 439 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 439, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b0370130d71ce367c0c497d213b252ecad41dbb7", + "data": { + "inGameID": 439 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 439, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0499df03c883163e563d7fa1602ffc52f3cd78d6", + "data": { + "inGameID": 439 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 439, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6b316a8af369d6dfedfe0b69cebb9ed2a2c2375c", + "data": { + "inGameID": 439 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 439, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9de20ead697de5a9719bf3ba54c426de9c3d5157", + "data": { + "inGameID": 439 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 439, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "750597e4ed1c304e7c0299b35fff772dcc8957d2", + "data": { + "inGameID": 439 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 439, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fda45bd0134da04e1cd1610c3a8b57c9e5ae425f", + "data": { + "inGameID": 439 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 439, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "13e1a0b5f3063728af6898e28ce56a59fca4e1a9", + "data": { + "inGameID": 440 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 440, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9d67ea0ead532e3cc0a0c899f193df76f65dc0fb", + "data": { + "inGameID": 440 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 440, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bd625d2b81fca6ff7eb7d0a7074cb8cbbadae9ef", + "data": { + "inGameID": 440 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 440, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "218911e8a021c7fca0fc4eede32e8514cfbf2d03", + "data": { + "inGameID": 440 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 440, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "db4768a25dfc3b521e7c91f90a252dd216fef13f", + "data": { + "inGameID": 440 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 440, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3399c83bfa85d7e2218a69e639cf3b7e418ffcdd", + "data": { + "inGameID": 440 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 440, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8eb9ca252e88dd1c41358d79aea4bb1b562d1d22", + "data": { + "inGameID": 440 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 440, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "adc2060b6ddb72400229e29e72d8d01e6b053a00", + "data": { + "inGameID": 441 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 441, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "27f832ec3cf4e41c041b55042dd4e1db2ff24145", + "data": { + "inGameID": 441 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 441, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1e3bfeefac0f5fdc7c99430eaecee3488ea0b393", + "data": { + "inGameID": 441 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 441, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e795733adfda06f19dd5ed243f72c68413cbf648", + "data": { + "inGameID": 441 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 441, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "98fa5c7a234d8cd7f45566904dd1986535de4101", + "data": { + "inGameID": 441 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 441, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "04bdb6b129d9fb87141f86b82fda76db5df9c48b", + "data": { + "inGameID": 441 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 441, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dffddfe1b7cbb2e2ac0fce4f5bd47091a1db5269", + "data": { + "inGameID": 441 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 441, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4c8fcd0e5dec7badce7bbd5094fece567638296e", + "data": { + "inGameID": 442 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 442, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d8730c2d987f79ce373cf6b5585c8da2c9f6c6e5", + "data": { + "inGameID": 442 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 442, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bdada6af99fc7f7b908e9740f048a5ed7447e5f3", + "data": { + "inGameID": 442 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 442, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "64afb7482f41eae118aa2c254fa6c0350c059336", + "data": { + "inGameID": 442 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 442, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9df050862ea7dc6fc827c3df782de3903b6fc354", + "data": { + "inGameID": 442 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 442, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "113073812df0dce8b823d0a8e98f9f23ee579bdb", + "data": { + "inGameID": 442 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 442, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dfff836dab53e1a12b467a1ed20f73b12950766b", + "data": { + "inGameID": 442 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 442, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cfb2e4daae81386731b71c22e917f40a6ca6da96", + "data": { + "inGameID": 443 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 443, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "290e22b6924b7ded1fdfc0ecd353919384b582a0", + "data": { + "inGameID": 443 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 443, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4a36fbe420d2de3ececb236da2faf8eeab4ec685", + "data": { + "inGameID": 443 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 443, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9964f555874fe9669237fe184b411beff0a0922d", + "data": { + "inGameID": 443 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 443, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a337995ce6ad7754bf7475304ec1e7ba7d73d588", + "data": { + "inGameID": 443 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 443, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "89894f49d7bc0888a8356b9f254de4c6be065351", + "data": { + "inGameID": 443 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 443, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "441ca69aa1927e8c3697cc13b6d58ba2ece083dc", + "data": { + "inGameID": 443 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 443, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d19cae752263c69304f6053cbb690732606848ea", + "data": { + "inGameID": 445 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 445, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "533cd4e502fdc71174a7cd25f1136eacc1dabbee", + "data": { + "inGameID": 445 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 445, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3ceefa51309e69a2f15144a1922471f576fc6d1e", + "data": { + "inGameID": 445 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 445, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3da8af49441dbac16999896c8e8182022a844552", + "data": { + "inGameID": 445 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 445, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5eff5e8cd5bf2ecfa434d3732e726dd9dda992fe", + "data": { + "inGameID": 445 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 445, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e92c4ed9351ad54e0bdde9792fae9c8aeac8471c", + "data": { + "inGameID": 445 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 445, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8e1d4ee986597ab57eb1335ec0ddcec0cf937b66", + "data": { + "inGameID": 445 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 445, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "58d19ba88e8018da79890a2dab0d841df2a6fd96", + "data": { + "inGameID": 446 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 446, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b82420c599a10d523fb2314af3aa38e0020aa47f", + "data": { + "inGameID": 446 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 446, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d2f0b85847075703c6cf77ff8beb7a25901d33dd", + "data": { + "inGameID": 446 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 446, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "465726dbd64532449e5fb5c82fa9b95f98154593", + "data": { + "inGameID": 446 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 446, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e72e473e07ae990c520076243e0b4b7cebe40e95", + "data": { + "inGameID": 446 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 446, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b1b18fe394895df7414a01b8ecabc3dcfeae18c8", + "data": { + "inGameID": 446 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 446, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "feb61d185afc9a9865542e0fa5289540e91dbf28", + "data": { + "inGameID": 446 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 446, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e3cdd7c7a4eb8b795a3bf8b7e4dd561f704d63db", + "data": { + "inGameID": 447 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 447, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d0c683d71073011141f3c53fb7f302153a9c1215", + "data": { + "inGameID": 447 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 447, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9b834140f2371367324c3ffef0cb065d1e9644d6", + "data": { + "inGameID": 447 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 447, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a7ef4f71021cfe3e5da312d407ab16195cc8ed7a", + "data": { + "inGameID": 447 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 447, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "368f8b9c94448ebd904910b174a6bcfb4e52ef58", + "data": { + "inGameID": 447 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 447, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c2dea0e3549ff90d88ff434b405d070ce2f5d4b3", + "data": { + "inGameID": 447 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 447, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0e193762178fd8c6049bc00768b11feeeef2a157", + "data": { + "inGameID": 447 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 447, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e342d5d9aed8547783e7b1afe1548082897c2db6", + "data": { + "inGameID": 448 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 448, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f6dcdc9a08a874a8ad5887a79a648b85fb468b82", + "data": { + "inGameID": 448 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 448, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f34cd844b98362500536e59707c9df491a6a305d", + "data": { + "inGameID": 448 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 448, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e7d949aeadf04ec1030775b96ad4e785bf09c697", + "data": { + "inGameID": 448 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 448, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "caf76d194cbae6e78c1422e3072af430454eb8a9", + "data": { + "inGameID": 448 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 448, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4fa365f9132ca4c42259fbdbc61d9449d4b509fc", + "data": { + "inGameID": 448 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 448, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5757d852a5fdc12e7d07f6c9af0048eab56a3f80", + "data": { + "inGameID": 448 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 448, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cb2f0a68fe7aab29858e4b1008d4292f58eec352", + "data": { + "inGameID": 448 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 448, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "473740607e8a9b79598eaad46a27068aebd4de70", + "data": { + "inGameID": 448 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 448, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a89b0b325f8b2b1ce6a93c84a531f1f65b4cb234", + "data": { + "inGameID": 449 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 449, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5d517bdf1f39a4334c870c13a2fc1e65abd0b36c", + "data": { + "inGameID": 449 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 449, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6defa93bec304677c006857c9cd589db627b96e6", + "data": { + "inGameID": 449 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 449, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "805a375015b08909ab42ab96d15705382ee66080", + "data": { + "inGameID": 449 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 449, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d98bb51b7f4f0e8d7629dcf137ab7e061fcd045d", + "data": { + "inGameID": 449 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 449, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4b8ef5d17f5ca7df2387fd52cb794415ae186ac0", + "data": { + "inGameID": 449 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 449, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e447d467664c14c4cae313d124ed8df18e40a11c", + "data": { + "inGameID": 449 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 449, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "66ea51aeb0e885455a3f5d27abcc9648813dc41f", + "data": { + "inGameID": 449 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 449, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5b56bc85caf984d239ebde6940dcc366a0cc4f0a", + "data": { + "inGameID": 449 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 449, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "54fa704b7c2d968760285eb337a9d8e86e815607", + "data": { + "inGameID": 452 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 452, + "versions": [ + "a3" + ] + }, + { + "chartID": "6b7442559ec5ddfc742445c15968d1e6185bf39a", + "data": { + "inGameID": 452 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 452, + "versions": [ + "a3" + ] + }, + { + "chartID": "7294fd02fb80b6453965bac93cc7e20c0aa1c271", + "data": { + "inGameID": 452 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 452, + "versions": [ + "a3" + ] + }, + { + "chartID": "bfb77c83ff2c46fd72bc8f3d40905324be37bb5e", + "data": { + "inGameID": 452 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 452, + "versions": [ + "a3" + ] + }, + { + "chartID": "b70299919e9de9bbfb4feb3336962b983dd9019d", + "data": { + "inGameID": 452 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 452, + "versions": [ + "a3" + ] + }, + { + "chartID": "ab2688a9e63489ee4b0db6744843e9c5cd451f46", + "data": { + "inGameID": 452 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 452, + "versions": [ + "a3" + ] + }, + { + "chartID": "e1d49ea9d944f9af4e0fa5922e8f6523dd91a113", + "data": { + "inGameID": 452 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 452, + "versions": [ + "a3" + ] + }, + { + "chartID": "460fda03970344c9c1f0d5f6d9e3a2fbae9539d9", + "data": { + "inGameID": 452 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 452, + "versions": [ + "a3" + ] + }, + { + "chartID": "c7f1a7ea2637b9f956868526347e7a3e59adc846", + "data": { + "inGameID": 452 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 452, + "versions": [ + "a3" + ] + }, + { + "chartID": "6c161b400096b19753b23f780d9a4f580096218e", + "data": { + "inGameID": 453 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 453, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7d8d2a2b533b4b3ee3d30483dc7b81c30be0d4e1", + "data": { + "inGameID": 453 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 453, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "077798b158cb5aedd2f833b3707d794ed9a993ad", + "data": { + "inGameID": 453 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 453, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "697e6a21a249969552b9577477aef565822207d6", + "data": { + "inGameID": 453 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 453, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b7238eb6dda9d2759737f78f9a5a22d3f806087a", + "data": { + "inGameID": 453 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 453, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7156b184118872f19d1bf9e31aae5908e0b39158", + "data": { + "inGameID": 453 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 453, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "46b64cde031cd42bf58dc9e8b7e88b0bbc06d6ea", + "data": { + "inGameID": 453 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 453, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b1fb648f429a87038177c04067f511593b542878", + "data": { + "inGameID": 454 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 454, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4f0297dc9e8b22ee1cd599c22a4da0739f227fcf", + "data": { + "inGameID": 454 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 454, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1fb1e553450a6ce89d12f10bc0ea68142c9b1989", + "data": { + "inGameID": 454 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 454, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0c9616b2fd44e15bcc7a88cc79cf7f352d0a2f13", + "data": { + "inGameID": 454 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 454, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8e0cc0accec9ffcefade10313a324b39f1981818", + "data": { + "inGameID": 454 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 454, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3b96eb49beadc194870968626082f5c5a4693c75", + "data": { + "inGameID": 454 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 454, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2d04f425d3b50858bdaf3689246b69bc238dc7e0", + "data": { + "inGameID": 454 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 454, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2638aa7a81d148f73c13880ed3e3d9efdfbae7dd", + "data": { + "inGameID": 456 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 456, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e795d93d0317c921bcc27e77ef13c558dc3953e0", + "data": { + "inGameID": 456 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 456, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0091705d6fd6ecce3125959f586c39610704f16a", + "data": { + "inGameID": 456 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 456, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "87ee84507d3d5a9704571c05c6e80b6b7359d6f8", + "data": { + "inGameID": 456 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 456, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "625c3e462f99d0b1f12468cba8335f291b09c454", + "data": { + "inGameID": 456 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 456, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "08dc25ea7ce18ab95af796f87e6d31a13a986a35", + "data": { + "inGameID": 456 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 456, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5f0cdf8e1e72b7a9bddcbec735223ee9e2f5d67a", + "data": { + "inGameID": 456 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 456, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "30de611e7ad55609c6fd7b10c7fe73aa7f05aa81", + "data": { + "inGameID": 459 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 459, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "158eb94be15f1ffa619b061627d3bf54c2ef6e06", + "data": { + "inGameID": 459 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 459, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c4ed36c65cae6882f2d3e452e43dce0fae6fa9f1", + "data": { + "inGameID": 459 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 459, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1648b5f57e4f1150eaa9061ad3a44cacc13b1967", + "data": { + "inGameID": 459 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 459, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8c5be743c7a3dd6f21a657d5caa6bd0bb881d896", + "data": { + "inGameID": 459 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 459, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a3c2d00306b2e5bd167dd9ff3b6820f708c8b5d5", + "data": { + "inGameID": 459 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 459, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d10a8b48bbe3e8720297cf0134e36ce3d1cc8274", + "data": { + "inGameID": 459 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 459, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1199d78d3129d670198ce50ce0cbf648749b55b7", + "data": { + "inGameID": 459 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 459, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4e58e01ff768106bc9bc6e7609a5cde62f104b29", + "data": { + "inGameID": 459 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 459, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4598c9b4758d65a34ca87fa1ead0b1c54aea5f7c", + "data": { + "inGameID": 462 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 462, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4555fbb88299a917c1f1011a8021b819ab45d5fb", + "data": { + "inGameID": 462 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 462, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "42e4a71b32fdd20146049d814ce175e883407aca", + "data": { + "inGameID": 462 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 462, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e56c91ef7f884d9af8a28849400e08c36acfddb8", + "data": { + "inGameID": 462 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 462, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fa92ec06b1600e836f1abcf195a73e4e8d1d420d", + "data": { + "inGameID": 462 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 462, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0e088ede2eacb16f69a9f57c9c0541be0dd7e08e", + "data": { + "inGameID": 462 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 462, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8349327d85fdc798f1b7beca8501bc1f47032774", + "data": { + "inGameID": 462 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 462, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "17da2ec4cad5bd18a00d7cf78f6854cafe14fd7f", + "data": { + "inGameID": 463 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 463, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0538184f181917409a2c02aeac5da1a330106cbb", + "data": { + "inGameID": 463 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 463, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "22b79e31e00ffdffaf45bd18ddc1597df582d05a", + "data": { + "inGameID": 463 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 463, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c686a7ff986c783b77e56ac8f951e8aa2e286340", + "data": { + "inGameID": 463 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 463, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e292be40b712bd1b4f7968804f4d0494c895bc88", + "data": { + "inGameID": 463 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 463, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c1e3827c706d88a69a5c77c06b057d4fe790768f", + "data": { + "inGameID": 463 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 463, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "be8b5fdb75c65d2e075ec81aff9621cf8803746e", + "data": { + "inGameID": 463 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 463, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "947b04857eb91c2ba12505cd5ddea8e4828baa60", + "data": { + "inGameID": 464 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 464, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8c3706e68be19c7746bf2689f4e3af3b799d2a7", + "data": { + "inGameID": 464 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 464, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0e95f83443cb1892e3f2a6bae43de926ed31b0e7", + "data": { + "inGameID": 464 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 464, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "87cf15d88a39801b699342cab98d20af76b2f338", + "data": { + "inGameID": 464 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 464, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9d74e7b2a4fbe1819818cf4c16c56bd7594d71fa", + "data": { + "inGameID": 464 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 464, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4a8c7055e61d982f910cae05430d57e55d209742", + "data": { + "inGameID": 464 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 464, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7c745cf92acdb02bd6235393b921e85e9b2d5632", + "data": { + "inGameID": 464 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 464, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6e7f8464a136ab303ac4781ed6006976722e1276", + "data": { + "inGameID": 464 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 464, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2218fa55cdf0315fd080b05523bb56f596a2c488", + "data": { + "inGameID": 464 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 464, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9a6e34bbeed8b75ac1b1a876149c2158738df009", + "data": { + "inGameID": 465 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 465, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "781eead0e24842e9642a99b6016565a9ea779b03", + "data": { + "inGameID": 465 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 465, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a5a8d9a1848d93aeb2cb165288df5a24507191e2", + "data": { + "inGameID": 465 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 465, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "97922280f2c57962d9a96a7cbf894ef7eab0607d", + "data": { + "inGameID": 465 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 465, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3f4c1d9953e63129b67c0184e9c4989b0356a978", + "data": { + "inGameID": 465 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 465, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d56cbf728f0b33551d9e10c12f2a766377b1e09c", + "data": { + "inGameID": 465 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 465, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d338b7698c218174f9cf8f9141b54b32f57c58f0", + "data": { + "inGameID": 465 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 465, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ef8a733eb5367846e29ee85d3c26d5a72490f3e7", + "data": { + "inGameID": 465 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 465, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "12cf7933712a8e3c238b524ebf5db9a116840885", + "data": { + "inGameID": 465 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 465, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8f9769738b533808ccb1de44a7f31db254c97867", + "data": { + "inGameID": 466 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 466, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cc87bec98d033d35309b7b26e36c515e752a459b", + "data": { + "inGameID": 466 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 466, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff4a3d005b5f536a1e77759322a18e90bebc8725", + "data": { + "inGameID": 466 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 466, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "25695ec68bfed9a863c358c709ae92e965079027", + "data": { + "inGameID": 466 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 466, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e0b715a3c349fab28981b24d242b661ed28a4c2b", + "data": { + "inGameID": 466 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 466, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ab4a4ef83e0f638d56ab056b91ccecc69e6332ef", + "data": { + "inGameID": 466 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 466, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "073b660494342c03c8b47b763fcd7a1b3a62790b", + "data": { + "inGameID": 466 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 466, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0f03adcbe39f539c694672dac66d0b3839eed4f2", + "data": { + "inGameID": 467 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 467, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "222987acb945911372b612249e1046d22869f50b", + "data": { + "inGameID": 467 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 467, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fb156e46e87936bf6b9eafb589e19b6e2b66d7d6", + "data": { + "inGameID": 467 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 467, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c16923c9870f83792aba9d783d71f431d1fbe63d", + "data": { + "inGameID": 467 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 467, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "89489710abd08acb6871edd330e6a66dc7f8046f", + "data": { + "inGameID": 467 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 467, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ddf2c07c1bc5a3f83c0dff5bea428df235fdc56", + "data": { + "inGameID": 467 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 467, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "254d433b49974cf2404268a52d3ee0e745633f39", + "data": { + "inGameID": 467 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 467, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "99298fa7eb17fabc8b041813677e3a0b3ba68bc2", + "data": { + "inGameID": 468 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 468, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ed027b6b0c6057a74723fc4d0ca9128a8d80a05b", + "data": { + "inGameID": 468 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 468, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f169b1ec4931982853bf4593dcbe13ca7d452dbb", + "data": { + "inGameID": 468 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 468, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "56b85fdfa0e50197073cfa0ee6ca95ceea1c0dea", + "data": { + "inGameID": 468 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 468, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a2b8b9d0cca4602e879c8780e69609f4219cbd5a", + "data": { + "inGameID": 468 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 468, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3fb6bb0a2a4813e33351179c69040609960b5870", + "data": { + "inGameID": 468 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 468, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ca57f5cc4e4453a9f1c01b5f39f21c2df10344fd", + "data": { + "inGameID": 468 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 468, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3ac65480105af997260d29ecc2316e0c192ca8ca", + "data": { + "inGameID": 469 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 469, + "versions": [ + "a3" + ] + }, + { + "chartID": "ca3ca865c60c9622ffc825f33aed20c50eaad549", + "data": { + "inGameID": 469 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 469, + "versions": [ + "a3" + ] + }, + { + "chartID": "9616470117098736e6d437f319d1170ca649d276", + "data": { + "inGameID": 469 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 469, + "versions": [ + "a3" + ] + }, + { + "chartID": "09334a6799eb3bbff05157bcfadb23f4847a2472", + "data": { + "inGameID": 469 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 469, + "versions": [ + "a3" + ] + }, + { + "chartID": "b645c0b9b2c1f0c963322c9dfec36834779d473f", + "data": { + "inGameID": 469 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 469, + "versions": [ + "a3" + ] + }, + { + "chartID": "692aaef0c92f7eba366d71f4108e9843525340fc", + "data": { + "inGameID": 469 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 469, + "versions": [ + "a3" + ] + }, + { + "chartID": "64462aa2d4c25077bd66b8ab39a6ec08c81cd715", + "data": { + "inGameID": 469 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 469, + "versions": [ + "a3" + ] + }, + { + "chartID": "29ba55b2cfdef243374b75eed26a9cccffbb137a", + "data": { + "inGameID": 469 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 469, + "versions": [ + "a3" + ] + }, + { + "chartID": "841dab47823817737b183b471b99ccbe042c8d69", + "data": { + "inGameID": 469 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 469, + "versions": [ + "a3" + ] + }, + { + "chartID": "2bb4ad6fd1e439e59b97914a02c91e1b508e1f5f", + "data": { + "inGameID": 470 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 470, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5970459c53415a1d6702720d59bbb90ef3d249d7", + "data": { + "inGameID": 470 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 470, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3278e3a8ff6044c2e5be5fd6f9e81eb56dcd60c6", + "data": { + "inGameID": 470 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 470, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5d576cad13c5a2cc0bfc650aceb67bd98a22a51c", + "data": { + "inGameID": 470 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 470, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff0529b2861dc84e31eca099e57261c993d30775", + "data": { + "inGameID": 470 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 470, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b5dc1f81226fd0ad6642659ab658238ca956d516", + "data": { + "inGameID": 470 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 470, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6245d5d4d2417620da3477d6cf8d8567d926ca6b", + "data": { + "inGameID": 470 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 470, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e839fefba3eae3e0026b99f1129fa60b1e10e5d7", + "data": { + "inGameID": 471 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 471, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "556fcc5a500a2f9e8d21145d7c16c5607ccbca5a", + "data": { + "inGameID": 471 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 471, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e30e894e94c22d66eeea65a64fca81a8371c18b7", + "data": { + "inGameID": 471 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 471, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b3c9a704dba1a1138f542e60e8b98760bdf680ad", + "data": { + "inGameID": 471 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 471, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5222e18ce319d75c9e9c055c70c22183988ff655", + "data": { + "inGameID": 471 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 471, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "110b760434860234a9493073b84bc83ce0ef5988", + "data": { + "inGameID": 471 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 471, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4d6e54ca7952b9ee1e9560ab29d98f6721fe2851", + "data": { + "inGameID": 471 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 471, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8ad96e0873183d7e831bd1d49b6eeab50db7fe0", + "data": { + "inGameID": 472 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 472, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9744a386da5852970212e7d8731358e212f1a7b3", + "data": { + "inGameID": 472 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 472, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6d0178395e8657d7bcef184de3db878eeaf233c7", + "data": { + "inGameID": 472 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 472, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0d3577b06a04e811850aa15aee34b5b085421d50", + "data": { + "inGameID": 472 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 472, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0d827bf292106f13598c98f5ca8b388540adb08f", + "data": { + "inGameID": 472 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 472, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fc3ef2cf8770fed4c44c7cc53e5a1bc065edd022", + "data": { + "inGameID": 472 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 472, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fde5452efaabfde3a8ffb9d4b1dccea550076848", + "data": { + "inGameID": 472 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 472, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a269ee3f7b0b2936bb465f21569ad2e38f3c6ca1", + "data": { + "inGameID": 473 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 473, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fc5bee55bba0644469911dbb87b135f10165534a", + "data": { + "inGameID": 473 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 473, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e55fe3ca1b5ed0440a52dc884288754270c950ac", + "data": { + "inGameID": 473 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 473, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "baf3caf2e5a1d76a74f228ba32873c9f13fd1501", + "data": { + "inGameID": 473 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 473, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "60434de9c7d9b0f35543955dfa9b0619b106f2f6", + "data": { + "inGameID": 473 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 473, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dfdea5d53e99881c3c5cd95472adcd3f37b6fff5", + "data": { + "inGameID": 473 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 473, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b26f8b70cd3fe2cb8bfef5acfd0d905ecc112ea2", + "data": { + "inGameID": 473 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 473, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a314e67576c469f8aae0bb04f1e2bdaa0032ece2", + "data": { + "inGameID": 474 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 474, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5348a264a9757aba8462013375863f208cec38e9", + "data": { + "inGameID": 474 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 474, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c495a4f0b739436ed8f7adbf3c6e9e131d7f14d9", + "data": { + "inGameID": 474 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 474, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8036da7db7b65a6a5fa71809d50c4a88121fce8f", + "data": { + "inGameID": 474 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 474, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "16c382c3ffc130f9f81a238aeda10cd63326c65a", + "data": { + "inGameID": 474 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 474, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c48b6de1f58d6f060c5702f2473dbe61357bbb04", + "data": { + "inGameID": 474 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 474, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5a0700bc49714ac420d53c41a29c2fc0a6847403", + "data": { + "inGameID": 474 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 474, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f376d940a9c12ff6619ee7e1ebdbc4e17bb188e2", + "data": { + "inGameID": 475 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 475, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e8d287e80104d7ff519b2d8c17e589fb3ac6ea20", + "data": { + "inGameID": 475 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 475, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d49c1c36dbbfd21df223e94bf581905103a79170", + "data": { + "inGameID": 475 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 475, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "07854b511553e3cba7e9097e4849cb4450e365ca", + "data": { + "inGameID": 475 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 475, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "67170286ff814253e72d2c19f2ef50f78ccae88e", + "data": { + "inGameID": 475 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 475, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d15c3092d248d0c2600d1f36d71e00a7e0db7866", + "data": { + "inGameID": 475 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 475, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b24ef9de569646cf4475119e4fd0dd93dce175b2", + "data": { + "inGameID": 475 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 475, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e54ef87a705dab6d5156cb080242083ae93f9b80", + "data": { + "inGameID": 475 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 475, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f31ea45f2c37f224a13499ebb0db87ccc0eb08f2", + "data": { + "inGameID": 475 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 475, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3aee390517de7fffdb1882fe98dd79c1f80af00e", + "data": { + "inGameID": 476 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 476, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7e00872d75cac193d8de3713caa30ac5cc903e5b", + "data": { + "inGameID": 476 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 476, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fb1031bcea5964545d718877040fb619f14793ce", + "data": { + "inGameID": 476 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 476, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d88add9d18e7de4d52c5fe6970e7008d9214cbb5", + "data": { + "inGameID": 476 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 476, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d558501c3d4aa7ceef2262cfe0c878056ee295fb", + "data": { + "inGameID": 476 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 476, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "499f5fba0870b130c50e0e4ac78cec823a47a82c", + "data": { + "inGameID": 476 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 476, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "43499c8a3bcb197429156d750867432fc87e23fe", + "data": { + "inGameID": 476 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 476, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "45f9b27ca159aa7344dd5f95d62ebed2b725e82a", + "data": { + "inGameID": 477 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 477, + "versions": [ + "a3" + ] + }, + { + "chartID": "af92f2a14e6dc947b76724093324390baa22a359", + "data": { + "inGameID": 477 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 477, + "versions": [ + "a3" + ] + }, + { + "chartID": "2fb360807784b2fc8f0c9371a89f84329eaa6a8a", + "data": { + "inGameID": 477 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 477, + "versions": [ + "a3" + ] + }, + { + "chartID": "81a6a15430a317efdc7620a795f13373847d207a", + "data": { + "inGameID": 477 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 477, + "versions": [ + "a3" + ] + }, + { + "chartID": "57664bffb4b4a7b62058ad314980c70ec44af76c", + "data": { + "inGameID": 477 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 477, + "versions": [ + "a3" + ] + }, + { + "chartID": "1697ff76552fc5ee287d1d983a930826d6ff14b3", + "data": { + "inGameID": 477 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 477, + "versions": [ + "a3" + ] + }, + { + "chartID": "3f6e874e6e149391a1b4e0c966056391a4b6206a", + "data": { + "inGameID": 477 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 477, + "versions": [ + "a3" + ] + }, + { + "chartID": "50680f0bb30f8a3ef7887bc814973a675eca6309", + "data": { + "inGameID": 478 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 478, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a468ff02090ae9c704fe4697ef26e3d50464b61c", + "data": { + "inGameID": 478 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 478, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9ff83f256cb7020c9f26f1d630875cf30bf523ac", + "data": { + "inGameID": 478 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 478, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "db9aaa2752c00cfbd79605c551c8bbd6e0aae8e2", + "data": { + "inGameID": 478 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 478, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0aea2a77c07159f6a34359ebaf77a531cef05b56", + "data": { + "inGameID": 478 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 478, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5e477f35f55c08cb834803ffd3b2afe75af87446", + "data": { + "inGameID": 478 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 478, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ead998c6dc4146feb80c932a18296cc82d469dbb", + "data": { + "inGameID": 478 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 478, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "23cac3a6effe1a45db3cc75c4ad2015b21d040fb", + "data": { + "inGameID": 479 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 479, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "37498acf47512e6391f0288f676f9055f92be510", + "data": { + "inGameID": 479 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 479, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cb297b7a015b1425115ffe98e74652fe5c6b9bb9", + "data": { + "inGameID": 479 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 479, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5b777ceb0d6a6828d2b0e0dec2f30012c3ba72e7", + "data": { + "inGameID": 479 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 479, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "34317f2db0dd516a911df16b335a4359cf2c3735", + "data": { + "inGameID": 479 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 479, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ccb002db5bf365d1180e509e559b8e4f6bffb48", + "data": { + "inGameID": 479 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 479, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dbc0f92b5ab0b5b8682d41094c7db952190e7baf", + "data": { + "inGameID": 479 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 479, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e2d74cdf7e0ad2e8050b9dc3978f27688d4faf25", + "data": { + "inGameID": 480 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 480, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c53aaab77e25fc1c9359f364248ca728cf40088a", + "data": { + "inGameID": 480 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 480, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c34570cc5290eacd4be2c4b4ef83d663b3c3c383", + "data": { + "inGameID": 480 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 480, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4389fa649a19388afc451a4c7b91f26443b1688a", + "data": { + "inGameID": 480 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 480, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1a38bcabfba0e5fa26e99505760f9a1ab8530867", + "data": { + "inGameID": 480 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 480, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ac2df9f5dd3939ec5bbdb96339db9ec84a8e1bcb", + "data": { + "inGameID": 480 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 480, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0cb3f594b8f42f2366bb7bd8c55dbf550725cdd9", + "data": { + "inGameID": 480 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 480, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "90bbea63347634f3128263e1bd733acab1e1ef85", + "data": { + "inGameID": 480 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 480, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1764249eebe5850e90fe8ee85aa76eafa35eca4e", + "data": { + "inGameID": 480 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 480, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "398cf1f21aa803332ca4e74a19520c74d8e05c3e", + "data": { + "inGameID": 481 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 481, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "84a259b0abf7569a3a48c30e31e4c26cd81a4677", + "data": { + "inGameID": 481 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 481, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "352bbdc538567b629edbc3f7ce218654b306c20c", + "data": { + "inGameID": 481 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 481, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "147926e42cdc4564b6925c2a15bbfa1e08649e1f", + "data": { + "inGameID": 481 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 481, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff0c6a58082f1c11bc67d27985572e74bd6ea24a", + "data": { + "inGameID": 481 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 481, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c7d3563990cdd7c2770ccad2284d3796a79b13ea", + "data": { + "inGameID": 481 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 481, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "456bb6f78fb8f3531a940b078488cfa6cd37bd17", + "data": { + "inGameID": 481 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 481, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f9905355802ca75c01559d6ee1f304a84923db67", + "data": { + "inGameID": 482 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 482, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4dfb7ebab3c0712d168a44bf6019923e229ff05f", + "data": { + "inGameID": 482 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 482, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "994761ad0c43a49348cff8d1ddab2fa39856c747", + "data": { + "inGameID": 482 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 482, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "24bec2caaa2d4aa1454318c85912144118cf82b1", + "data": { + "inGameID": 482 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 482, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "52eef33927ad6bbd4ffd7a979e1d521268a859f2", + "data": { + "inGameID": 482 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 482, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "50856dba5403039b432c82ff3b5f8bb1375d11f5", + "data": { + "inGameID": 482 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 482, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a25041fc287011cddbe24028dd3ffd7ee72fca4e", + "data": { + "inGameID": 482 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 482, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a20c32c5f5a4cf0101a3ec45f0a019874942b123", + "data": { + "inGameID": 484 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 484, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "62c740b50370ba4e97ce49f6ca716f47e29a9a3f", + "data": { + "inGameID": 484 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 484, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c6902f1d9cf6454b22b93e907f18c7dd59b83f8e", + "data": { + "inGameID": 484 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 484, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3a0e9372037253fdd68e6dc1b0735a1213bd4f89", + "data": { + "inGameID": 484 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 484, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2856ccde111216f824a3fe548c5e799d7256072d", + "data": { + "inGameID": 484 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 484, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9db152bf2778b7317bf36ee275e26068cb4b2762", + "data": { + "inGameID": 484 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 484, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "568430706d59b28a618c054aefbf805475093904", + "data": { + "inGameID": 484 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 484, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c04f52319ae29097b3819023f19f4f9b18fdd614", + "data": { + "inGameID": 486 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 486, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ac362e7344b4018bccce9fdc90e370257255212e", + "data": { + "inGameID": 486 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 486, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6215816e54399a143069c1fbc385fa12d9587f24", + "data": { + "inGameID": 486 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 486, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5cdaef147c3c8de961c98536df612eb066879601", + "data": { + "inGameID": 486 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 486, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c810cc711bf0d959358909925cf62011ebe63ffb", + "data": { + "inGameID": 486 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 486, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0f569546f7c99d34b69f748ca7bd1f286633a233", + "data": { + "inGameID": 486 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 486, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7bf429ce0f6983b1ca17e17685e2c7b7b02471ff", + "data": { + "inGameID": 486 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 486, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "72eb474d7c825b3c656234b552ddad7d0fba75ac", + "data": { + "inGameID": 486 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 486, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "24e35b9fb38755caf7cb880968b984075d8cfe23", + "data": { + "inGameID": 486 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 486, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "67fdf995347bfa90504f68e8a6000b8153b704fd", + "data": { + "inGameID": 24576 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 24576, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "832d6e2b0aa07dfbf820de932af76f08bbbcedcd", + "data": { + "inGameID": 24576 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 24576, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1c0972529231bac9b8e9de42393ec622d076b36e", + "data": { + "inGameID": 24576 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 24576, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d8f367393720eb13663a9ffcced608ea05a7c413", + "data": { + "inGameID": 24576 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 24576, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cbe5768d067101abab86f794cbc7a48be2be23ec", + "data": { + "inGameID": 24576 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 24576, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "41297a189813b8813260b5611c74e2b861a9b1d5", + "data": { + "inGameID": 24576 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 24576, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "76b2f7517e2f8b31a98446aad4561a97c5c175ae", + "data": { + "inGameID": 24576 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 24576, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aca518882b73727acc65dba7531ccbc6f2d376d0", + "data": { + "inGameID": 24577 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 24577, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c588cbba0290713631cee17690efc883aae46454", + "data": { + "inGameID": 24577 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 24577, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c868b5906a144457479bfb71940167fea7a9717b", + "data": { + "inGameID": 24577 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 24577, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fdabf8b99e0e3480c26029c1e4eff83849bfb49f", + "data": { + "inGameID": 24577 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 24577, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a7edcb8de81418cc88688fd5fe1c42a7653d1c42", + "data": { + "inGameID": 24577 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 24577, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cb15f95327b6fa989f639bf582c1d59e2e47df2c", + "data": { + "inGameID": 24577 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 24577, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2176e18f51a44a1b4d044463ca9f0c0cd21f965d", + "data": { + "inGameID": 24577 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 24577, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f20540e1dd69f7bacb38b459f4710090e0cc7806", + "data": { + "inGameID": 24581 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 24581, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ac7b20cc1d6e9e732672d7a951722334c5197f9", + "data": { + "inGameID": 24581 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 24581, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "991a6c6573d621aacee346941863fd8557da96c5", + "data": { + "inGameID": 24581 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 24581, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "28a0e46ad378efadbfecaf2bf6b26ab742e165aa", + "data": { + "inGameID": 24581 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 24581, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "20af79bcc793f3983aeca4e31db253584a03056c", + "data": { + "inGameID": 24581 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 24581, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8db4dbbe98e8c3000a9611c39242bf0ead2a17e", + "data": { + "inGameID": 24581 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 24581, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b256b4241f65b529a29cf15a2016464d1f0310e3", + "data": { + "inGameID": 24581 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 24581, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7742896610a6b48659516ea1827ebbcb7339267f", + "data": { + "inGameID": 24582 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 24582, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0af684e1ec2f8f039f4b3446d797f4e10d8975cc", + "data": { + "inGameID": 24582 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 24582, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1b55b3edcd9e30b1a65d1fedebec11d7cb179cc4", + "data": { + "inGameID": 24582 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 24582, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "30de0aecc79a562cad11f9a3393a90c2736aa19c", + "data": { + "inGameID": 24582 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 24582, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1f4a7fe035ff226c7af5ade161facd828d69b1b5", + "data": { + "inGameID": 24582 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 24582, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a4614b9ff619801a4302c3fc3b3bb016c5494fd2", + "data": { + "inGameID": 24582 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 24582, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9b90088a092dee7b314d7300fe8a809e253a12d6", + "data": { + "inGameID": 24582 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 24582, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f9a814d4c106b9a60d65bcbfc8816dbbca90dcb2", + "data": { + "inGameID": 24583 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 24583, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "870b58b2b9bf122b28aeb6e665c5ba2f527b6bd8", + "data": { + "inGameID": 24583 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 24583, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1e95d1816cda093727b49af2db4cfafea829ab70", + "data": { + "inGameID": 24583 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 24583, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4b8289f17a134bf14a3b3c2a2e92557a1e5fb117", + "data": { + "inGameID": 24583 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 24583, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d42e142b8ce119e8643a2f16db454f6529d2f3bb", + "data": { + "inGameID": 24583 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 24583, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c2cba0e238610e5c8ffbe15791fee8d42696d4f4", + "data": { + "inGameID": 24583 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 24583, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b60f1bf1c4d3414cac16d7d6a21775be5e1e1345", + "data": { + "inGameID": 24583 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 24583, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f480e120a003df4be77a63f12310648c82d7868d", + "data": { + "inGameID": 24586 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 24586, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "81294ac83cf30d5224294a4fe2b8bddb88738418", + "data": { + "inGameID": 24586 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 24586, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d1d5a8501904afa3bf9f967724a9760d480e63fc", + "data": { + "inGameID": 24586 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 24586, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dcd92183f608854787af72c4fb953ce1fabb7cf5", + "data": { + "inGameID": 24586 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 24586, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0dba76eb06cfecc5299d1cc1b726f9cde10ee7bf", + "data": { + "inGameID": 24586 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 24586, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "45165e48d33dddddefb0c4544923d0285e9d34f6", + "data": { + "inGameID": 24586 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 24586, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a98040244a07fc635370e18c842364be2aab3724", + "data": { + "inGameID": 24586 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 24586, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8e5f86ee63c63e8710064f058eaa39e8b80034e8", + "data": { + "inGameID": 28690 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 28690, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "26182ae71329e262eb5518a0c2c84fb743049b4c", + "data": { + "inGameID": 28690 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 28690, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0bffa1d7c4d4630e0e84ebd6ad435d1e79ac41ba", + "data": { + "inGameID": 28690 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 28690, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d58773ce181dc238e35e7c680e15bf513b958ba3", + "data": { + "inGameID": 28690 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 28690, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6e18dafef44ffb88d3dcbdbe6aa53aa597a2f588", + "data": { + "inGameID": 28690 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 28690, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ee8f9c2ca3021cc0e2ba4bb17fa7cb77bddd3930", + "data": { + "inGameID": 28690 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 28690, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c94a5117e17cd6ba3de3248a9fe7c7442590bdac", + "data": { + "inGameID": 28690 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 28690, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c13520c7f60713f03e73f6a269444823f869eecf", + "data": { + "inGameID": 28691 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 28691, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e25a7ca2a69fcf6016190077cf7ce0905e4cb6fa", + "data": { + "inGameID": 28691 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 28691, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a1629632a275eee114aeaf67c26d9e7ff43c60b9", + "data": { + "inGameID": 28691 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 28691, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "11142df429ca084997d3b8e3ba8ad025832d5f76", + "data": { + "inGameID": 28691 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 28691, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9521e827a4af86c170528d21b9fdd4d9c1c087b9", + "data": { + "inGameID": 28691 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 28691, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cc1453f6a8b4b7de0d0fff8946ecbf9b21edfdfc", + "data": { + "inGameID": 28691 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 28691, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a2ea7e5498c44f4880e38c9ade5fefddba373be5", + "data": { + "inGameID": 28691 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 28691, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d224a075bb083c802533dba1b9d8065ba48019c6", + "data": { + "inGameID": 28700 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 28700, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9247c3bb23af2237758c6f98d284e7cbab51a299", + "data": { + "inGameID": 28700 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 28700, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "34e68c72182ac1d1cc897302930768f4fe8012b0", + "data": { + "inGameID": 28700 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 28700, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c4d8de771bfddfe0691f57c8abaef167072219b5", + "data": { + "inGameID": 28700 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 28700, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "947bfd6317ec0e1154a06b8c86540258b0673a28", + "data": { + "inGameID": 28700 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 28700, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6482eb975e7b656b74acde1980b6368fcbab3539", + "data": { + "inGameID": 28700 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 28700, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c9c4e3762abf2f9d5ea75e918eedc1331acfebd6", + "data": { + "inGameID": 28700 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 28700, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a67cf7944471c4fd9c741ea6ed378268bea820ec", + "data": { + "inGameID": 28701 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 28701, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "73ca642a5080d071ffb4116155d3d9748ed3ff5f", + "data": { + "inGameID": 28701 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 28701, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "77e5bc92194e41d0fd54ca5311312bc2990a7d02", + "data": { + "inGameID": 28701 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 28701, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "81ad26910e349b5f6a7946968e27799120c225d9", + "data": { + "inGameID": 28701 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 28701, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fdc6a131a9fe33c36cc8f5c35a8f865803740cb4", + "data": { + "inGameID": 28701 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 28701, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f8b6634c72fff9ae3fcb8716b821f4f2d79884e7", + "data": { + "inGameID": 28701 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 28701, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9840cbded551b9f54c49b6f965716afa9e725156", + "data": { + "inGameID": 28701 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 28701, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e9871da8ed785eb5f53b5f0c19953ec20f0be040", + "data": { + "inGameID": 28717 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 28717, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3f6760e873210ddb9f9c802dbce1fd323d945e1d", + "data": { + "inGameID": 28717 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 28717, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9ebf9fc58af91a320b88894af0b106dd2e46055e", + "data": { + "inGameID": 28717 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 28717, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8e11a56fb5de64ef4787c63e01b082a6dd1ee2da", + "data": { + "inGameID": 28717 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 28717, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f4b07ffa61b58d57ba1055f455156991ca5a9762", + "data": { + "inGameID": 28717 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 28717, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "50c2bae855991d69e9d9e1d44ef979f9dca69c95", + "data": { + "inGameID": 28717 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 28717, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "756807e3b6d341808888c4bfd110c1a6c418956a", + "data": { + "inGameID": 28717 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 28717, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "12f3eeb72543da1aa4a3d9c63b029698d232719c", + "data": { + "inGameID": 28718 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 28718, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e495b6347f39407d8c6a02322baaed8b15a2fb84", + "data": { + "inGameID": 28718 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 28718, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d098f330e279e53fd781ba9f95fb6d23f37bfa9e", + "data": { + "inGameID": 28718 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 28718, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ec3164c8529d8822122b671ef6f648625a6ca6bc", + "data": { + "inGameID": 28718 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 28718, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6826260d42e1b4ae358acd4a2a272b3cdf237c2e", + "data": { + "inGameID": 28718 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 28718, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "09ce8b5fdac4fac8ecbb15ef34dd2ed7e3ab0805", + "data": { + "inGameID": 28718 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 28718, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "42e37e7ae481cdf8bbd78067815bdc9a32fde5fb", + "data": { + "inGameID": 28718 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 28718, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f0b20ae88c0978adff2766eeac6790a1a63baa7e", + "data": { + "inGameID": 28718 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 28718, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3c4e498e7605ed0dcfb2ebe9398677f76eed451c", + "data": { + "inGameID": 28718 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 28718, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3f23818be80ac90627d12e8e6b5ada75e93ca6f4", + "data": { + "inGameID": 32768 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 32768, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8cbdcc9772ac8c3599f51a405e5e81e6f4aa7bfe", + "data": { + "inGameID": 32768 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 32768, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "86e334fe3bdf2b8cc831686f76121dbee4147c02", + "data": { + "inGameID": 32768 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 32768, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d4eb3439714ea2283e18b1a9bd960426c650ecdc", + "data": { + "inGameID": 32768 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 32768, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "002ee18877a83178503e1db6e445085be6f7a73d", + "data": { + "inGameID": 32768 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 32768, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7fed988f06fce1f18e42e5e12030e1a6797ab238", + "data": { + "inGameID": 32768 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 32768, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "af800298e2440f8a32cb58f153dc56e300b5b109", + "data": { + "inGameID": 32768 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 32768, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8699b86a873be33603dd21175c8e0df151de0e33", + "data": { + "inGameID": 32774 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 32774, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6b37544977e5f5fe69519b10efa1a3cd079a66d4", + "data": { + "inGameID": 32774 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 32774, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ef3a99c66748cc21772fcac449f8667f7fd5e6ce", + "data": { + "inGameID": 32774 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 32774, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dafca1a5b22844c613cd738b26c29b2454fb5150", + "data": { + "inGameID": 32774 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 32774, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e262cc2db7bdd90025ac5268d9b9df2fbd6ff77c", + "data": { + "inGameID": 32774 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 32774, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e780179614274dcc6894ccc25829ac479a72cba8", + "data": { + "inGameID": 32774 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 32774, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "076573ee8c8329a637d6dcd0a76f9c4918eb8b6d", + "data": { + "inGameID": 32774 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 32774, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3294d065540027df78acff3e8aaafc3de9ef8cc0", + "data": { + "inGameID": 32784 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 32784, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "73e64f167bb00e8110b6d4441b28917ea6f4787b", + "data": { + "inGameID": 32784 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 32784, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "944f7b5382c6477cc377ad2c2675a34a1d365cdb", + "data": { + "inGameID": 32784 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 32784, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ef033e62b5fc93a3518a79319f8b65bcaf571928", + "data": { + "inGameID": 32784 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 32784, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b4b09b24630bec28b4f98ef29b5881f492f1183a", + "data": { + "inGameID": 32784 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 32784, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "843a83482b6c726ec5717715d437d14bcc68a968", + "data": { + "inGameID": 32784 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 32784, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b35bc967ba078460e1291acb3a8a0420d6fad5ca", + "data": { + "inGameID": 32784 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 32784, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4e774460d58bd36b1b1d595d3fb0993d27a92d15", + "data": { + "inGameID": 32785 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 32785, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e8a30a6b56d35f2b4dcf048f3357568984b185fa", + "data": { + "inGameID": 32785 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 32785, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "36fbecc1b7fcc8906c27732712c572e00b73cb11", + "data": { + "inGameID": 32785 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 32785, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "44fee6ae4d1df1b29343da86ff640730f754c937", + "data": { + "inGameID": 32785 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 32785, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "844c0f2fd23f5170f77bef885fc4ee31a63eacfe", + "data": { + "inGameID": 32785 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 32785, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "efad9213519e3556cf92f72fde213a67971f24cb", + "data": { + "inGameID": 32785 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 32785, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1afe4ba89f20e22d9ad8f4f7278757787393f86b", + "data": { + "inGameID": 32785 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 32785, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6b4a77d645f45d59d87bd9efe41d17a85224284b", + "data": { + "inGameID": 33028 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 33028, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "965d6308a94c35c9bf271350f85fb50e922b7d47", + "data": { + "inGameID": 33028 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 33028, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d8b1459be0c3f4b2f20a3f92c720264dd9da37e9", + "data": { + "inGameID": 33028 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 33028, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "642e7a6bd5341bc1fb475cd6419caa1239fbf30d", + "data": { + "inGameID": 33028 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 33028, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d51fb603424f3675312959706602437dc1a61350", + "data": { + "inGameID": 33028 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 33028, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5ae6e700e70e74fb93b0d1929f0908b73587eeff", + "data": { + "inGameID": 33028 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 33028, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d36afde4b03c3f187361ebb83eb6800aee1ed655", + "data": { + "inGameID": 33028 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 33028, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3a38c0e7f1a456049cdc9255555c5ffc4c0bdf21", + "data": { + "inGameID": 33034 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 33034, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "073a1a351f68ce90b6c49dccb9508f96a8d7cfa5", + "data": { + "inGameID": 33034 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 33034, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "75597e2af09d749b75c660c141c657e5f512a45f", + "data": { + "inGameID": 33034 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 33034, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cdc255a3af2373adb3af3aa5b4fb37b0c70d24cd", + "data": { + "inGameID": 33034 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 33034, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5384b2d238386801d66b8fff769b38d153fbb61c", + "data": { + "inGameID": 33034 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 33034, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8f56ca310b3b5a49fe63821370d4fa41a25ec72", + "data": { + "inGameID": 33034 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 33034, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "328a84c4a9777ff22e951c81bc4b50b2c06e0c93", + "data": { + "inGameID": 33034 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 33034, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bbfd4190a88d472f3f9e01ea58c03f2f95a7c496", + "data": { + "inGameID": 33038 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 33038, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7dfcf43600226cd8bc56d8e844f28febc1e72c7e", + "data": { + "inGameID": 33038 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 33038, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c35a05271c91ddb76d495d9c2fe0716d058a0865", + "data": { + "inGameID": 33038 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 33038, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b33595c0bebbe889b07676a502fc7fd66c72df12", + "data": { + "inGameID": 33038 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 33038, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0f3906fa014a1b01f7075c00641c4d42a85b47be", + "data": { + "inGameID": 33038 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 33038, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d77b37fdb9125913dbf0ba0521e767554b8aeae6", + "data": { + "inGameID": 33038 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 33038, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "274549794421efc0f1c38cb42be8e7ac0f82741a", + "data": { + "inGameID": 33038 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 33038, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3b977d575786e142df2b7970d18e926d45cdf7d4", + "data": { + "inGameID": 33044 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 33044, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "200078077a4bba544b1845f6582d22096343ac65", + "data": { + "inGameID": 33044 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 33044, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "edb45c89f049df7d71126c63e99f6d214e1ee859", + "data": { + "inGameID": 33044 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 33044, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a2ee39c88ff698a1fcc5e408b64bc01cafed7314", + "data": { + "inGameID": 33044 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 33044, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6d722485af336dbb56a77b06b2c98fb05ad15816", + "data": { + "inGameID": 33044 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 33044, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff3eef8532d5cd2750500efe51e0ca73bccc67cd", + "data": { + "inGameID": 33044 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 33044, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "22b3ba9d1dbac21359caa8719c13504e26ad6e50", + "data": { + "inGameID": 33044 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 33044, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ad82dea1f1e215201ba5db5b95478ece42f86ef3", + "data": { + "inGameID": 33047 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 33047, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6dfc0977acb877b9cf2c93a995aaccc50e46a4d9", + "data": { + "inGameID": 33047 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 33047, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ba350f7b81764eae6c2102f99382b3894962ff5c", + "data": { + "inGameID": 33047 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 33047, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f07d8a8269fc33b161a758771f8f2ab783f63a14", + "data": { + "inGameID": 33047 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 33047, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "31fee8408c92985d5120c1700d4cbf1294ed9847", + "data": { + "inGameID": 33047 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 33047, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8324c2f23de705be38ebd425c7f8bb7cce16e95e", + "data": { + "inGameID": 33047 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 33047, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "365368836185668787470ebebf4f4ab84d963fd1", + "data": { + "inGameID": 33047 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 33047, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "97d058ed52d174a457364056462f53ecf1ab334f", + "data": { + "inGameID": 33048 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 33048, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce6d872de8fcc7b45616c40e0cc61f0944a11d16", + "data": { + "inGameID": 33048 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 33048, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3532bfdd4774f61a15d1e12d201f7751a2c5ed84", + "data": { + "inGameID": 33048 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 33048, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "daf79a6ec16f6e61c4a30f5c6903e3a9a5b2c18c", + "data": { + "inGameID": 33048 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 33048, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f6b7b7b932f4f94176152554b3cd17b565de4157", + "data": { + "inGameID": 33048 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 33048, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ddfa1149913910fab6e0b7fb863d372604cca8cf", + "data": { + "inGameID": 33048 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 33048, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "30fa9360a364e8a82b50c3fdf4708cb57447ab58", + "data": { + "inGameID": 33048 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 33048, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1c7b3173a8c02286e2bd757cb8893cd48b272b64", + "data": { + "inGameID": 33664 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 33664, + "versions": [ + "a3" + ] + }, + { + "chartID": "e40f2bc54553d31698c4a9505d40fa3cbad93926", + "data": { + "inGameID": 33664 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 33664, + "versions": [ + "a3" + ] + }, + { + "chartID": "07bc14609799cde93d4678444830fe5345f033c1", + "data": { + "inGameID": 33664 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 33664, + "versions": [ + "a3" + ] + }, + { + "chartID": "f53ab7975f03289472eb2a70747beea5006e212a", + "data": { + "inGameID": 33664 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 33664, + "versions": [ + "a3" + ] + }, + { + "chartID": "898582a61d7a5d2b59c47cc7f45f9627dbaa2372", + "data": { + "inGameID": 33664 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 33664, + "versions": [ + "a3" + ] + }, + { + "chartID": "ce53456197bb43a833bcbc25b0e4c58c7670280e", + "data": { + "inGameID": 33664 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 33664, + "versions": [ + "a3" + ] + }, + { + "chartID": "6fcc2e23b08b3f05895c9bb2c764fa2c2402a0a5", + "data": { + "inGameID": 33664 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 33664, + "versions": [ + "a3" + ] + }, + { + "chartID": "1fd3ca5452015475aa8e58ec3bfbd598b63b15b7", + "data": { + "inGameID": 33665 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 33665, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3cc797d542b07dce34cf42c39ed3ca7e5a551f14", + "data": { + "inGameID": 33665 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 33665, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3ff8b186c18649f5c506de85c208f3174a0a848a", + "data": { + "inGameID": 33665 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 33665, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ec2daa35b0477efe55f8c92321db2e8acf54850f", + "data": { + "inGameID": 33665 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 33665, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d7ac9ac5db81a38a32f3e45af5e18c46bccee64b", + "data": { + "inGameID": 33665 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 33665, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ed43255780d44e6a830809a6f9eb5471e7d7c2ae", + "data": { + "inGameID": 33665 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 33665, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ced43cfe72dd23217aa3713e92a467c0879a75d5", + "data": { + "inGameID": 33665 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 33665, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a9b2feb383f4571705ed8da3e67e820aefcdfea5", + "data": { + "inGameID": 33665 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 33665, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "348578e5c06685f0de468fca89d6e4bc2dec691a", + "data": { + "inGameID": 33665 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 33665, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "692482847dad41c4300f069294276b0c6f0f4e77", + "data": { + "inGameID": 33666 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 33666, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2e4a82877f4b595b676e2b7b702840823360c9c1", + "data": { + "inGameID": 33666 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 33666, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4164846b7b7bb7f86579865488d5a28e783b29e6", + "data": { + "inGameID": 33666 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 33666, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4410751f67a10207abba55b86221fdf49f831c3e", + "data": { + "inGameID": 33666 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 33666, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7a291aa619980deab746b4af3b0f856d404fad3e", + "data": { + "inGameID": 33666 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 33666, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dc13163530e3ad0020225226a970ac43b0a8a276", + "data": { + "inGameID": 33666 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 33666, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bad637c3748e9f46f0640e9ce20dae9161d27ad5", + "data": { + "inGameID": 33666 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 33666, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b874c55fa90bdc55982beec750703126fc51bc26", + "data": { + "inGameID": 33667 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 33667, + "versions": [ + "a3" + ] + }, + { + "chartID": "43bca30137550cc4b2094d004db20677a166b8e6", + "data": { + "inGameID": 33667 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 33667, + "versions": [ + "a3" + ] + }, + { + "chartID": "835551db76cb9509030b6f1e86a267437409dc53", + "data": { + "inGameID": 33667 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 33667, + "versions": [ + "a3" + ] + }, + { + "chartID": "91c78aabc22c399f3625f31474c96b22c40cccc2", + "data": { + "inGameID": 33667 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 33667, + "versions": [ + "a3" + ] + }, + { + "chartID": "024468ea0c07089dc096a29a79924de4bab8439b", + "data": { + "inGameID": 33667 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 33667, + "versions": [ + "a3" + ] + }, + { + "chartID": "b179f7cca8987b63e8363091936cd951c0e0bb4c", + "data": { + "inGameID": 33667 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 33667, + "versions": [ + "a3" + ] + }, + { + "chartID": "53d7f9b27d3af42deed62170e76ecfca74b2910b", + "data": { + "inGameID": 33667 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 33667, + "versions": [ + "a3" + ] + }, + { + "chartID": "888b9ec35bb4473b8759fbe390c4580100a346fe", + "data": { + "inGameID": 33668 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 33668, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "21bf52bd7ac01590d13ec5014bdc8a9df6337752", + "data": { + "inGameID": 33668 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 33668, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fe74fc09711866d5ef3129ffa45b2a0a7196566d", + "data": { + "inGameID": 33668 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 33668, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "109a528934bec2bc9c5156ca79e4e76eef179fc9", + "data": { + "inGameID": 33668 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 33668, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4d9fe748da1ee3a0544c09b329c907a405961157", + "data": { + "inGameID": 33668 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 33668, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "86eedb6ca4cae02739673956eb10eb6e43a60ae7", + "data": { + "inGameID": 33668 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 33668, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0e1cdd6de1e7c9c9e62fb3ba333b0f1ebd928f13", + "data": { + "inGameID": 33668 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 33668, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d0c029cedd1d0d847ea5dd2a1a3d92273ce9868e", + "data": { + "inGameID": 33669 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 33669, + "versions": [ + "a3" + ] + }, + { + "chartID": "fce83f0dacb482323f93ec77d20d6d67438289bf", + "data": { + "inGameID": 33669 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 33669, + "versions": [ + "a3" + ] + }, + { + "chartID": "afd244bdfca62761ac6bebf9378356d4be919229", + "data": { + "inGameID": 33669 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 33669, + "versions": [ + "a3" + ] + }, + { + "chartID": "547c528bc4d3190df53bfedf8a731dd65b455011", + "data": { + "inGameID": 33669 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 33669, + "versions": [ + "a3" + ] + }, + { + "chartID": "5e5ea9760759bb377a6c60ee2d713341416f05a5", + "data": { + "inGameID": 33669 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 33669, + "versions": [ + "a3" + ] + }, + { + "chartID": "d18be3c12cac5c91972e81f1993b174990ae7c36", + "data": { + "inGameID": 33669 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 33669, + "versions": [ + "a3" + ] + }, + { + "chartID": "115069f4aaf69fb5d4cfd6c0e302913271d6fb45", + "data": { + "inGameID": 33669 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 33669, + "versions": [ + "a3" + ] + }, + { + "chartID": "918b5f159da2e5cc1e23a323b98d2b20640151c6", + "data": { + "inGameID": 33670 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 33670, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "14b302a707c64e8ade3a73cf8c0cfefd7c5705a5", + "data": { + "inGameID": 33670 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 33670, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "39092718a6f00a04a2a5ec1935d5f4f196781d1f", + "data": { + "inGameID": 33670 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 33670, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2763b329ee7f2a5c5f02b96dfa134ac85ac3788d", + "data": { + "inGameID": 33670 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 33670, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8292daa65cad9cd37890f860002a9ff00ebced91", + "data": { + "inGameID": 33670 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 33670, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e503a9fb7faf5bc7b4d1be5407f1e54ffde3de96", + "data": { + "inGameID": 33670 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 33670, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0979019c2b0ba7a9f8e0637549cc4c767f972f05", + "data": { + "inGameID": 33670 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 33670, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8f7950ad7bd68d54fd4a4bff62142647d2f8deeb", + "data": { + "inGameID": 33672 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 33672, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4a3b10f6182652ed261a4ba65acb97490e0b1926", + "data": { + "inGameID": 33672 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 33672, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e188d817cfa8d17abb570dc5af18d2bcc732670b", + "data": { + "inGameID": 33672 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 33672, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1dd1d7840bb1e781a884a587243db2936a382e74", + "data": { + "inGameID": 33672 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 33672, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce20430d4b5896d7d44cb91df3f18ff983668706", + "data": { + "inGameID": 33672 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 33672, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1e3334308dd90ffd2c1465897ea5d4f8ced86337", + "data": { + "inGameID": 33672 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 33672, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1df293c2f0a9d962598d10ddc57bd49f1cf0d113", + "data": { + "inGameID": 33672 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 33672, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "904dd703ad487348083ff82a386b2a65127c9db8", + "data": { + "inGameID": 33673 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 33673, + "versions": [ + "a3" + ] + }, + { + "chartID": "1d94d3a59c1699db068fad85270ddc6546724b77", + "data": { + "inGameID": 33673 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 33673, + "versions": [ + "a3" + ] + }, + { + "chartID": "51da1d3f870ba09dc78de1f9dd8ce25a4310f632", + "data": { + "inGameID": 33673 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 33673, + "versions": [ + "a3" + ] + }, + { + "chartID": "86b1bc62d8ec67a13c54daedaa97af6f780deb75", + "data": { + "inGameID": 33673 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 33673, + "versions": [ + "a3" + ] + }, + { + "chartID": "4f2e84486e49026165d22e4bfda73d569b148e45", + "data": { + "inGameID": 33673 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 33673, + "versions": [ + "a3" + ] + }, + { + "chartID": "98353d019de77032f0b2e023e4a1362377478988", + "data": { + "inGameID": 33673 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 33673, + "versions": [ + "a3" + ] + }, + { + "chartID": "4ca1d5c66661f336097ead49e3ddfac1814d1b16", + "data": { + "inGameID": 33673 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 33673, + "versions": [ + "a3" + ] + }, + { + "chartID": "004e3097ffcd3b50fc3a5b1103d5de28f32d93e7", + "data": { + "inGameID": 33806 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 33806, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "18f6e29aca473cc382eae72826903fdeddafd386", + "data": { + "inGameID": 33806 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 33806, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "548959d70258d4960e10d549abf5ac18597f4b92", + "data": { + "inGameID": 33806 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 33806, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0f6b23074471fd70370f5c36345809973d9bb331", + "data": { + "inGameID": 33806 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 33806, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "95b86fba933c80b59a9e7a32d6265cb754d18a1c", + "data": { + "inGameID": 33806 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 33806, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "730c994fbabd9894489b8fc595f68082e95dbfa1", + "data": { + "inGameID": 33806 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 33806, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "494e00c11b375ecd17d7554135f919372c57b90a", + "data": { + "inGameID": 33806 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 33806, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3e3067ba7baeacc73dd956280ea8daeafa6d7285", + "data": { + "inGameID": 33808 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 33808, + "versions": [ + "a3" + ] + }, + { + "chartID": "6ec7babf0320742a7a8f25286569083b24824a04", + "data": { + "inGameID": 33808 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 33808, + "versions": [ + "a3" + ] + }, + { + "chartID": "0ee86798e1739f72494cb3a052151f7420da4ba0", + "data": { + "inGameID": 33808 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 33808, + "versions": [ + "a3" + ] + }, + { + "chartID": "87ecf373da000d3336e7835b10af32c711bc6733", + "data": { + "inGameID": 33808 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 33808, + "versions": [ + "a3" + ] + }, + { + "chartID": "cb9771cbeb80c1b2b69a146f51423b1f793f30b7", + "data": { + "inGameID": 33808 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 33808, + "versions": [ + "a3" + ] + }, + { + "chartID": "6309b9ab89362afde9caec4bf49f4c92bc5dcd99", + "data": { + "inGameID": 33808 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 33808, + "versions": [ + "a3" + ] + }, + { + "chartID": "77f81ee10c75f1394ef54f930ac40aecb952de28", + "data": { + "inGameID": 33808 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 33808, + "versions": [ + "a3" + ] + }, + { + "chartID": "4fd31e2dc1a48a1e664f760c144064d5dc16bb09", + "data": { + "inGameID": 33811 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 33811, + "versions": [ + "a3" + ] + }, + { + "chartID": "d0cc5bd46e2f084887fbc1f28da3a7450558a965", + "data": { + "inGameID": 33811 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 33811, + "versions": [ + "a3" + ] + }, + { + "chartID": "3a014536eb52eddcbaa31de8c192463db88dfb58", + "data": { + "inGameID": 33811 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 33811, + "versions": [ + "a3" + ] + }, + { + "chartID": "883ad5535731256622f2326a376ee09162913116", + "data": { + "inGameID": 33811 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 33811, + "versions": [ + "a3" + ] + }, + { + "chartID": "4883331700aae720cd4a81f4cbbdfc61dc43cf7d", + "data": { + "inGameID": 33811 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 33811, + "versions": [ + "a3" + ] + }, + { + "chartID": "efef5c16eaee3ba52243f401bcdd65f2df164c33", + "data": { + "inGameID": 33811 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 33811, + "versions": [ + "a3" + ] + }, + { + "chartID": "d58b7e9d0adcd422ebdd6dd61a0c386c088c7881", + "data": { + "inGameID": 33811 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 33811, + "versions": [ + "a3" + ] + }, + { + "chartID": "db7f6e7b4fef9ce1436ea8601ae6566a3fedf0b8", + "data": { + "inGameID": 33818 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 33818, + "versions": [ + "a3" + ] + }, + { + "chartID": "42811b604dfd318a5be211efe084262edaf6c4fe", + "data": { + "inGameID": 33818 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 33818, + "versions": [ + "a3" + ] + }, + { + "chartID": "0885af2285ced1acd63f1862173c7dbfbde1381d", + "data": { + "inGameID": 33818 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 33818, + "versions": [ + "a3" + ] + }, + { + "chartID": "651e1633182361d577a24c66a831ac3fce6c8a07", + "data": { + "inGameID": 33818 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 33818, + "versions": [ + "a3" + ] + }, + { + "chartID": "f81d4a3c2878d2a5eb23f491088215ba39de3267", + "data": { + "inGameID": 33818 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 33818, + "versions": [ + "a3" + ] + }, + { + "chartID": "27dd408aabfdc74a7e14caaa672a5e45dbcc584a", + "data": { + "inGameID": 33818 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 33818, + "versions": [ + "a3" + ] + }, + { + "chartID": "7301f2170fb7b5072edd8fba56ede66d4bc8488b", + "data": { + "inGameID": 33818 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 33818, + "versions": [ + "a3" + ] + }, + { + "chartID": "3d3c4e2a31072a4d8a816216f4b0f452f08afb2d", + "data": { + "inGameID": 33818 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 33818, + "versions": [ + "a3" + ] + }, + { + "chartID": "fa3984fdbc04357c3ca717888f1d28f0731df9b3", + "data": { + "inGameID": 33818 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 33818, + "versions": [ + "a3" + ] + }, + { + "chartID": "ddc3f825250f0f5dc1e80fd51c4620dc5d0f2151", + "data": { + "inGameID": 33834 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 33834, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "85f1d17fd60c06ae25ecaf1c1a72faa2c7ffd461", + "data": { + "inGameID": 33834 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 33834, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "538c6820a61bc157914d11f86b653629f933ef5d", + "data": { + "inGameID": 33834 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 33834, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ba0485982afb826521f404d5eae53b59f09e27f1", + "data": { + "inGameID": 33834 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 33834, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f972047c5e9c60418fa7e8fc5adb8ee65f8cf71b", + "data": { + "inGameID": 33834 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 33834, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d0adbf316f82f0e6d84148bed7763cc90316ec0c", + "data": { + "inGameID": 33834 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 33834, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "76dc5d86b8ee9a7ce86b93dc6763ef503a48a185", + "data": { + "inGameID": 33834 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 33834, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7046e7473a01361d4bfb0722d6c9451a93d848f7", + "data": { + "inGameID": 33834 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 33834, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "94987d97ad6504d0cebe643b267ffd423bb51f89", + "data": { + "inGameID": 33834 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 33834, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "584d75c092c2e83ce429d1ec57786320d9afe2ed", + "data": { + "inGameID": 33835 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 33835, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2695080bcf732f1b8ef85fa0f78ccdb187545679", + "data": { + "inGameID": 33835 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 33835, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "24777c0f61bb0b0992797bff1342063a3558b38f", + "data": { + "inGameID": 33835 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 33835, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2fccb72c1c000fb0d32e101d697382dcf2daede1", + "data": { + "inGameID": 33835 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 33835, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "177c73153e0d88a386b92730226e2594853cea56", + "data": { + "inGameID": 33835 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 33835, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f55728de3f7808934e8187eab55b070b969eaef1", + "data": { + "inGameID": 33835 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 33835, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b30247bc6d798bba8856cfc774d4d34a3894939f", + "data": { + "inGameID": 33835 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 33835, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d3a8b129f8d7a77d9f90d8c233e222553b0a7d38", + "data": { + "inGameID": 33835 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 33835, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "83c2dfeecabfe3210788a4dbc9dc36d17a64ce9c", + "data": { + "inGameID": 33835 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 33835, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e3de56fc18ca65ea6f72aa99fa800d192bb0df4a", + "data": { + "inGameID": 36864 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 36864, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3c18fc46e1c537b4605a917238ad083afb14efea", + "data": { + "inGameID": 36864 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 36864, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "08059f9bbc17f38daf983ec57211c3c9daef071a", + "data": { + "inGameID": 36864 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 36864, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b5bef755f08cc8223505b60ac4b787925514a859", + "data": { + "inGameID": 36864 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 36864, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ffb542871fb43b0628c861c847876f4a02ee4417", + "data": { + "inGameID": 36864 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 36864, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "89b4b70381766b5d540653815330ab8f31474969", + "data": { + "inGameID": 36864 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 36864, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e7c227e97cde73ffa1ddcf0feea05a559587cd59", + "data": { + "inGameID": 36864 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 36864, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3052070b75afe7152035b6f5b1b37883230caaa8", + "data": { + "inGameID": 36865 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 36865, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "db2386d23326f2013eff14243d8320952858ced3", + "data": { + "inGameID": 36865 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 36865, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3fba05f0159587cfe99e09eb078d50d7ef94b90c", + "data": { + "inGameID": 36865 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 36865, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "65f8f12ad16648f6bbcf9d2e776836ab79b451a1", + "data": { + "inGameID": 36865 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 36865, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "91d9c49c74879aac6c18adc25ce24df121d784c1", + "data": { + "inGameID": 36865 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36865, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cb8aeed8dadea395be369fa7a220c64663d40f5d", + "data": { + "inGameID": 36865 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 36865, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "32a4b9dce989a885b2e9594fe2bd9425e7340619", + "data": { + "inGameID": 36865 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 36865, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9cdae613a997384b6abb73652cccde1155e9132c", + "data": { + "inGameID": 36866 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 36866, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e65f1e40fba159bfc3f663dcb982db2a282f753d", + "data": { + "inGameID": 36866 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 36866, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2ee6d8dba015489fe1cf510125ac37db7fa9e21a", + "data": { + "inGameID": 36866 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 36866, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "13c430832a18548152994d5255c476cbd46db401", + "data": { + "inGameID": 36866 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 36866, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "99c472e67bc69f6852c4e81db61768fa39118ade", + "data": { + "inGameID": 36866 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36866, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c9fe4b67919e99c90ae45cf830e80887b5e604e2", + "data": { + "inGameID": 36866 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36866, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9a7685867252c7ec3543f8f146dd9660d5084383", + "data": { + "inGameID": 36866 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 36866, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f4fa7f1d275607ddca84fcb6786f0d27b6fadbb3", + "data": { + "inGameID": 36866 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 36866, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fb54bb23d5557ce3b04c86f2d052c93f8d95e2e9", + "data": { + "inGameID": 36866 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 36866, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "52a60953fd0bd9f74b088712a16f330e61371e77", + "data": { + "inGameID": 36867 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 36867, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "432ed529a4401fad912986cce9ee36ba5f09c76a", + "data": { + "inGameID": 36867 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 36867, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3ea3b6907f723012d11caf1c80caa6db772e85b3", + "data": { + "inGameID": 36867 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 36867, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "327e040505232c9350e7d682281cc206e47e7a9a", + "data": { + "inGameID": 36867 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 36867, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1b0292c1cd47edd1f2d3fea98f9c82b00b2db7e0", + "data": { + "inGameID": 36867 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 36867, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a268ea879575c12bda0c88343431ffccc344be79", + "data": { + "inGameID": 36867 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36867, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3c506a36d229bf1b4c2a807f61f4f52e24901bd2", + "data": { + "inGameID": 36867 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 36867, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "af4ae46c62f1e09123a239b0a491332d85c4ee4b", + "data": { + "inGameID": 36867 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 36867, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e520bdd4c234b65bcbebd6111302edb1a063ec14", + "data": { + "inGameID": 36867 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 36867, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8dbd07ae85e8d87c49f2e0fdccd7815406564737", + "data": { + "inGameID": 36868 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 36868, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f9e5039308c91e9ce0310b63509f3546149be5f", + "data": { + "inGameID": 36868 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 36868, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5ed820538223b636a44ec308ad05391890a32ee2", + "data": { + "inGameID": 36868 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 36868, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "33e5dd21d32bbb52ba2550f19a53ef93995d1be3", + "data": { + "inGameID": 36868 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36868, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6f487e3c4e00bf17104cc9401e715f48d43b4404", + "data": { + "inGameID": 36868 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 36868, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0e06ce326638649e64fe68672f97ec19447fa05c", + "data": { + "inGameID": 36868 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 36868, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e9105879bab3ffb9583ef52dcf8301977457c0d8", + "data": { + "inGameID": 36868 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 36868, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6e799360cfeac5a1656c13b9cbcc11857f4bed2c", + "data": { + "inGameID": 36869 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 36869, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8f2671dae70fc2a264a11ab9964f00c389c6cbee", + "data": { + "inGameID": 36869 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 36869, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "775e21b379851591b7e0cd3bb79fea79f3043de4", + "data": { + "inGameID": 36869 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 36869, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9c68f0d4c4a34276cd1b0b8153ad482454c422b1", + "data": { + "inGameID": 36869 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 36869, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f456f4257fe19bbf8979371af7f49fe9984a0159", + "data": { + "inGameID": 36869 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 36869, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d255c95308049767475a123ef00f060e17cd708b", + "data": { + "inGameID": 36869 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 36869, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0e2ed9a961b0c73ecaea2b132cd56fe379d5e434", + "data": { + "inGameID": 36869 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 36869, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b3fe07bfd948623bdf2f0657d4e10975311bad68", + "data": { + "inGameID": 36870 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 36870, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "908cd9a997a0848beb0e9d8a5d05b79bc97ba6b3", + "data": { + "inGameID": 36870 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 36870, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "61bedefafd0cb78ef7dc50aa4da29c24cf598e26", + "data": { + "inGameID": 36870 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 36870, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e3299d6e9b6728f32a25c9a161a4f04bcbcd53ac", + "data": { + "inGameID": 36870 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 36870, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e94e507cfb1d5f47ef74e87660e4aa772fb3030f", + "data": { + "inGameID": 36870 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 36870, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "37d4839d0cf61c0893f4613a00a0b63d17e8ea1d", + "data": { + "inGameID": 36870 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 36870, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b42673957d801b68210fc2d2d1b8127d89fbc075", + "data": { + "inGameID": 36870 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 36870, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "789c91850c23501ce722db3d24be45552225af95", + "data": { + "inGameID": 36871 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 36871, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3a0836ee95bd45f93262cf96cc96bf7a4f816617", + "data": { + "inGameID": 36871 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 36871, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b39152e468cd8c83fbe01b6f98b40a6a90bac08b", + "data": { + "inGameID": 36871 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 36871, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "694954d2918fc6fe460277fab714f6df1aeb70e0", + "data": { + "inGameID": 36871 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36871, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8eb7f3f506fcc44dde256bf8a939b5e0e45485b9", + "data": { + "inGameID": 36871 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36871, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "34983c10eee88d6e7fe6f2d8d53e1a89ede38490", + "data": { + "inGameID": 36871 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 36871, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e6b15fdc0c325b4c6b4cec2348c1d6b0cf0eec82", + "data": { + "inGameID": 36871 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 36871, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1992431f12e5a3458aa9899bfd06378bde6f45f8", + "data": { + "inGameID": 36872 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 36872, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8196a3eaff4373ca760662d546cb02512d812b2f", + "data": { + "inGameID": 36872 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 36872, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5b144361cf0ba0e21d8c175b50abb2e179125665", + "data": { + "inGameID": 36872 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 36872, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3a3a4c18b0c7148b710193a67b5b6c4e3e83a88e", + "data": { + "inGameID": 36872 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 36872, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4c2645beb76106abe9836ce1f7a927726726c19c", + "data": { + "inGameID": 36872 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36872, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2ed016b5ee67a1c86899ce583eb17b1671ea3ad1", + "data": { + "inGameID": 36872 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 36872, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "df95db654c311a069e77ef534cae150a7669d302", + "data": { + "inGameID": 36872 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 36872, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d9c2a5d10546974667d4198e36a913bc8655d634", + "data": { + "inGameID": 36872 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 36872, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d9b35cf024ba99860e3495254d631480364bf1e8", + "data": { + "inGameID": 36872 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 36872, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c6836d59b6fd00a673f051efd56b5c0024791e3f", + "data": { + "inGameID": 36873 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 36873, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7249b0fc2992ac7cb280f8f1e6e8e1452ef115e3", + "data": { + "inGameID": 36873 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 36873, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a67e723a6de6bf91c93ed367f524442e6dcec250", + "data": { + "inGameID": 36873 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 36873, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "956dfbbf4086655a369f016b94e163145a3f053e", + "data": { + "inGameID": 36873 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 36873, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dcbc9ab2f181ad9aa84fd4175db7992870076b8e", + "data": { + "inGameID": 36873 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 36873, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "86fa96cf816f63cb0e06a4cd7f5e5e90fdea39ff", + "data": { + "inGameID": 36873 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 36873, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ea6659526d35ec604f5d24b5e0961d8d841d9ae5", + "data": { + "inGameID": 36873 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 36873, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "766ba0c7a290ddade92ca3112613a6e96bc019cf", + "data": { + "inGameID": 36874 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 36874, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "43019680686692ebe3ea17c3958ca277c600abd7", + "data": { + "inGameID": 36874 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 36874, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2ed62162ec03a278641d7d353add12373f16ab02", + "data": { + "inGameID": 36874 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 36874, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "75605fc79e338c7971e95230255fa6740d1b8f34", + "data": { + "inGameID": 36874 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 36874, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce6ac5de8e8df14f6703cc0c13a966d9a5f52783", + "data": { + "inGameID": 36874 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 36874, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d237d5fec215f9fb735e7bc83ff7f404c1cbaf12", + "data": { + "inGameID": 36874 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 36874, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2e4c79de09ac802c0531ac67ccff3fe5abbb6e14", + "data": { + "inGameID": 36874 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 36874, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4a0f01036c0c79358f8c2007e46cdabaf73b190e", + "data": { + "inGameID": 36875 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 36875, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c619e8c4432fd1e6f8585650511355eb0d9117dd", + "data": { + "inGameID": 36875 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 36875, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9bfaf568055f6c86384fa4fd098484389a544b52", + "data": { + "inGameID": 36875 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 36875, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1caef8e77aa3c080512d2ff51c37d3b938fa92d7", + "data": { + "inGameID": 36875 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 36875, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2a29ac30407d833afb36986881a3076f757043a8", + "data": { + "inGameID": 36875 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 36875, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ac0a72aa08c9349381a8a3264941ebc980967a6c", + "data": { + "inGameID": 36875 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 36875, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b1db3686f7c43668e35e17496cbd07328505822b", + "data": { + "inGameID": 36875 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 36875, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f873106d51259b11d50c69a09e6a2a52c7114145", + "data": { + "inGameID": 36876 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 36876, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c95998b03be0c1d82e42c0e646e3dbee592ab595", + "data": { + "inGameID": 36876 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 36876, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "23c5cda2b5e2576d36a7db883621cc942ed4b8b2", + "data": { + "inGameID": 36876 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 36876, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d714c3df09afa9b833a584d1a027bc5a58afe65d", + "data": { + "inGameID": 36876 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 36876, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "edcbec70dd0e1b7a2c07da612b2e3e2649360e5f", + "data": { + "inGameID": 36876 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36876, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4d744d18551b4cea9abbdf876a8608bf47e495d8", + "data": { + "inGameID": 36876 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 36876, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5ec47a4cd16a06329c4d5e5949068ef39c977530", + "data": { + "inGameID": 36876 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 36876, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b7feadd24daf1dc469b2d651962778120015b0ae", + "data": { + "inGameID": 36877 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 36877, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2314433e71d755d95c32b1bb126ea8375882b384", + "data": { + "inGameID": 36877 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 36877, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "585ab0cc131c7fef98a5c8d9a0d9e3e573dcfcb0", + "data": { + "inGameID": 36877 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 36877, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6155dde0f3a52c67ad24da2520e656a277106364", + "data": { + "inGameID": 36877 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36877, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "567d06936aaecfbf74a0d3e3e9e4af16cc4c4afc", + "data": { + "inGameID": 36877 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 36877, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "04e23b66621ece7346fcb88078f12d693321d7c1", + "data": { + "inGameID": 36877 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 36877, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ad9c4b94dacb85d348200a9e649e92e5f73fc412", + "data": { + "inGameID": 36877 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 36877, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "61133780b637226c1eeaa9427447b40da35df5f6", + "data": { + "inGameID": 36878 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 36878, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "82873044c17a09066a5f1ea22b3a6e9a83db0f78", + "data": { + "inGameID": 36878 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 36878, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "296106aa21c17cd929b022b9b9b8d74db8688c49", + "data": { + "inGameID": 36878 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 36878, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7d95f6181139968eef30147e2589111c44551461", + "data": { + "inGameID": 36878 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36878, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "854c044ad6c1ec5f8535411a9ba966e8abf95e0c", + "data": { + "inGameID": 36878 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 36878, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4c4da8a77e5d69804a79813021da184cfa223634", + "data": { + "inGameID": 36878 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 36878, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8e21ea833301b27b45b0774042663a03adfcccc9", + "data": { + "inGameID": 36878 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 36878, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "457c3cd703aa62cb180068042cc0274b91184d5b", + "data": { + "inGameID": 36879 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 36879, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "16c3a766c9fb5f825e6bcc31925c99870f1f2ba9", + "data": { + "inGameID": 36879 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 36879, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bf886ae3facaad59fb63c996bc2a48bf555da73d", + "data": { + "inGameID": 36879 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 36879, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b25c840a8e2747b735e091dec8e7c0cf98313d22", + "data": { + "inGameID": 36879 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 36879, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dfa7763c0565e5096d98e48cd428b21dfea1ac96", + "data": { + "inGameID": 36879 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36879, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e86b8909d9cc6569a0f375b2144e6d8defa5636c", + "data": { + "inGameID": 36879 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 36879, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "be2967f975f94b2f4fae796256eb220ecaff4869", + "data": { + "inGameID": 36879 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 36879, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a079dbecbe9a6ab36de257522bd6947de3c0e778", + "data": { + "inGameID": 36880 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 36880, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a3bbb3ebf0ca4287866404705c58146221c28457", + "data": { + "inGameID": 36880 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 36880, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b4849f46266f06440c9c5b58bc60a312ccd339e8", + "data": { + "inGameID": 36880 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 36880, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "17a2d690356b3c8d74125849234f556679051be4", + "data": { + "inGameID": 36880 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 36880, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5ec2617742c7489dfbb2bb3c85bb553c7ed25f20", + "data": { + "inGameID": 36880 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 36880, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f33253272402f40f9eacbbac58eec6d8212d66aa", + "data": { + "inGameID": 36880 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 36880, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "367b45e87609cdc7c54149bd725736825827df1a", + "data": { + "inGameID": 36880 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 36880, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bc94bc9ce370ac030e99c3a06234c2dbbbcfad5d", + "data": { + "inGameID": 36882 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 36882, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "65c437cab5dc773f1244a6ec1ef0fee2e3bd7fbf", + "data": { + "inGameID": 36882 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 36882, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8431f8bfe324c38e3f834b162a69587f7cf54394", + "data": { + "inGameID": 36882 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 36882, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "35c8c4a71589e03299b828560f15de8a42df24c2", + "data": { + "inGameID": 36882 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36882, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "146888e66d0fc46ce380afc37bb5dcd90bd959d4", + "data": { + "inGameID": 36882 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36882, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e1483c70f71f4d3d394b27f2842da34de5767003", + "data": { + "inGameID": 36882 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 36882, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "429a5d23e532b6bd7ebc3871cb8328acbd5e9a63", + "data": { + "inGameID": 36882 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 36882, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9edb24196068f4b5faffad9946aaf383650556dc", + "data": { + "inGameID": 36883 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 36883, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "be624bc44e4fdc5d152f3169933fe0879e6a728d", + "data": { + "inGameID": 36883 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 36883, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d64240959eec735bf221778a2c25feaf8469d489", + "data": { + "inGameID": 36883 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 36883, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4ae9d91555a751a560c04bb1c09656522bc937af", + "data": { + "inGameID": 36883 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 36883, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "afc4da0716f0e8fce0b157c3c370817e42f90871", + "data": { + "inGameID": 36883 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 36883, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e82c2711cfe9def8f2cc28d2256e099e586655ac", + "data": { + "inGameID": 36883 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 36883, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e9b6628871a3d3ad65ee76585e9da9bc70ef74b1", + "data": { + "inGameID": 36883 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 36883, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d5416f5ea66797d4bdd8ac2e51ef3d1b9efd9997", + "data": { + "inGameID": 36884 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 36884, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "98d1dbf3102c50fe780741616c93b6b0e46f3bf9", + "data": { + "inGameID": 36884 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 36884, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cd6069a1e67e7c2855c66169d7fb1c7aa433a6df", + "data": { + "inGameID": 36884 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 36884, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "829b2eb9c2f5a91a6582c0997a5342c2bace77f3", + "data": { + "inGameID": 36884 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 36884, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f1c6074384d5b2c6c94f3edcec20e3035189c679", + "data": { + "inGameID": 36884 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36884, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e0706e6a27c79053fca0f6516505596b89a2ee7e", + "data": { + "inGameID": 36884 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 36884, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d54c4d2311c3084de331c048fa7682bb5470c348", + "data": { + "inGameID": 36884 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 36884, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2e15d6317a3fe83ef590e9ad6653bddaa66d75b2", + "data": { + "inGameID": 36885 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 36885, + "versions": [ + "a3" + ] + }, + { + "chartID": "5cd61603a579f26891bf696171f193eefc920142", + "data": { + "inGameID": 36885 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 36885, + "versions": [ + "a3" + ] + }, + { + "chartID": "f1aa436649db41dc645d3570b597e1b8c1619463", + "data": { + "inGameID": 36885 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 36885, + "versions": [ + "a3" + ] + }, + { + "chartID": "37d2574cef889bad9a00f1e811a9d5476d50257a", + "data": { + "inGameID": 36885 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36885, + "versions": [ + "a3" + ] + }, + { + "chartID": "ec51987416e7ea317e37f7b2ddbf506fdc51ae39", + "data": { + "inGameID": 36885 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 36885, + "versions": [ + "a3" + ] + }, + { + "chartID": "273dd8a3b5d7d7ae1bdfc169265b047c345da73b", + "data": { + "inGameID": 36885 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 36885, + "versions": [ + "a3" + ] + }, + { + "chartID": "fb3f8c9e3d5162dc1e0e3c816eb6de9b2ed1c16c", + "data": { + "inGameID": 36885 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 36885, + "versions": [ + "a3" + ] + }, + { + "chartID": "573f6c1049ced9e312ae4f81832b1c62b759e82a", + "data": { + "inGameID": 36886 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 36886, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "53856e691ec214d772c87d8df92d2fef9c6babda", + "data": { + "inGameID": 36886 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 36886, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8e8ce5c04e3cf0aa4c94d87a4c580fa9aee666d3", + "data": { + "inGameID": 36886 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 36886, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "78004feeb88f00df301c6f0d9f4744d60e628413", + "data": { + "inGameID": 36886 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 36886, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d6ada547e06da5284e1173d205927655d8834654", + "data": { + "inGameID": 36886 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 36886, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "181abb01c15d105c770677fb4e999620b65ad828", + "data": { + "inGameID": 36886 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 36886, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a16b9b815ead3403b59ac99eb4f11bae72becc03", + "data": { + "inGameID": 36886 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 36886, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "257da27bb0d620ce482fab4ffb706779f03537f5", + "data": { + "inGameID": 36887 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 36887, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f38d1a2dca99e0c14c01c88c3ffa0b7ef44b310d", + "data": { + "inGameID": 36887 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 36887, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1b43503ab7fa97e4a26004e03ac0f7787fdaa757", + "data": { + "inGameID": 36887 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 36887, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "46546feca1dee9b961269e53975d1ebcedbdb3e4", + "data": { + "inGameID": 36887 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 36887, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d5fc925eceac09973ed5b78f68367eccd8b544e0", + "data": { + "inGameID": 36887 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36887, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "37a1ea3ffe6bc35308d75b031502301ace827421", + "data": { + "inGameID": 36887 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 36887, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "55475946cc879e2a10cf83f9d084a756f8ca4ed3", + "data": { + "inGameID": 36887 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 36887, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ca01500f1b71632b2c8dcdc9925931ba55ef5ae5", + "data": { + "inGameID": 36888 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 36888, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d157b3266fd65ab77ef82237155bfd43c6569dd7", + "data": { + "inGameID": 36888 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 36888, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "69456a791841664a02dd5e7f9dd7b23f80bb98b8", + "data": { + "inGameID": 36888 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 36888, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0a1204063d14104dcbd0d9f04f3a83390fffff8f", + "data": { + "inGameID": 36888 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36888, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "136d072aa8d5ae29a166d8457784c1de3d5ed4a6", + "data": { + "inGameID": 36888 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 36888, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d1b1143a449cd62103c53782d8c1b16eeb7db3b", + "data": { + "inGameID": 36888 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 36888, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5bcb95f806da62f0b55550cbf9626511edff75ad", + "data": { + "inGameID": 36888 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 36888, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4871a7e1f6825497fe143cc427a0b4f711894f8b", + "data": { + "inGameID": 36889 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 36889, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "712f75b19b63b0f7d294a478aee63d996e016154", + "data": { + "inGameID": 36889 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 36889, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cd8a7c6dbbbb0940fc2e4ff31be5357427a88025", + "data": { + "inGameID": 36889 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 36889, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2b90daf99b7c1fca083045e9b76d529c599984fc", + "data": { + "inGameID": 36889 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36889, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dd34671605dcae67d570d33c7748ede5448f0f5d", + "data": { + "inGameID": 36889 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 36889, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b443bdfa8d6eb1042f9778cc9276373552a62307", + "data": { + "inGameID": 36889 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 36889, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3f2900e92ae39bc813a4c27096b3ba1235b13b48", + "data": { + "inGameID": 36889 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 36889, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "93ea9cb037d57aafaf5fd06efc657205b8f331e6", + "data": { + "inGameID": 36890 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 36890, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c5a3cf5e330b735d57c6bd714c72959f31f0f18e", + "data": { + "inGameID": 36890 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 36890, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8d5d90e2424419776bc6af0539f06e5e2f60ee36", + "data": { + "inGameID": 36890 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 36890, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f2d4966f315866d1607a2ee7355a3b98275da1e", + "data": { + "inGameID": 36890 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 36890, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d42447d1d4b9941085cfc3cc0ff7ddbfbffa965e", + "data": { + "inGameID": 36890 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 36890, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fd0593cc35efd27239fecca318524de9a5ff7466", + "data": { + "inGameID": 36890 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 36890, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d9d2d20ef41b2f4a874f3c5f514029e3f9911373", + "data": { + "inGameID": 36890 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 36890, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "96ab9774c615fc2461da9b5aedfd0f6cc369a855", + "data": { + "inGameID": 36891 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 36891, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e9e765a8d71ee6306ea057f66b22171705e8814f", + "data": { + "inGameID": 36891 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 36891, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bce14263bf16510f534cd9826d195fda3caeed15", + "data": { + "inGameID": 36891 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 36891, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "40eb217ad094789bdd9c9885057880b9207eb8b1", + "data": { + "inGameID": 36891 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36891, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d7624bfbffa72e9d966238957b749f8b8de0367", + "data": { + "inGameID": 36891 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 36891, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "08b7c31f95fc817fbaf19080bb59fa7de47be98f", + "data": { + "inGameID": 36891 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 36891, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b00326628be27e28f56b029abc2c9c53a6c46525", + "data": { + "inGameID": 36891 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 36891, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3180d263bbfbeb250f5353780621883b3c95813b", + "data": { + "inGameID": 36892 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 36892, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4e3750a2a96a23a4b181598b23943c7c6d5c9711", + "data": { + "inGameID": 36892 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 36892, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7a5e6bbc09b8849d9ff4dd91c39c5e9ad40aed67", + "data": { + "inGameID": 36892 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 36892, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "abf57bd862940157c26afe20dbab2ec86da9d2fd", + "data": { + "inGameID": 36892 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 36892, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d710335a6e4d5fcfe8ddfa08d1931815c929e150", + "data": { + "inGameID": 36892 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36892, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "004c14b3b69063f675466585855d37558188bb77", + "data": { + "inGameID": 36892 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 36892, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dca8508bd36884fbef54cd551dea9dcb29747702", + "data": { + "inGameID": 36892 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 36892, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8e78d6140ed9360dee711b0a2e1e8f64551056e9", + "data": { + "inGameID": 36893 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 36893, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "081a86bddc1c40f83c83a10be6dc299e85c638ed", + "data": { + "inGameID": 36893 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 36893, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8fbceb284e40e0e758814b6efd53df425053d558", + "data": { + "inGameID": 36893 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 36893, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "790ea8f9c9290dd0aaef4a91de85c722531b8b29", + "data": { + "inGameID": 36893 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36893, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0b99ded140cf14495e2a534252cb346c228dc59c", + "data": { + "inGameID": 36893 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 36893, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "53d61ebdb68511bce0a16855acb164e32c1d2c91", + "data": { + "inGameID": 36893 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 36893, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5fb35912ae0aad129bfbe5d9213f2421aa75773c", + "data": { + "inGameID": 36893 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 36893, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0adeede8cfcccfe6f0804b764e7b972b8be9366e", + "data": { + "inGameID": 36895 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 36895, + "versions": [ + "a3" + ] + }, + { + "chartID": "a4aa521c46e7eef1d55e2d66a580cb6ad889e978", + "data": { + "inGameID": 36895 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 36895, + "versions": [ + "a3" + ] + }, + { + "chartID": "55f95a4100bbd569fa1606662f49c21a737c2f45", + "data": { + "inGameID": 36895 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 36895, + "versions": [ + "a3" + ] + }, + { + "chartID": "c809bc6eb16c712f07530810113720004fc706a3", + "data": { + "inGameID": 36895 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 36895, + "versions": [ + "a3" + ] + }, + { + "chartID": "705cba030749ec3a4a84eeeecc84e1a49044bd42", + "data": { + "inGameID": 36895 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 36895, + "versions": [ + "a3" + ] + }, + { + "chartID": "228871a5b8171c8b9542abf1ab309e846426600e", + "data": { + "inGameID": 36895 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 36895, + "versions": [ + "a3" + ] + }, + { + "chartID": "1b2fcb0584550345e285d38c83725b920e5f1b47", + "data": { + "inGameID": 36895 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 36895, + "versions": [ + "a3" + ] + }, + { + "chartID": "63515ae95f2ccd036c255424feb120ff1e7e0260", + "data": { + "inGameID": 36906 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 36906, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d16f7c266cd6f4e2d80d0cc315fc7a79b2604a1a", + "data": { + "inGameID": 36906 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 36906, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5f2c5654ae36332d7542054914af794d85de7c95", + "data": { + "inGameID": 36906 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 36906, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2e78081bf0d88867473e3c3a3ed453056a9c3950", + "data": { + "inGameID": 36906 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 36906, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "49234c443fd309e755ef8290ce1df046e4f2d827", + "data": { + "inGameID": 36906 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 36906, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a60fac09f3fc85fd6e7f0979025f787053a5dd69", + "data": { + "inGameID": 36906 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 36906, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aaf86a1943a39faa7127772782f7e8d45e994834", + "data": { + "inGameID": 36906 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 36906, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8d01b1000795e59ca429c36994ed5caa66ade11d", + "data": { + "inGameID": 36906 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 36906, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f36c1eb7e30d8b2a099cbd2ce906cb29fb462fab", + "data": { + "inGameID": 36906 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 36906, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "14b652a6fde30b80d983bc575da04bcb37e4bc62", + "data": { + "inGameID": 36914 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 36914, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "64c9e4486e8474b670ef3f06cfbaf001c3169bb7", + "data": { + "inGameID": 36914 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 36914, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e20fbf0c307d9332e92072b14032cf2abf510958", + "data": { + "inGameID": 36914 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 36914, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1b8d3a609d1a185c24ab3eed19a05103339af46d", + "data": { + "inGameID": 36914 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 36914, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a39e22cf4af03580661180c06328d4deaebfd1f7", + "data": { + "inGameID": 36914 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 36914, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d09e913d76e4dc62b3c7a1c760d712bace39cf87", + "data": { + "inGameID": 36914 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 36914, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ffd70d846640539dc27209bda28b07160b6947ee", + "data": { + "inGameID": 36914 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 36914, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1b18b2163d30be01272cee19842105a2b769574d", + "data": { + "inGameID": 36916 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 36916, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a852a57d184d595090fcc804a667f6cd99580505", + "data": { + "inGameID": 36916 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 36916, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "24b98f38548909761cc100690beeb13eb02a5b76", + "data": { + "inGameID": 36916 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 36916, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1c05e94f5e2875a7ae657c3c6db270bc6b358226", + "data": { + "inGameID": 36916 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 36916, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1f9c7ad2239d5be848645bbd53b4d53fce86df0f", + "data": { + "inGameID": 36916 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36916, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fc8e8b993546178d615b6263519249ecd08c6f81", + "data": { + "inGameID": 36916 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 36916, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce615ae7ec96c8e00e1a626554e272bd2dae43e2", + "data": { + "inGameID": 36916 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 36916, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5aba430456ba510b1f1af09a0336b71b96d7ada1", + "data": { + "inGameID": 36917 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "DP", + "songID": 36917, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4851485eba8bfcae396b205a750e48425eb00ecc", + "data": { + "inGameID": 36917 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 36917, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "40e69b836845ccdd82e9835ce1a60d228e916e65", + "data": { + "inGameID": 36917 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 36917, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "56a194c3d4d8be7255acbca125588f826ece4e05", + "data": { + "inGameID": 36917 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36917, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d9a1fa262bd2e19baa6b305f35a811365e2e7e4e", + "data": { + "inGameID": 36917 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 36917, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d25ae040044be7a17e8b006b87bfe3cf280d969f", + "data": { + "inGameID": 36917 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 36917, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0d3f50ca9241fe7c820c7871fa8fa993d2d42353", + "data": { + "inGameID": 36917 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 36917, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "213925603071298c136032a0a062589cb0086b70", + "data": { + "inGameID": 36920 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 36920, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e3082834de5d126e7e4a61d17093106039469152", + "data": { + "inGameID": 36920 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 36920, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5ddecc8c322967586b6e315c76ffd7b6fb70f498", + "data": { + "inGameID": 36920 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 36920, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e0b18ae90dc5ddf223b2bf859c71b0b3d64890ca", + "data": { + "inGameID": 36920 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 36920, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8491bb34bafde4659ce2e7eaf9ffaca1a9418f55", + "data": { + "inGameID": 36920 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 36920, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "54fb224801e47566c0b1fcef15b76fdcaaaf5e7e", + "data": { + "inGameID": 36920 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 36920, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "23431a000b72e86febd440a40f1a0802555720ca", + "data": { + "inGameID": 36920 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 36920, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f1fb38268dd109c43ae7fae8acdeafbff81d86c5", + "data": { + "inGameID": 36925 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 36925, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0d7e96a9dd824c6c5a6e2fd419299cae559bcc7b", + "data": { + "inGameID": 36925 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 36925, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2117bc25b4b7ebfcc84e2ade482eaa46d05fade3", + "data": { + "inGameID": 36925 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 36925, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "66f97cba441d3566c15f8fd579e28d018c2140d7", + "data": { + "inGameID": 36925 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 36925, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "204bfdfad02442c5cf0fa543582a7082001818ac", + "data": { + "inGameID": 36925 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 36925, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "587979b102b9b2f5ad0e6cf1605283cbb8f61ae7", + "data": { + "inGameID": 36925 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 36925, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "97831ee3ea5c8f378021eb8413eb53148f2bec72", + "data": { + "inGameID": 36925 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 36925, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2fea3f4a2608945d0380c83f53d6f266d00cb04e", + "data": { + "inGameID": 36925 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 36925, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f0b3ed6e7ea00e314a1773ea5ab24c9fdb489630", + "data": { + "inGameID": 36925 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 36925, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9706cbb527a0306ace4fa7026e392b6d4b2c52e5", + "data": { + "inGameID": 36928 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 36928, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "79bf8047ba93af52d77078ddac44cf9d799f9a44", + "data": { + "inGameID": 36928 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 36928, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "28f23e2c33acca6d6f99655c86e6329018f0b6de", + "data": { + "inGameID": 36928 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 36928, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "07729fee3235b462d3e52a6ca4d3cbfa727837b4", + "data": { + "inGameID": 36928 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 36928, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eb6efe9d56ed9e4bb3c3355cba0c78033dbbf511", + "data": { + "inGameID": 36928 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 36928, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d4776bc72466c18643ae9a02fd9a9e14bb782213", + "data": { + "inGameID": 36928 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 36928, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "31ca78f39577c69b0e5ecfd628bc1e8e2d374417", + "data": { + "inGameID": 36928 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 36928, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "83c16b1dcd6cac180169c2bf486e1484e673d958", + "data": { + "inGameID": 36931 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 36931, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "acf7bd69c13df3ead4a95ffbb3e06f10c6592628", + "data": { + "inGameID": 36931 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 36931, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e703cb9abadf9718d21d646b3bb1d3f9986bda0e", + "data": { + "inGameID": 36931 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 36931, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d8a3e38e2987ba78faec7a109f83b85f657933e9", + "data": { + "inGameID": 36931 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36931, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c77b903e2d25ab98ff73a652014e687a1c02dfb3", + "data": { + "inGameID": 36931 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36931, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1e23f84ad8843ac09d067f6a4be01fcaa34b9d68", + "data": { + "inGameID": 36931 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 36931, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7424fad7f43775e5bba77723c8db7bf758c9b6b4", + "data": { + "inGameID": 36931 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 36931, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "af81c312317e16e6879debdc8b4e16d3364e5dcf", + "data": { + "inGameID": 36934 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 36934, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "641d81555d57288ff1a0fa5ca441a59f149f8ac2", + "data": { + "inGameID": 36934 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 36934, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bfac781efd7c02102fcc04d7ff014999148a9c18", + "data": { + "inGameID": 36934 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 36934, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5b1c51519cca389f044a02f95770b60ed59e4f2e", + "data": { + "inGameID": 36934 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 36934, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b07d6b2e2ee4b593696201f822f6f6e727478c5d", + "data": { + "inGameID": 36934 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 36934, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cd1b842031fea0e4621f0f2801049aa633902c4e", + "data": { + "inGameID": 36934 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 36934, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8b00c9f0c8e5480719ba786ce55ff58d1446f999", + "data": { + "inGameID": 36934 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 36934, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4f0cd9e043fda2ab757597fa491a76ee8a274ab0", + "data": { + "inGameID": 36934 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 36934, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0af16a2f38d19a0da5e0384759010a5f21601e48", + "data": { + "inGameID": 36934 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 36934, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "91eba357731ff2f0434cde11031b7496be808bd3", + "data": { + "inGameID": 36935 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 36935, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0a7c365d8b9d1501187ac30e2f36acb11699f322", + "data": { + "inGameID": 36935 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 36935, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b146eb2c428bca7310518be10ff443d8f6566ccd", + "data": { + "inGameID": 36935 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 36935, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "baa456230c1caf771ffc112679742ad14256a4d5", + "data": { + "inGameID": 36935 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 36935, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e2e7fe71f03baf521326e41bb65fbdf083c42189", + "data": { + "inGameID": 36935 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 36935, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "db63a9b9d9ff29ee5e2b08f2fcf92983868febf5", + "data": { + "inGameID": 36935 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 36935, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "041a1ac4e385f49c7f76068e6b18296c3a647720", + "data": { + "inGameID": 36935 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 36935, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "83fe692e311b1bfbe415007186461ec0ae13f30b", + "data": { + "inGameID": 36936 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 36936, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "51bb421c2f2fbe6ed3967cbb4bd0ac37ebbe848b", + "data": { + "inGameID": 36936 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 36936, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d8515b0cb6143162c18bc239a1cce0dbccabf68f", + "data": { + "inGameID": 36936 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 36936, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "34254ff65f64560658815762b10ea13b829bcfa0", + "data": { + "inGameID": 36936 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 36936, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "13ec2a4ca91bbd99c5e543244f4fd2cbb0977e22", + "data": { + "inGameID": 36936 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 36936, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "48a784e0608c18cf76f2808be0735d6280eb02a6", + "data": { + "inGameID": 36936 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 36936, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9b64741398a2857902fc30502ba7a2e889b03294", + "data": { + "inGameID": 36936 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 36936, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7765c41ed42b08a15e038d9b51dcd5e72119159f", + "data": { + "inGameID": 36936 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 36936, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b34048dc7d58b238a787b377e79f2e1bd5ab48f2", + "data": { + "inGameID": 36936 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 36936, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e60d8fbf7cb2d3c997e9139324553d4641d238e4", + "data": { + "inGameID": 36937 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 36937, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f54cefdf6686b928e485f9a9f0806110b2d0c0b6", + "data": { + "inGameID": 36937 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 36937, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce2742765bfb92ed0fcd8e15188d86bb40e72b20", + "data": { + "inGameID": 36937 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 36937, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6295718cdbcb26ad0ea39b4d00cba11990a5e004", + "data": { + "inGameID": 36937 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 36937, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "79d2c59eb5bb294e294e05c0401193d7e04845b1", + "data": { + "inGameID": 36937 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 36937, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6ca56a5fb7bcd974f4d953ba4fe12b4643cca47e", + "data": { + "inGameID": 36937 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 36937, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d3b53c720a48771a0091c61e021317cbd03772ae", + "data": { + "inGameID": 36937 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 36937, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a700079a6f43dc66a909d14c094b2cde6b610e0f", + "data": { + "inGameID": 36937 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 36937, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "54168d06510bbdeffef17f4688dc16c1d2df0cdc", + "data": { + "inGameID": 36937 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 36937, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d946f998c6821908e82c8366bacca83ad8c031fa", + "data": { + "inGameID": 37120 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37120, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b6273950e8ead82659602605cd7a4879d93ca8d6", + "data": { + "inGameID": 37120 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37120, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "582214303ae9422c7613e5c7c6b4cb1640fd08c0", + "data": { + "inGameID": 37120 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37120, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "06994b41ec7732407b554a861673858e014abf58", + "data": { + "inGameID": 37120 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37120, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0d8f7f9e11206a264ec93feb16cbb07afd64ebf9", + "data": { + "inGameID": 37120 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37120, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "df125cb0f3ebddd52f78d1e5ec3a0c183d9e4e96", + "data": { + "inGameID": 37120 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37120, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "081180d055d5093989251ca77c3e7776542c7936", + "data": { + "inGameID": 37120 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37120, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6ead5ba14082d35cf50260491a086ffe942afd1b", + "data": { + "inGameID": 37121 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37121, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7af935fc4a4ada3d1e10c35af8e5efcc786b20ac", + "data": { + "inGameID": 37121 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37121, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c43c24d987c4637370d07b111fd1f85e9d3bdf85", + "data": { + "inGameID": 37121 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37121, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f0778c9c0f9995dd6a37a41d81c14cd75cb5daf", + "data": { + "inGameID": 37121 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37121, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c470790b47964f26d65c6cb1f7d40c61e337d607", + "data": { + "inGameID": 37121 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37121, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c1c6ae1ac636e0478b25c3911cfd4651f9c3b680", + "data": { + "inGameID": 37121 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37121, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5ebb1f634535a94df634b14453bf6379edcae85a", + "data": { + "inGameID": 37121 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37121, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "71c46165912f45ff33090cd2b147a2c7cf1b65b0", + "data": { + "inGameID": 37122 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37122, + "versions": [ + "a3" + ] + }, + { + "chartID": "023647321effa26b876836cded121ee8575dc6e9", + "data": { + "inGameID": 37122 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37122, + "versions": [ + "a3" + ] + }, + { + "chartID": "f316ae00a597aac32f1edcc24b70d2f0e715741b", + "data": { + "inGameID": 37122 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37122, + "versions": [ + "a3" + ] + }, + { + "chartID": "be5fec0fb0a7eaa03f3bb4117ba1f5c80f99bfab", + "data": { + "inGameID": 37122 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37122, + "versions": [ + "a3" + ] + }, + { + "chartID": "bdf9e27c8cef635dc6c69319086ec0bde7b30277", + "data": { + "inGameID": 37122 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37122, + "versions": [ + "a3" + ] + }, + { + "chartID": "bfa990eff3d82c79a44c7a8de1562688a46fa2bf", + "data": { + "inGameID": 37122 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37122, + "versions": [ + "a3" + ] + }, + { + "chartID": "d788454d7af03a4ebe6969e9b93b84ea7ca7dee3", + "data": { + "inGameID": 37122 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37122, + "versions": [ + "a3" + ] + }, + { + "chartID": "e645ea7353c7bbd4c323d0a0ee9643bc89404385", + "data": { + "inGameID": 37123 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37123, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4f631f1dc2a3cfb4c776945f0641e3d8964a5f3b", + "data": { + "inGameID": 37123 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37123, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4d999e60dcc908e0dfb13a460edb0a290f754cc0", + "data": { + "inGameID": 37123 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37123, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3b1ff0f60f2ccac990f86ba2a6c074a48fc4cae1", + "data": { + "inGameID": 37123 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37123, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b0d02932ce29e89333facdf2b011a9176b012b18", + "data": { + "inGameID": 37123 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37123, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6f1c2642951dde8c71386c8a0b0e8cab3bcd7a21", + "data": { + "inGameID": 37123 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37123, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "251c56f12e1fe834f7175b934a691d650615c4cf", + "data": { + "inGameID": 37123 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37123, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f1d0e70f3ded9dcb468dd92692a1b2fddeb7aa5", + "data": { + "inGameID": 37124 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37124, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3c022b9fd5abaac46d5882145aa8e37f36e7b83d", + "data": { + "inGameID": 37124 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37124, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "941197647da1722e38e5b45f517ea8ff144c582f", + "data": { + "inGameID": 37124 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37124, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5ef62739544f320fe10727e21e83af608a7d6450", + "data": { + "inGameID": 37124 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37124, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "12cfcaea8d7b48fbdebc74f1e04ebb73c60766c6", + "data": { + "inGameID": 37124 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37124, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "931f48c8fc494f1410df5920ccfa08a49c2f739b", + "data": { + "inGameID": 37124 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37124, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5b6b7bec285ecee759481f39054f1b60643e33e8", + "data": { + "inGameID": 37124 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37124, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1fe7944e6ec8cdf5be9d9a0326f2f71dbf7dc7fb", + "data": { + "inGameID": 37125 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37125, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d5e6b1b6e7846b635a9063b8996b442fe2b4fae", + "data": { + "inGameID": 37125 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37125, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "284cf5b1296f995fc7ff4864f133b423d35c0a63", + "data": { + "inGameID": 37125 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37125, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "91e6c0bfd9389f20788eda63ddca3ce138d79054", + "data": { + "inGameID": 37125 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37125, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f4d47010e726c6d80d8897f10fdc644a6c3e6025", + "data": { + "inGameID": 37125 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37125, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "562485811d967ef772b44ce2591700713a7ed7eb", + "data": { + "inGameID": 37125 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37125, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f41606bdb6990f1384f3291ffd0f09a6f086983", + "data": { + "inGameID": 37125 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37125, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c649be46b6a120161fb09b825eb95eaeaebce3e3", + "data": { + "inGameID": 37126 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37126, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bcb39d3a9ceefa5a7ea81040651376f5b3f4c6f1", + "data": { + "inGameID": 37126 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37126, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e8123d858f9b484abaf3567d21c2959947c88169", + "data": { + "inGameID": 37126 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37126, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c46233899579344699bb1d05cd018c5b2a913c31", + "data": { + "inGameID": 37126 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37126, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7daf824ef569fa86883590933493fa9766733143", + "data": { + "inGameID": 37126 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37126, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8af7632343cf22ee6424aa3a173cf3fae5905446", + "data": { + "inGameID": 37126 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37126, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4336bfdf69636454de64836c13220c043513ec80", + "data": { + "inGameID": 37126 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37126, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6020383c098117f276a0a6f7558a12cdca80b04c", + "data": { + "inGameID": 37127 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37127, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5ab82e115dc004413686dafc7606c2557cddf224", + "data": { + "inGameID": 37127 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37127, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2ee285e5bcbb1c5df293cbbad06d7da5b004e1ae", + "data": { + "inGameID": 37127 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37127, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8af969dd2d7a120aa60a47e50247db834f3fd7ef", + "data": { + "inGameID": 37127 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37127, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e32a88660340d0726c7e82d8ea557af364f1a4cc", + "data": { + "inGameID": 37127 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37127, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7fde613fed56d091a37c7c9ebd351e9e89bac349", + "data": { + "inGameID": 37127 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37127, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b9c826b47cdb54bd5f53aa7e79831b30abc242b6", + "data": { + "inGameID": 37127 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37127, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "38dd7c6300f51054e33a94b735048c34d40d5b27", + "data": { + "inGameID": 37187 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37187, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aa33c465615101b56e75cec2d5b5c0589118519f", + "data": { + "inGameID": 37187 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37187, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "05ce2ed10776a8c2ac4516cb70ceda7a50934753", + "data": { + "inGameID": 37187 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37187, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "18856c8baaa5254b1b35f863c02e8b25a6e6ae9f", + "data": { + "inGameID": 37187 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37187, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "128cefa5f97a23e8f4a6eea6d0578cfd1c532081", + "data": { + "inGameID": 37187 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37187, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "115e523e6881050996fb5b5b457b3b5134c1783c", + "data": { + "inGameID": 37187 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37187, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b98b8f115d8e90411dba29c73876912051b970bd", + "data": { + "inGameID": 37187 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37187, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c856ce83d24ff40f2e5a397d0e720104a8fde9a4", + "data": { + "inGameID": 37188 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37188, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0312cf8edf51ff407451e5cf22d957b74620db1f", + "data": { + "inGameID": 37188 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37188, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0d3a1e20b8c402f7606fa13e16ccd973ac0280d8", + "data": { + "inGameID": 37188 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37188, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "89a64edb9b5c973642c9bf4698f65a2a0d28cb13", + "data": { + "inGameID": 37188 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37188, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1cbad79101f8e60754622c17ecab6aa835e0460c", + "data": { + "inGameID": 37188 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37188, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "efe51cb2db7a91b28e8108ab4a2a53dd8559a29f", + "data": { + "inGameID": 37188 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37188, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f4fcdc8e2378d1ac8072d309dec99a65baab1f4c", + "data": { + "inGameID": 37188 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37188, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a73b3bc12c86f9e1ebe13a9df5f1571f6ed2403a", + "data": { + "inGameID": 37189 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37189, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8484196cc8335477eaaf814e0581e0306e684536", + "data": { + "inGameID": 37189 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37189, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "62efea1af09b25040cb2a557b973e2120f82ed03", + "data": { + "inGameID": 37189 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37189, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c9ec6fbba7c63dc0e370f815893ac5485007c488", + "data": { + "inGameID": 37189 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37189, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "753004fdffc2ac44517d79e0dc7150eea09753ac", + "data": { + "inGameID": 37189 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37189, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "276c4c84554a82d2b8efd96e4bd660248c6ab983", + "data": { + "inGameID": 37189 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37189, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8d782b1cb975952981d11f41a647393d85cf524e", + "data": { + "inGameID": 37189 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37189, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3986fa93af2f95c57293b51d411b3f2d1eb35534", + "data": { + "inGameID": 37189 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37189, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e9170a3adc304bcf53d46c37903a37e3a262502f", + "data": { + "inGameID": 37189 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37189, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7e829bd2855b2f0c848898ad158aa5314ef1ecaa", + "data": { + "inGameID": 37190 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37190, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7f972e85477fd034dc8bc4e82ac994d7cc5a334c", + "data": { + "inGameID": 37190 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37190, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "53cac09e4f155ee2d7d42e73e4ab2011ba1dd766", + "data": { + "inGameID": 37190 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37190, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1719f9a22fb42cadeddd529f5606e213c15d67ac", + "data": { + "inGameID": 37190 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37190, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "64db666a52fccd4070c496dd6518bffda9944893", + "data": { + "inGameID": 37190 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37190, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5b9af0603e959eca78b658f468e4e546f5cbd8e1", + "data": { + "inGameID": 37190 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37190, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "55e6923a9be5ff55662cd00dfa4f21f93543bc43", + "data": { + "inGameID": 37190 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37190, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "648b7be14de7644f12fcee9e98eab8a7cb1b295f", + "data": { + "inGameID": 37190 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37190, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f382e601a776808bf20aeca752fa75499da0c2d1", + "data": { + "inGameID": 37190 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37190, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5f6af78543c42ebc133caaa03949e64e01aee1ce", + "data": { + "inGameID": 37191 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37191, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7238dc4ea1a7b3d827675abc3a4a5e9fc9f57cb8", + "data": { + "inGameID": 37191 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37191, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "988a9c3d3c238d4ad3a3ed1df5d3a802be624939", + "data": { + "inGameID": 37191 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37191, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "481267ebdcf4fd7a166a1480bf938749ce233eb4", + "data": { + "inGameID": 37191 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37191, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "454500272cb34113f8f3a51c1a1547edd85ad373", + "data": { + "inGameID": 37191 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37191, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "49c224ef162d1e73687c059d5c00ac42dd1e7a77", + "data": { + "inGameID": 37191 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37191, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f4b2173e31b8d88be84ea5c4a3820c4877a7ef1c", + "data": { + "inGameID": 37191 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37191, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7a04b691eee6c38f2391d33b3a12c86d5100c9b7", + "data": { + "inGameID": 37206 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37206, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5e312b020e146b575bd7ce7780fcb57069b3560c", + "data": { + "inGameID": 37206 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37206, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d7c87f3dda6eea00c34b5587ec0a63ecdd1d5a54", + "data": { + "inGameID": 37206 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37206, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c71a2944f1edb44bc8fa47ea7d1eab37fdb93b6a", + "data": { + "inGameID": 37206 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37206, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d22fdddce2adaa7bd69752320487467ae460ba40", + "data": { + "inGameID": 37206 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37206, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c1bb9678d6f080d1f49b4b951537a9ee254c0cba", + "data": { + "inGameID": 37206 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37206, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "70c9f10c749070077047390325526030e6940b6b", + "data": { + "inGameID": 37206 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37206, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "63d7ec74f7c40e8bd65422a7f36f3555f39eb968", + "data": { + "inGameID": 37207 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37207, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6184bb733428ed5c91ffa52cd072cdfea23129cb", + "data": { + "inGameID": 37207 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37207, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "501f773c6f9d61c7b705c5afa9dae7c6752d86f0", + "data": { + "inGameID": 37207 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37207, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a2c9c2501b415407f3b9587298303b5ec2b6127f", + "data": { + "inGameID": 37207 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37207, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "406182de7ff9a2d5e5b807219c0a96b807e18e65", + "data": { + "inGameID": 37207 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37207, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9b32243d35c9474d83c68f0f43ee57b408298808", + "data": { + "inGameID": 37207 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37207, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4902eccddda5e9eaab27d53ac26ff9d8d7372ba4", + "data": { + "inGameID": 37207 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37207, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9cd81fd07338effa4726495d10a5cc9a3011dd45", + "data": { + "inGameID": 37207 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37207, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6d052a518e41338c946cdfc64435bd5268a8ac14", + "data": { + "inGameID": 37207 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37207, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "abc6a61b3b48fd00457b9f8e36314c803f6ba561", + "data": { + "inGameID": 37221 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37221, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0b37f2cd8fc05fee61d761b337a8a4dc4eb9944e", + "data": { + "inGameID": 37221 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37221, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "36895433312b3104bd84a19275a86e287e613d75", + "data": { + "inGameID": 37221 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37221, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a0fd526d8ef462e0e26b6a9c6ae1db209392b892", + "data": { + "inGameID": 37221 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37221, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "daad36b8cd7aa7a9c3e173d75b9db0f0574d6916", + "data": { + "inGameID": 37221 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37221, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dc05b3ee69f7ac74fd31da57f724dbc385fa0a40", + "data": { + "inGameID": 37221 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37221, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "31859cbe9640f1bcf050381b8c5e6c595d5805d0", + "data": { + "inGameID": 37221 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37221, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b048d31c428b003ed0dbbec661ae6723be1003c1", + "data": { + "inGameID": 37223 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37223, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4fd6de4478d56d07bc2ab3358b2b585650ef1ff6", + "data": { + "inGameID": 37223 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37223, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "704e21e3b372203437157e59dc84abd6954c9d24", + "data": { + "inGameID": 37223 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37223, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6b76fa46fc2df0eda86562f1d03322263da9977d", + "data": { + "inGameID": 37223 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37223, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e3d634d2d66d13de53628fb1a30cb96054a8ebee", + "data": { + "inGameID": 37223 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37223, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4b49a8bb1cbd1d7fd776af7360163ab5ece3a15e", + "data": { + "inGameID": 37223 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37223, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b0a19c0cd18c79a1df41404865689d4b7a15ec00", + "data": { + "inGameID": 37223 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37223, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e5978282438f3c6e131c5403eabc12b805e252ae", + "data": { + "inGameID": 37224 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37224, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "11679dc18ec60ca4cf94335d693e5f4af077235e", + "data": { + "inGameID": 37224 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37224, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ddbc2fa71e60bcb9bebc0f821925d4b5741835ee", + "data": { + "inGameID": 37224 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37224, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5fdba7d2cbcfe3ece60ad3f3ae101c769286c191", + "data": { + "inGameID": 37224 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37224, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "41e9232101397099e906e44cf5e59dd60137496b", + "data": { + "inGameID": 37224 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37224, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dd093800a83fb85e3b3cca55f26ac385c9471cf6", + "data": { + "inGameID": 37224 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37224, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3744182938baea9441423dcffd942cfbb006455d", + "data": { + "inGameID": 37224 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37224, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "96d7d4eafdcab69d5243f3de198cac9b5ea48b6d", + "data": { + "inGameID": 37225 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37225, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "83ac742a50616adc10e3cfe41790d9799a32064a", + "data": { + "inGameID": 37225 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37225, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4dbe6ceb8153cec4c79f9e651d78229ebb42d9e1", + "data": { + "inGameID": 37225 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37225, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d78cf6d15e4dd6886690be34defc041547d7a0c", + "data": { + "inGameID": 37225 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37225, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7ca214b5038acc4d8443989bdc5bc25d329faf70", + "data": { + "inGameID": 37225 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37225, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "621e5b25bda9dbd968eea776b01e2dc5968e1010", + "data": { + "inGameID": 37225 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37225, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bdfc96c216071332634aac685aaa2b2568e3200c", + "data": { + "inGameID": 37225 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37225, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "73e1680297df1109f352881d01d15eaaa606b280", + "data": { + "inGameID": 37226 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37226, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9d06573bcb4f2ed28600f00bb9b028dbb40a7436", + "data": { + "inGameID": 37226 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37226, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fb334979068a1ed809a8a632cb3c9222d7517ee5", + "data": { + "inGameID": 37226 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37226, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7e22e66d90b2d6b10cc536a2179b507afff24a0b", + "data": { + "inGameID": 37226 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37226, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b5f6022f9433ceba8a8d143ab16db341b05e9e75", + "data": { + "inGameID": 37226 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37226, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bca32ae23d71047f58eb4d0d82388abca4e31198", + "data": { + "inGameID": 37226 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37226, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7fc52b36b0731b5436f80a5566d608761b5dac16", + "data": { + "inGameID": 37226 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37226, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5f50dbd91eb361eb689bbbc96d6298bf404b2990", + "data": { + "inGameID": 37226 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37226, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "733d4e09c5d9c798700f9540ea3bcf5b2248b4bd", + "data": { + "inGameID": 37226 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37226, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f2edba1cd062f20e3f1736a09be1b82a3692c450", + "data": { + "inGameID": 37228 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37228, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "55a8ba1969bafdf63d3fb01d57b1887f35e2884e", + "data": { + "inGameID": 37228 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37228, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d4deb28499b70fb4d090445706c24c2855af1657", + "data": { + "inGameID": 37228 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37228, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7cbd81b8ea0111f2736ed858d8919401b17020b9", + "data": { + "inGameID": 37228 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37228, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "da1c9ab3011dbc46a6f5fb9cad7b627f9491c5c5", + "data": { + "inGameID": 37228 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37228, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6c7302e96323ae6c8dd0bd120aaff45375031165", + "data": { + "inGameID": 37228 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37228, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "654045f4bb2e85da656a05e76385c3dc62fe79d3", + "data": { + "inGameID": 37228 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37228, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5dcf3bd23b224249f4e256dc062a12f88ab11942", + "data": { + "inGameID": 37229 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37229, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "937a2c2a5483a2bc6d2f9814b904f8d35569dec4", + "data": { + "inGameID": 37229 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37229, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "87bca9d1497e8071a846b3d246645ae757194fa9", + "data": { + "inGameID": 37229 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37229, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "90f68e24caab1d57b5aa8dfb7e75bc4ebf564045", + "data": { + "inGameID": 37229 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37229, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6641f918c15f267cbf9da28deda5d578743c0e98", + "data": { + "inGameID": 37229 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37229, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fe0546a2365fe2ce9794b6b95aa3e4c162b0c767", + "data": { + "inGameID": 37229 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37229, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "929336b6d08074e220abfd6f44c25c68100717e7", + "data": { + "inGameID": 37229 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37229, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bc4f23e461e1198566f95e852edaf3244a19340d", + "data": { + "inGameID": 37231 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37231, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5bca9a2026cfe4b303096647f96caad7f4377f91", + "data": { + "inGameID": 37231 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37231, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9c117b102942369fbeef0083822d519f2f672638", + "data": { + "inGameID": 37231 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37231, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "858f9b5f4c11dc9d2512e4dbd31d786e2537d784", + "data": { + "inGameID": 37231 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37231, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5788fc2f0f1cabc226e48aa771da982c707082fd", + "data": { + "inGameID": 37231 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37231, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "497c469b73aeb362dc87167091f9162507a4f6e9", + "data": { + "inGameID": 37231 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37231, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5fb6e6fb47d3f400cb4ac018244635c1e492cf2b", + "data": { + "inGameID": 37231 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37231, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "01b0490817139691de0a6435062ed5d2fd792ae6", + "data": { + "inGameID": 37232 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37232, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bfe5927d33036b64d548a4e83066460b81ee3cbb", + "data": { + "inGameID": 37232 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37232, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7b5c878598b39e83fe9a13216410944e6c8b8eff", + "data": { + "inGameID": 37232 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37232, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3ac6d78d256cf8f770d7b480bab5a0b70c153cf2", + "data": { + "inGameID": 37232 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37232, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e0801902a833095c0a47d10e16647c7bb332805f", + "data": { + "inGameID": 37232 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37232, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "df932cb8ca00c4f9d2b13c0a63c7487a183a9865", + "data": { + "inGameID": 37232 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37232, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b391d1fe942badd0c1633cfef425ec05b1c41f67", + "data": { + "inGameID": 37232 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37232, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d6ce7857072e1895fed81e00f105f689daa32179", + "data": { + "inGameID": 37233 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37233, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "042bfa7f5d77d0702506d506bbcc32d8f72aeb33", + "data": { + "inGameID": 37233 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37233, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "450be577043895ea9bf4e8d438bb816aa70b2475", + "data": { + "inGameID": 37233 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37233, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c31d61b04076e3534dc943a0d0de7bb42ca0dde2", + "data": { + "inGameID": 37233 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37233, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f5bfb3426507400e89a5a16b69924b954d060227", + "data": { + "inGameID": 37233 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37233, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1aaf5720a540e4bbc197d28c1dae3dfdaa8230bb", + "data": { + "inGameID": 37233 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37233, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f1bd883d5b3e6bae0c234884c28ab60f69d8119f", + "data": { + "inGameID": 37233 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37233, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "82e95f0dc5ea12fa16a22b7f7194666ad7961803", + "data": { + "inGameID": 37236 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37236, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "543e83b18dbe65232306166448e8f9e3b3c59140", + "data": { + "inGameID": 37236 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37236, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "759a263f39bac6f36d882a5f0e7a2d17ebba0602", + "data": { + "inGameID": 37236 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37236, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "feb250ede6891e5bf8206ade6af587aaa34fac61", + "data": { + "inGameID": 37236 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37236, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "af549658ad44f8879b82dcd61c68354eb6c17a95", + "data": { + "inGameID": 37236 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37236, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "700d47b72f17f4acd581c4aa45749e2773475a90", + "data": { + "inGameID": 37236 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37236, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e066c82499e20db82bdfccca481500e8eb85049b", + "data": { + "inGameID": 37236 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37236, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5bf8763839194140e7496f0b4bbd0923384b0416", + "data": { + "inGameID": 37237 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37237, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7e68292aa3de590ff564c4f9b26d273185de017c", + "data": { + "inGameID": 37237 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37237, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e5b0a8d463e97770747ddcfeb42756bc67a48b67", + "data": { + "inGameID": 37237 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37237, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "70c1e937279f9a79bf919800629bc537f7a8b946", + "data": { + "inGameID": 37237 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37237, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5627da94a841ff01c1be19f4d554cc7e5b28f319", + "data": { + "inGameID": 37237 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37237, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "81a8f5a9e5356742887e7aadb6274b356c37968b", + "data": { + "inGameID": 37237 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37237, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3abce576a0cccd9a5e2c5fb036cd0f2b5bbc2228", + "data": { + "inGameID": 37237 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37237, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a9142ce85697744abb5f3066f3b6dba59d82a68e", + "data": { + "inGameID": 37238 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "DP", + "songID": 37238, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "89a2d25cf7bd73c2730f89de31db13e5f7577662", + "data": { + "inGameID": 37238 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37238, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "44fb1798fdd8b1c7a85053536083f74e2dc42587", + "data": { + "inGameID": 37238 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37238, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "72d78b7bd5509756a871b64df27c6577288424ab", + "data": { + "inGameID": 37238 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37238, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8b343325a3059130c00513795725c4888e5a3b62", + "data": { + "inGameID": 37238 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 37238, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f20258a2ebce492897a5039872fdbc1c848b943e", + "data": { + "inGameID": 37238 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37238, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "beca4335b2ef67f7dd0c01899bda7b6c9aaac1ca", + "data": { + "inGameID": 37238 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37238, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fc3430aa28f543aa18e2a15b501bafe0602c5fee", + "data": { + "inGameID": 37239 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37239, + "versions": [ + "a3" + ] + }, + { + "chartID": "7074f4a9e6887eeff26f1c989bbcd99b431a74bb", + "data": { + "inGameID": 37239 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37239, + "versions": [ + "a3" + ] + }, + { + "chartID": "ec6e66193b4c886394026f8d836e1450bbcb5c41", + "data": { + "inGameID": 37239 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37239, + "versions": [ + "a3" + ] + }, + { + "chartID": "18ef0e11f4783826b8ea0a729e9ee90ea75d352d", + "data": { + "inGameID": 37239 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37239, + "versions": [ + "a3" + ] + }, + { + "chartID": "1016f273b35ce655b569bb84ed76f1670d5b14d9", + "data": { + "inGameID": 37239 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37239, + "versions": [ + "a3" + ] + }, + { + "chartID": "182a51d5aebdcabf3c97f25eddc4a64e4c21b033", + "data": { + "inGameID": 37239 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 37239, + "versions": [ + "a3" + ] + }, + { + "chartID": "f3985104fa913a05e435c294a41438000cd2d9f4", + "data": { + "inGameID": 37239 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37239, + "versions": [ + "a3" + ] + }, + { + "chartID": "2dc14f6ce3156431ad295e8121bd656eb7671de4", + "data": { + "inGameID": 37239 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37239, + "versions": [ + "a3" + ] + }, + { + "chartID": "00d24a99b5bf1fa791e4cd025e1c1a8cd79bde3d", + "data": { + "inGameID": 37239 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37239, + "versions": [ + "a3" + ] + }, + { + "chartID": "95369296547cbb268d763be97f8aa2fc90409921", + "data": { + "inGameID": 37240 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37240, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "79f02bc36e546a00cdd5f51959a443fb716d78e8", + "data": { + "inGameID": 37240 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37240, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a330ae37a7b21ffd3b888015d18786608e2af6de", + "data": { + "inGameID": 37240 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37240, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fa42aafd849736b05081043e115db19a96080e4f", + "data": { + "inGameID": 37240 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37240, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4598b14406cb48c7ebbccb6d4f6d784f6d45e5b4", + "data": { + "inGameID": 37240 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37240, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "857dd17e7812c3799de2747dd0ec3101bb2d9990", + "data": { + "inGameID": 37240 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37240, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f7118015c96d825b83509569fa19a50b1ba85337", + "data": { + "inGameID": 37240 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37240, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fceb1dfe4c23ee14a25d9979aeb3890888183c8d", + "data": { + "inGameID": 37241 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37241, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d9adae95d3506c637db549c3884eb2faee10c628", + "data": { + "inGameID": 37241 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37241, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "226dad6e6bc6b852ee91631177a779bd0c90f58e", + "data": { + "inGameID": 37241 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37241, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "34188ec95becb416fbd9e0b55f62d9fa9c29ec3b", + "data": { + "inGameID": 37241 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37241, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7ef34a04a73ba47b91dc52a21d1125f5f4c79e67", + "data": { + "inGameID": 37241 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37241, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b309b1638e168267ed00b8bfed0f57ada2da6b32", + "data": { + "inGameID": 37241 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37241, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d6326b8414913e632726126094679aefb1daa801", + "data": { + "inGameID": 37241 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37241, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "57e624fa6cc5e0c6c320f577ed57195e5381c9ae", + "data": { + "inGameID": 37242 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 37242, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "04877bd69647e57ec3093e56ecfa6eab3e3672f6", + "data": { + "inGameID": 37242 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37242, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c481a6b212213c890107fa8414c6529b3fd96f98", + "data": { + "inGameID": 37242 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37242, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "88e4056533914473c7cdfdb9fb73973b8d0d9f3b", + "data": { + "inGameID": 37242 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37242, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2242bca58d09e9a9d4f7b96db60da038d4ec92d0", + "data": { + "inGameID": 37242 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 37242, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c7cd4f3828163f5915ba92c04d02e59cae7ee923", + "data": { + "inGameID": 37242 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37242, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "004849232382f4d013397ae7a2f65d52341acc8c", + "data": { + "inGameID": 37242 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37242, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e225c04e59ebece882d956be9420ca0bf5cf9858", + "data": { + "inGameID": 37251 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37251, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "758ef6b2379dc8ae8c836559fb606f1e6861f8b9", + "data": { + "inGameID": 37251 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 37251, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d2ee58d0b15657a8cf0e634aa6ca2d8360e8f6e1", + "data": { + "inGameID": 37251 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37251, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8ac5a35b60c93d1f48131763b9456fc1cda1b8b2", + "data": { + "inGameID": 37251 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37251, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5f6ccc6b0b67076362b5bbac16c35b1e3ddae9a9", + "data": { + "inGameID": 37251 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37251, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "887110968acb10508dd1747f7f7067f148a9e165", + "data": { + "inGameID": 37251 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37251, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "18df4cae19c52cb580e2e109441b3d28b270b404", + "data": { + "inGameID": 37251 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37251, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "686df7f2a76f75fa5b678ae90de1070f21b9fdff", + "data": { + "inGameID": 37251 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37251, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b2ed05083a56cf3b8a3ffdc63dc16eb0e53cce2a", + "data": { + "inGameID": 37251 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37251, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "47a3a7f10d13e98e215bc8c99f76a478893ebf69", + "data": { + "inGameID": 37254 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37254, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "21338face184d550caab50ab7ba45c1df33b570a", + "data": { + "inGameID": 37254 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37254, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7bedb09d7e75921a578d8b9edd58278fc9f482ab", + "data": { + "inGameID": 37254 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37254, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "391d0171048fe70c7bee12e5a5a09a01e824682c", + "data": { + "inGameID": 37254 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37254, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "26bde327f8e9198ba68fae82a0f921a7617e3f02", + "data": { + "inGameID": 37254 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37254, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3e5e0c964e9a0eeee3b74123a9637db10ab9c40a", + "data": { + "inGameID": 37254 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37254, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "79cf48cd45a1b3036a381e2de8b24d0d8a875307", + "data": { + "inGameID": 37254 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37254, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "287c4998f7b8648b5fce8673b49bd7935724f51e", + "data": { + "inGameID": 37255 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37255, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "47af72eed1db1b0fb2dfaf905b4bf82734d5b4a7", + "data": { + "inGameID": 37255 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37255, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "17d2870d20163802f54ed813fa733b42b1070ed3", + "data": { + "inGameID": 37255 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37255, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "081feb2270ce066bca05e90b282fb1ac9258beee", + "data": { + "inGameID": 37255 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37255, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "77c86bebeb8fd8dd37f5eaf61b506d4d02c2e8f2", + "data": { + "inGameID": 37255 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37255, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "57d664ee6bb6845b3affda5acc1369cf48911e6f", + "data": { + "inGameID": 37255 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37255, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "108ca82b3e51a28ab48d53b709b89594683e33eb", + "data": { + "inGameID": 37255 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37255, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4a6b0ac10a57098dd379a73763743ad8e3b703fe", + "data": { + "inGameID": 37256 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37256, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cba59946a3b7fe576a15e6d039cdea480fc33162", + "data": { + "inGameID": 37256 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37256, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "33bc13cbe7a4670c44b7e26ad4863ac3f9207544", + "data": { + "inGameID": 37256 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37256, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cd9a14e147288b43148c1d3b90ab6935f761d98b", + "data": { + "inGameID": 37256 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37256, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f35a43029be364f1975d5b94a7d33e0c6ad2c30f", + "data": { + "inGameID": 37256 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37256, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1596b06e626bb1a184f2479224f52d7328d1cb93", + "data": { + "inGameID": 37256 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37256, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "746b52e9877b3f26915a6a2a8c9de8f557138008", + "data": { + "inGameID": 37256 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37256, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1a4cb05b92b2dcf630ce0a4dd7a8500483baf197", + "data": { + "inGameID": 37264 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37264, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "291022e262711d59064eca470589b0186acff98c", + "data": { + "inGameID": 37264 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37264, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b156a913f15f73225291df45eb1ac6852810aa4a", + "data": { + "inGameID": 37264 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37264, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "49137f4f5a1024acf052fb5dae0247d726e65876", + "data": { + "inGameID": 37264 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37264, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fbf452aa1f007d8d38bd09452b28794eef2d43fd", + "data": { + "inGameID": 37264 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37264, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cbce680d645a6939b375dd2f19f4cd46236ad929", + "data": { + "inGameID": 37264 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37264, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3c584cace5a3b0fa00165055796bd96db992c0e5", + "data": { + "inGameID": 37264 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37264, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b4878adf28fdbec9363ae19989c58a9a042794df", + "data": { + "inGameID": 37265 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37265, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "daaee0f3dd033da8f8a968ae34a835be2b071e38", + "data": { + "inGameID": 37265 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37265, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b7fa05568c57de7e9b31ab537f988866cb1919f6", + "data": { + "inGameID": 37265 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37265, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d1ebfe43833cc41f56c3cd533064ec8423f36a41", + "data": { + "inGameID": 37265 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37265, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "70a5ec4ad565e6efd6f004d9fdbad4230abd8a2f", + "data": { + "inGameID": 37265 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37265, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9974bb9c89ae9731abd3b693e07594eb95fd16e0", + "data": { + "inGameID": 37265 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37265, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "91eb2fdc35920b339c8bce1fe2c8e6f71642bf05", + "data": { + "inGameID": 37265 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37265, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8a525dcf72903b1d55e1fc81c8196582ea4dbc99", + "data": { + "inGameID": 37265 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37265, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9326af51ae960549de5fd79236b460d6284df95e", + "data": { + "inGameID": 37265 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37265, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c2cc77ab6481c8531f422fc99b5c32aceaade57d", + "data": { + "inGameID": 37266 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37266, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c122319b35d7ded4f36849401b6e87a9b3e255c2", + "data": { + "inGameID": 37266 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37266, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "56c5cfd4bfd997d190868722f94d8d108d8e8d6a", + "data": { + "inGameID": 37266 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37266, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "162364677dc5136c4febc0450cc1cbeb45f3312a", + "data": { + "inGameID": 37266 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37266, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5ac1fb356cb43a458cf2c6df34588fab41706a91", + "data": { + "inGameID": 37266 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37266, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce63b8eb2b3b08ddf766ddd83a03da4fffcf9939", + "data": { + "inGameID": 37266 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37266, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "21edd727c83d3586e4da34aaf5a8cb555a0b2869", + "data": { + "inGameID": 37266 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37266, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a1c05c2b61d80734cb6d034116072e0aacea1368", + "data": { + "inGameID": 37267 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37267, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "01ed6649abfedb1bee788b96cacbe4efd889a12d", + "data": { + "inGameID": 37267 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37267, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b4a33c44280f9e400a98ed1b22abda73456dad84", + "data": { + "inGameID": 37267 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37267, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2349c2ea433fd0f15f5148c3d2bca74685a99909", + "data": { + "inGameID": 37267 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37267, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "11e4ce2dad089a28da2d3dc544b58ee0a015794a", + "data": { + "inGameID": 37267 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37267, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7197306a03b072f4b89a83db0cd2838cc5c4adec", + "data": { + "inGameID": 37267 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37267, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "510f12444d7a95ed381217e1648947d453db754e", + "data": { + "inGameID": 37267 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37267, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f9c8ba1ddfb93d6ae3fefcb7bc4407e0ba2f586f", + "data": { + "inGameID": 37269 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37269, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cbf57935b76ad38448bc1ba5aa7bf3b39e9faa2f", + "data": { + "inGameID": 37269 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37269, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f6bc4f18ed5d202642bd82d2eaa6f9b634374bac", + "data": { + "inGameID": 37269 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37269, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "401e6f0eaf7698c62602e3e178070882df4d1b5d", + "data": { + "inGameID": 37269 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37269, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cdd42a8aa8bd749a443f6e8da84b912180008799", + "data": { + "inGameID": 37269 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37269, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3713b8f8caf30126591a7e1d7675e989efa0df53", + "data": { + "inGameID": 37269 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37269, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d111deca3db4fffb91e66b9c195082a7374dbda6", + "data": { + "inGameID": 37269 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37269, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8d4d83c04c0e478d6cac20151586f085b33fffc3", + "data": { + "inGameID": 37270 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37270, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fe2dc58e029848239b5c8a7cd8d1d81140c5c6ea", + "data": { + "inGameID": 37270 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37270, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e894ae135dc5e6721913fdd2f149498d1f535ac9", + "data": { + "inGameID": 37270 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37270, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2a1a08cd726030d5fa1c36cccf38629cb1a99cb3", + "data": { + "inGameID": 37270 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37270, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0439963a5af62add4150f65c5543bfe495e85eaf", + "data": { + "inGameID": 37270 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37270, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3e6788de2a15f1ada6cd2374659310c913174b8d", + "data": { + "inGameID": 37270 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37270, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "31898ee2a7bbcd3b433c797c10e5962bb7c7b90c", + "data": { + "inGameID": 37270 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37270, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0014a9fadf6c94b0c86096a3c1243b6d9ab1a2d1", + "data": { + "inGameID": 37273 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37273, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "82ad1bfb81c0aacd435dad4041c3d5c7f9cf4055", + "data": { + "inGameID": 37273 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37273, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e308e75e1732ecafd9556a2af95c8f61a1029aef", + "data": { + "inGameID": 37273 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37273, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f9353f7c9c1a53c52e237adfab5206253b8e7a70", + "data": { + "inGameID": 37273 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37273, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dee365a09aa57aff62f33c08ce1e7a2f3ca551b4", + "data": { + "inGameID": 37273 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37273, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ca058b263891574e3b2197974d584439ec94f71e", + "data": { + "inGameID": 37273 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37273, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4ac9f4c1c1a397b371aa99f33d694f15a6e34c74", + "data": { + "inGameID": 37273 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37273, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6e3652a4afc04b63be07aad9523916b4818af1b7", + "data": { + "inGameID": 37273 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37273, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b0d1aed44a1eb96ad14ebdb358f037485058b807", + "data": { + "inGameID": 37273 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37273, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d4235c376c0fcaad2f0df6e9081f103acb0c142f", + "data": { + "inGameID": 37274 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37274, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d329e83714f74e831ccae5c87ca669ed04c474a4", + "data": { + "inGameID": 37274 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37274, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "515144381b763713fba44630f9b746963dcfaf68", + "data": { + "inGameID": 37274 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37274, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6377e242d2ce9218726f1c5e0039966eceb65176", + "data": { + "inGameID": 37274 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37274, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7eb268dc30e8c0e2ca146b4d6de295eb5e270946", + "data": { + "inGameID": 37274 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37274, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "641a04ff6548b4ad8f96109761ea52a25a6fa2fa", + "data": { + "inGameID": 37274 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37274, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c14eb0e78ea9b481fcab9c2f1989d477928f9613", + "data": { + "inGameID": 37274 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37274, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c85ed5da9ac8763719662b93e3121c1fdcd9d911", + "data": { + "inGameID": 37276 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37276, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c4ebcae70855c8845d4f85354db81d3025741518", + "data": { + "inGameID": 37276 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37276, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f54f078194c788c9ef1bef3792b5cd2eda17e5b4", + "data": { + "inGameID": 37276 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37276, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "961d790a324adb9a44021e70adf69b172b771065", + "data": { + "inGameID": 37276 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37276, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bd9e18984f04a1fbeb40b38827e915b962f2b249", + "data": { + "inGameID": 37276 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37276, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "05b348998529d6deefa7627c3c0bd946805e7003", + "data": { + "inGameID": 37276 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37276, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "401b81b254c80d59226875772c13537e50c8d17f", + "data": { + "inGameID": 37276 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37276, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fc9f0433d204b9b08fc6340587745a631ee417cc", + "data": { + "inGameID": 37277 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37277, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8dc9650bcde9c73b13a66a69c8f0ef6826451fda", + "data": { + "inGameID": 37277 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37277, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c55f29315dc1d4819d908a66e904ec6cddc09663", + "data": { + "inGameID": 37277 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37277, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8d1298a973d9f69f3382985c20617b5f7c03bf93", + "data": { + "inGameID": 37277 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37277, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "080ead7f28b330ab7b3b97bb315de652430ab5a1", + "data": { + "inGameID": 37277 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37277, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6977514d26e44f7de4ff3e84d5dc37bd2196a78f", + "data": { + "inGameID": 37277 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37277, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9df7ba792e69d97a8e5ff14f072ba20215d77f4d", + "data": { + "inGameID": 37277 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37277, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "011a2932154bae69e7af9f0e3899a4e1d592fb52", + "data": { + "inGameID": 37278 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37278, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ba2a78aa0f67ac85fd86c171b1c0f3cbac9d3cdc", + "data": { + "inGameID": 37278 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37278, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "33078249a04eaaad791edb9ae86d33aaefefe733", + "data": { + "inGameID": 37278 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37278, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d1225335661839e309d9da2ce0fda6747ffeecdc", + "data": { + "inGameID": 37278 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37278, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "48963ec496d803fcd52d4c6749ac920ce0fdb081", + "data": { + "inGameID": 37278 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37278, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f78e567a44b95b662340671760f0dc355963fc3", + "data": { + "inGameID": 37278 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37278, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f71797e0b7624fff94d051fbb11c7491761759d3", + "data": { + "inGameID": 37278 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37278, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4b748d39f527ac0d63128e0b2e93109466aef11c", + "data": { + "inGameID": 37279 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37279, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0093d4d433c9af3b3f775c0962cff25c8d019591", + "data": { + "inGameID": 37279 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 37279, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4295d839e46e41ce1b69e7441d37838b16676c68", + "data": { + "inGameID": 37279 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37279, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "57ff97249b1d753d9ff36e7c6b13301f848ae7d7", + "data": { + "inGameID": 37279 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37279, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "10286607ed5777c81ffabcd967e58a5455c520f5", + "data": { + "inGameID": 37279 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37279, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bc72f82e68fc41de853d69f085c137e96aa1a3f1", + "data": { + "inGameID": 37279 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37279, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8cac5713b8f1291edfdc0c48738673db41062f59", + "data": { + "inGameID": 37279 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37279, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9614071fa45ea44dc6ce478eb907ff241e973824", + "data": { + "inGameID": 37279 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37279, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "844372e1c52ac92cd70908fcf29dc8bd725ae10f", + "data": { + "inGameID": 37279 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37279, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b607de07f7b9f6de37f9b652df8ea200d1f03185", + "data": { + "inGameID": 37281 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37281, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6108401dd645f94e1ba7567e494bcc6f456e43b3", + "data": { + "inGameID": 37281 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37281, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dbd8aaef04a0f8e8fe3d5fb86cd11b9df134ff01", + "data": { + "inGameID": 37281 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37281, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d50904c608f32e615e1f9b663ee6aa9783c559ad", + "data": { + "inGameID": 37281 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 37281, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "65076441f5b734979bd6011fd27d73d68a65d59d", + "data": { + "inGameID": 37281 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37281, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "92371d04c50815d88c612e577612b7290ebc46b4", + "data": { + "inGameID": 37281 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37281, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1f1539b194bc12071779ef4054edcde01a974e42", + "data": { + "inGameID": 37281 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37281, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "812d26718561326d66832313fecdc1418ae4f8dc", + "data": { + "inGameID": 37281 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37281, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6ca51f0bd6a0ab6ba5e901fc84b9b638e158f0bb", + "data": { + "inGameID": 37281 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37281, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5bedbe9773a3713ace38347ebe7321441a2e0780", + "data": { + "inGameID": 37282 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37282, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8d24eda6db56ce73f3a95c58a1a06d14a72d89c5", + "data": { + "inGameID": 37282 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37282, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4408fed3d3a4e593f59a793ac1c9c2580dcefbe5", + "data": { + "inGameID": 37282 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37282, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5801d7af98225eae379dd09abf9fab368bc958ce", + "data": { + "inGameID": 37282 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37282, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "11134ba020f8f05d5fb1a136f3afcec72fff1a44", + "data": { + "inGameID": 37282 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37282, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9a1aaabbb325ab313cc19ec173382d7e280b5c0d", + "data": { + "inGameID": 37282 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37282, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e4a588ef975ded6e1c5ed396bb72e57786982869", + "data": { + "inGameID": 37282 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37282, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d265118de48234bc92851be25090bf608b178eb4", + "data": { + "inGameID": 37283 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37283, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "26e5d471ddec666bf89c37a3cc56a58fe311b453", + "data": { + "inGameID": 37283 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37283, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "beeae1c33f4551525ec475a1318dc34ec7867b3e", + "data": { + "inGameID": 37283 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37283, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8facd670436671b8a1ad7be94adba05e16b4774", + "data": { + "inGameID": 37283 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37283, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "60581c88f9d7b0e4f9c3cfc48771ee752a5abe4a", + "data": { + "inGameID": 37283 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37283, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b22ef7bc1108882b3d3deb87176780497283580e", + "data": { + "inGameID": 37283 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37283, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c9082e0ae3df395773207ea0e99ccf4f1b9f744e", + "data": { + "inGameID": 37283 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37283, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "039147c56dd8f4da2bb8a43a195589acf2ffdcbd", + "data": { + "inGameID": 37287 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37287, + "versions": [ + "a3" + ] + }, + { + "chartID": "9fca0b5c4682df664684436be51db550828b9d9b", + "data": { + "inGameID": 37287 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37287, + "versions": [ + "a3" + ] + }, + { + "chartID": "fa136b9fc6cd92e44e245dbac8bac841cccaa0be", + "data": { + "inGameID": 37287 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37287, + "versions": [ + "a3" + ] + }, + { + "chartID": "9ea75d584a4ee5a01084c32e25b20fbef11491de", + "data": { + "inGameID": 37287 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37287, + "versions": [ + "a3" + ] + }, + { + "chartID": "ce293f0db968d2f1d45c5ca1444be64bc0b76706", + "data": { + "inGameID": 37287 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37287, + "versions": [ + "a3" + ] + }, + { + "chartID": "3a309e47bb5ea8976d3ff84c8f04052599ea2b9e", + "data": { + "inGameID": 37287 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37287, + "versions": [ + "a3" + ] + }, + { + "chartID": "2d9323d51c001386e9facc8dfa17b1a86e2f89b6", + "data": { + "inGameID": 37287 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37287, + "versions": [ + "a3" + ] + }, + { + "chartID": "bb0c7bdcce3832dbdea705c9a915e850972ff16d", + "data": { + "inGameID": 37288 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37288, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3bcd97d356807d3c399f937001aef84c87e3af7c", + "data": { + "inGameID": 37288 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37288, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d775621ec667b514376e6de3c8f92288a09bf0c0", + "data": { + "inGameID": 37288 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37288, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6295f9309a4355149e5d9e75a5cc1c0b7ff8f52f", + "data": { + "inGameID": 37288 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37288, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fe97e37bdbe0a026a315a10186ae9de849f53ac2", + "data": { + "inGameID": 37288 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37288, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "77b6c949ee6bc899f5771bd5ea57c16858712da5", + "data": { + "inGameID": 37288 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37288, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a7cc21f948129feca90775d24cba8690bd5c5750", + "data": { + "inGameID": 37288 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37288, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "71c55607e795af450e27118d4d5a8eb70345fd67", + "data": { + "inGameID": 37288 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37288, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4ed807c43a5e65306fe3037197670ecf68b9b598", + "data": { + "inGameID": 37288 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 37288, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dd842eb19cc756b406fc981f796575931ad4e963", + "data": { + "inGameID": 37289 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37289, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "379ae5fb6373a282a922ae5e923baf3f1d1503b4", + "data": { + "inGameID": 37289 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37289, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f9d69d27a1ddaa9a30f866b30f2537f9c9184cdf", + "data": { + "inGameID": 37289 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37289, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "92d37d9a72fd1a578ab6a94035d38078ed0e81e4", + "data": { + "inGameID": 37289 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37289, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "12ff7f0673023a81c993d910e087a925a28438cd", + "data": { + "inGameID": 37289 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37289, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8bb6ea762913e17a00707456df79107a217ea7b0", + "data": { + "inGameID": 37289 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37289, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8ec327914a42102cb885a358ccb9e96268d61b42", + "data": { + "inGameID": 37289 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37289, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "70b660263a2fa8b723f4a7abdd1e5233f173b37d", + "data": { + "inGameID": 37290 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37290, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8d01fd0918e50ba1188683ec43a703be24165a11", + "data": { + "inGameID": 37290 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37290, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cd78f4ecfa55a50ffa32ad7a43eed51690b97f3f", + "data": { + "inGameID": 37290 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37290, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a3dc9e70bc6a090e48f5adfa913952cd2cfe1517", + "data": { + "inGameID": 37290 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37290, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6313ad8a62e55d5a183dcd29ffd1b5227c16a564", + "data": { + "inGameID": 37290 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37290, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4a5811bd6af099838f2fdf957a270a522da209ae", + "data": { + "inGameID": 37290 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37290, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "119400f118edf59f97fb91a661bfe9aeb5191784", + "data": { + "inGameID": 37290 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37290, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5d5d4aa6400e46426047fe6b80cc0b832ddd39f4", + "data": { + "inGameID": 37293 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37293, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "224f1e3db977156aae6b68d1b0061509ef084c8b", + "data": { + "inGameID": 37293 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37293, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "41266e0cdd6bcbb0eeec4c38ff9575e0ac4a78e6", + "data": { + "inGameID": 37293 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37293, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c396c064fb608b6bad276ff02542c2045fc63434", + "data": { + "inGameID": 37293 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37293, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4458606769464c927c77be2170799af6aa5ff395", + "data": { + "inGameID": 37293 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37293, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "57770c9b45926160150886ef1fd76e91ec89416e", + "data": { + "inGameID": 37293 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37293, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bac072e48f062d9a9086234242a8812b11f1753e", + "data": { + "inGameID": 37293 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37293, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "62901b4cd2560fbfd019b5506d39ac7ac11ba64d", + "data": { + "inGameID": 37293 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37293, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f65ec7013c9ce698ac1e03268c9caf57650d7f04", + "data": { + "inGameID": 37293 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37293, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c9ab0297fe5718cd2844e469dbba86a59766b953", + "data": { + "inGameID": 37294 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37294, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2b9babe04f42d6c1d7e2e5681a9057373deb0ddf", + "data": { + "inGameID": 37294 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37294, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f2bb7dc9e241196f13ed2980e2db534a5b58f8b1", + "data": { + "inGameID": 37294 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37294, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff59d609fa4fc9e93a8cc78ac3938568fda39ead", + "data": { + "inGameID": 37294 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37294, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0db294e0f6fe1d09c15b60fa14c8390ae6a7b737", + "data": { + "inGameID": 37294 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37294, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f20d4eda5225004479fefe92818e29fb7ee063ac", + "data": { + "inGameID": 37294 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37294, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fde109d610dcf1aa1e687ad91b796a67276a42cb", + "data": { + "inGameID": 37294 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37294, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "66276ff999d5a21b4add9078b54033435fbeb4be", + "data": { + "inGameID": 37295 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37295, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d37f9701175c95c80918d411d357d9fe2efdd1e7", + "data": { + "inGameID": 37295 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37295, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e09072856ecd6711703812691f51f493178635fb", + "data": { + "inGameID": 37295 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37295, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7522def4819df4592c387f3b1c486e867420c328", + "data": { + "inGameID": 37295 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37295, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "44517a48cd0462b1e9348aa8c3186e07c47e44aa", + "data": { + "inGameID": 37295 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37295, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9798478138d300d7f338fb8d16f60a449b6aeff9", + "data": { + "inGameID": 37295 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37295, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "717d1251070e08199f1c612a65d57532def4048e", + "data": { + "inGameID": 37295 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37295, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "63f2479d57f2e0cde018fcb2fc4c28e55e3ef866", + "data": { + "inGameID": 37296 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37296, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d839a1c33c1685c33b25ab89bcf1c672cc85815", + "data": { + "inGameID": 37296 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37296, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dc1d95b1708da58955ef7070aef046ef9cd35551", + "data": { + "inGameID": 37296 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37296, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "912f8cc71127f1a364755e46f5ed13b6e72d54e3", + "data": { + "inGameID": 37296 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37296, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "69e7b5a71581db786a3c9c5638cbbc4c652f1cb3", + "data": { + "inGameID": 37296 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37296, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "034cc3a9a6439e81a5ef0a5aa93f50870c35c60e", + "data": { + "inGameID": 37296 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37296, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d14bc23a0edcefe83a0f30b12746a546e1decf7e", + "data": { + "inGameID": 37296 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37296, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7b822f11b18f1823fe6e40e13293bbc626be6c6b", + "data": { + "inGameID": 37297 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37297, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d1c1e842a636d9ee67e32f4078abc7e789f57c9e", + "data": { + "inGameID": 37297 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37297, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8d89fa6124088d9b4aa7d4dcdfa729c1d65c98f6", + "data": { + "inGameID": 37297 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37297, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff5d95894d573a575a4d956e51f4c433d1dfee18", + "data": { + "inGameID": 37297 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37297, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "79df0587c5b054dc5f2efe1747a5375ce8a80be8", + "data": { + "inGameID": 37297 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37297, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b5ae29764fdfe27ee966f3d1df072db2635cbc4f", + "data": { + "inGameID": 37297 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37297, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1545d449896472fb8e17209ca1086b0288b180a1", + "data": { + "inGameID": 37297 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37297, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f7681752fe967de27f66a47c60f572b58cb8a61c", + "data": { + "inGameID": 37298 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37298, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "53411f4972320ac141752cb14a392a30cbee3c6a", + "data": { + "inGameID": 37298 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37298, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "56fe1cb920ff16d3f0bd7a734b93799cf63f670a", + "data": { + "inGameID": 37298 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37298, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "72c71740189b4bf67cfca9c98321ae5c745f00a4", + "data": { + "inGameID": 37298 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37298, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5db049e9d0599dc372f9bfb3212b83ea0c8078e8", + "data": { + "inGameID": 37298 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37298, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c94a80e363452c95fa5769adadf5b81231f99d4b", + "data": { + "inGameID": 37298 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37298, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d7815666288187a72cfedf81eeb6db872049a213", + "data": { + "inGameID": 37298 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37298, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5f802bf62b8177306a571f1f8c9b1bd3c3d6f4ff", + "data": { + "inGameID": 37299 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37299, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "741ff1c3c64bb1892b6d352a2c2587cd209f76d5", + "data": { + "inGameID": 37299 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37299, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c7768719f297d36a2158a5fc2d2237559519642a", + "data": { + "inGameID": 37300 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37300, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "71aa79d07298edbb51cf782832e8fd90a088a835", + "data": { + "inGameID": 37300 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37300, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a1a2ef8b3951972bd94f97184cda3a3756fce7e8", + "data": { + "inGameID": 37301 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37301, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7d7178f1c4be337f66d9a9748d4c253c9ef33c7c", + "data": { + "inGameID": 37301 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37301, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b0a562a4b3f43f5825ddc3fb9ed30bf82a6abad0", + "data": { + "inGameID": 37302 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37302, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3ed64cc1651f157ecb5167edd443234a0ca0f008", + "data": { + "inGameID": 37302 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37302, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c7ad92575d930432082c4e1936602c611aa0dfd4", + "data": { + "inGameID": 37303 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37303, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8fa83364f7ebbeb3a218a08cc823816b0e4d6438", + "data": { + "inGameID": 37303 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37303, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f9dac9e13108926bde71aaa74e07546f291c39e5", + "data": { + "inGameID": 37304 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37304, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "566dba0d2e3ca1c9c32784ebee3664289d91c51c", + "data": { + "inGameID": 37304 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37304, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "105ee92c1f94ee8442b0e13c80f2cd15e182a146", + "data": { + "inGameID": 37306 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37306, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bcac21a5606aa28ff1936209f4e8653c4b73762b", + "data": { + "inGameID": 37306 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37306, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d80ea02e3a880fc937e48ab49a4256e6644754ed", + "data": { + "inGameID": 37306 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37306, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e265c656d12169e13d16b88228fa7321b216f3de", + "data": { + "inGameID": 37306 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37306, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d880ff7762025aac505281b79fcf1cf5648d2b82", + "data": { + "inGameID": 37306 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37306, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cbd224af829551910bd65f3496e164b911f38b5f", + "data": { + "inGameID": 37306 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37306, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "26e4096fdfd1d10c772094442ea150571202147d", + "data": { + "inGameID": 37306 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37306, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9c3e03eab938d44f15e8f77aa49dd0ced4ad4ee0", + "data": { + "inGameID": 37306 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37306, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7b7838ef2828ecca5999c505f72d5b7cf731444c", + "data": { + "inGameID": 37306 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37306, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8f981e80b7dbab8152808a7b40da6a6e9184f568", + "data": { + "inGameID": 37307 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37307, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b978cb9972d8c4164336258448d268526062bca3", + "data": { + "inGameID": 37307 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37307, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1f59d3b954655eeb1a89a29f2892aee36b39b10a", + "data": { + "inGameID": 37307 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37307, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "12c51ba72299f22d7ffd46cedb0644130b9f44d3", + "data": { + "inGameID": 37307 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37307, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "889add1bb8ce7002e08d15dc50621b39ae8839af", + "data": { + "inGameID": 37307 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37307, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d959e8daba5b4e89a065a0fdda77f725e2aad13f", + "data": { + "inGameID": 37307 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37307, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2e22c0a13b0d941b8b3c3f3815e05c3a4319faa7", + "data": { + "inGameID": 37307 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37307, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1043f5492cacf72632b002f81cd45dc5bf2ca7ac", + "data": { + "inGameID": 37308 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37308, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d23602455b8b9bdddb54b6f382322635fbd4f4ff", + "data": { + "inGameID": 37308 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37308, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "893d5d0287d384f8f21a6562291f9b108a1afd6a", + "data": { + "inGameID": 37308 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37308, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6755ffe2f7768f83c3104064951be9e85a935f04", + "data": { + "inGameID": 37308 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37308, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d58dd8e317e2f4fd044384e80ef7c60db8b7cb99", + "data": { + "inGameID": 37308 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37308, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5069576a53920211dfff041aa2c8d74a620187e0", + "data": { + "inGameID": 37308 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37308, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "57aef4e2505115fe1228615f63d5e42ca5f068a4", + "data": { + "inGameID": 37308 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37308, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8c82e7d338f7fddfe33e543948f0f3391ab87489", + "data": { + "inGameID": 37309 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37309, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7949049642f747ed4ce58e97bb6c92e3b9600f61", + "data": { + "inGameID": 37309 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37309, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b03780ce6a865ce091c545c4e5622b41c52b2ec0", + "data": { + "inGameID": 37309 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37309, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "75c90c6e9d7e6a064a48edc98a331f84deedfb7b", + "data": { + "inGameID": 37309 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37309, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8c9e18a39d34bde6eebae16f1a6d762e1584af62", + "data": { + "inGameID": 37309 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37309, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0b78b4a3dbb9e1786b906b1d491f5604f3bda0b3", + "data": { + "inGameID": 37309 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37309, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ed2aeb778fcb235317aedba5518cdd8709d40073", + "data": { + "inGameID": 37309 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37309, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3f9a0c9d839bc2d551e30ba6c257d919770511d1", + "data": { + "inGameID": 37309 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37309, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "85b1060b6404fca535f72e794ba41ef57e5cc6f3", + "data": { + "inGameID": 37309 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 37309, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "91e70285422eb5d9b43cbdb44501908a0f8dafec", + "data": { + "inGameID": 37311 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37311, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7e6a17772bd6eb0f85cfaddda5ccffeb97129aba", + "data": { + "inGameID": 37311 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37311, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "312b4543ed846fb1dc79783e54ed8b1f9781c4b3", + "data": { + "inGameID": 37311 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37311, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0977c5bcb0c21df738fe7b5d19e100d84604f593", + "data": { + "inGameID": 37311 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37311, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ecff2b2cc81e80cd23de89a4fba7f7e2fc3db3a", + "data": { + "inGameID": 37311 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37311, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bf230c6f017eaa0b63f673433ac524adf49bc9fb", + "data": { + "inGameID": 37311 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37311, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "154a2c3cb32891a769c85412fbf250568b46a43a", + "data": { + "inGameID": 37311 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37311, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b7f342d88ebd8fc4e1d6da512901b43c64371c69", + "data": { + "inGameID": 37312 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37312, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e748e6e29bf551e419228fad8f0c4884012adc93", + "data": { + "inGameID": 37312 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37312, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7b13385db998dc894b6bd3c5b22efb6f8fc6fc37", + "data": { + "inGameID": 37312 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37312, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "af3ab097cb1bd83fa6392c8366056854f4e9c116", + "data": { + "inGameID": 37312 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37312, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e0e73a236e3fa8a624562bfa11787ed8e84ebee4", + "data": { + "inGameID": 37312 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37312, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "33ad0490014bee9aa26d47c0557b6837d2f38ca3", + "data": { + "inGameID": 37312 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37312, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ed5e3d953f53c449cc63d2fcf0803f3978ca705e", + "data": { + "inGameID": 37312 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37312, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e52f7ba8a7082248fb5ff0af4be9c70952653af6", + "data": { + "inGameID": 37313 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37313, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "619b884c15a20cd8bcf6f35c0b680ee7d86b60ed", + "data": { + "inGameID": 37313 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37313, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4deb3533865a5cf756b5812fc5218d3fc8633e9c", + "data": { + "inGameID": 37313 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37313, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fe66d0da46b2a89515c3f517799bb68efa522106", + "data": { + "inGameID": 37313 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37313, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0bb6ff81f2f1f94e0269a89bab2fe1f9d986ac7c", + "data": { + "inGameID": 37313 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37313, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e1a771cb1a343fb292839a6057f643abd35ff9f0", + "data": { + "inGameID": 37313 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37313, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d7b6f3e953c7b1f034db32233425dd1cb9ecaab2", + "data": { + "inGameID": 37313 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37313, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "941814f14c04172ab69094e2abe145960ac616c7", + "data": { + "inGameID": 37315 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37315, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "253da8cb86742f8abfa42ccb7a7e6fa5b1ae3132", + "data": { + "inGameID": 37315 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37315, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3e8c51359956eca70cf168db54d9233be4c10aae", + "data": { + "inGameID": 37315 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37315, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e280c25e609a9fbed1df320901af6d6d2e4df802", + "data": { + "inGameID": 37315 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37315, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4470e0f29cf5d8cc0052ed8a26999d5b441c7600", + "data": { + "inGameID": 37315 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37315, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "418512f7833bd7a92856a0f034de5f8a328e34ab", + "data": { + "inGameID": 37315 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37315, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bb02c0f8aad9edbef7152342887004d092fe4d0b", + "data": { + "inGameID": 37315 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37315, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8dba8dcbfadd14e30fc41e664d8a8a3bf540874d", + "data": { + "inGameID": 37316 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37316, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "85f82219f8095389e84762ffd577d34a6e84c564", + "data": { + "inGameID": 37316 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37316, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "18a7e7879e550f55ccc184d9242d211e154bad22", + "data": { + "inGameID": 37316 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37316, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7c8443a9dfee65d889da19574269df2495d11c09", + "data": { + "inGameID": 37316 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37316, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9da873896d64f3a078065626abf5b3421e1ad9c0", + "data": { + "inGameID": 37316 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37316, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "61e617f5863dee6ce2e225e82e0eb7b3b33be15e", + "data": { + "inGameID": 37316 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37316, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b235694bf20a4c2f60c706603b6a583fba61f9ec", + "data": { + "inGameID": 37316 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37316, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8248b1be903c5b36e3145d61a3f27c6e96e59a0a", + "data": { + "inGameID": 37318 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37318, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4e88eedc79bafb2a0de78069fd6b2665a6ad6dc7", + "data": { + "inGameID": 37318 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37318, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ec3f76b3b022280515539d783bf439ab2463d9e2", + "data": { + "inGameID": 37318 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37318, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "365844a988c4ab7858bfa26a86710daa358ad9be", + "data": { + "inGameID": 37318 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37318, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8116e682239293acf012b62def508d5dc78f012", + "data": { + "inGameID": 37318 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37318, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5152f697d0fdf54d6449605f574bee1eb2100ef7", + "data": { + "inGameID": 37318 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37318, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "90702388c6bdf90fc8d39588c660d5569731dbb5", + "data": { + "inGameID": 37318 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37318, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "54140c80205df2bcb475012ef70fe50fd4134fbe", + "data": { + "inGameID": 37322 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37322, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ee6b2b056d1d2444065fa32cde6d287ca4a6310b", + "data": { + "inGameID": 37322 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37322, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ed71bdfa76a196d827ddc2d2d5275cd98fa0664b", + "data": { + "inGameID": 37322 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37322, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bd72aac35ae9d013bcf110c601b323db4062f94a", + "data": { + "inGameID": 37322 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37322, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b15fe5b325b0e1515c14687234f17e02526067e0", + "data": { + "inGameID": 37322 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37322, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "22bf61fec8fba6524f42a1db81d56c631b8a1852", + "data": { + "inGameID": 37322 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37322, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9010e5872805f13b317b10915b13441c7fcae460", + "data": { + "inGameID": 37322 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37322, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "abd5caaf756f4a86cca26b27015f6afb84a03d66", + "data": { + "inGameID": 37323 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37323, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bf1455ab36219037ec4afe18d2d2975241713a1e", + "data": { + "inGameID": 37323 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37323, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1dc84f5f5ff650a61eec16f437b7879cf84a0390", + "data": { + "inGameID": 37323 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37323, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "227609200731b4f05cff504fd86a612f34440244", + "data": { + "inGameID": 37323 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37323, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c2f835a16f1e1b8f39896f6f59a7b2fd2364193c", + "data": { + "inGameID": 37323 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37323, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5df600d85986cc69b28f0f149310525ca6728fe3", + "data": { + "inGameID": 37323 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37323, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f570c996ad35c4ecb2916687987429759739ce75", + "data": { + "inGameID": 37323 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37323, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aaeca54bbb02c9e40a4f86f66abfe76a816cda42", + "data": { + "inGameID": 37323 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37323, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1005b9d5f3428f8ac074d588974a307e4dea905e", + "data": { + "inGameID": 37323 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37323, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "306629286bef1b35dc9c1abdb59ac75dd91f2eff", + "data": { + "inGameID": 37324 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37324, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "43405381ba71bf71d1b580e67cab2fef91b1911c", + "data": { + "inGameID": 37324 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37324, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "63e96bedcdb1116be6a4b02b17d8297af5a6ed8f", + "data": { + "inGameID": 37324 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37324, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0d042267fa130b220110e1ffe35856f0beb14b3b", + "data": { + "inGameID": 37324 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37324, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "69f9397a269d221ab490eb92c4ce6b38fcfb5806", + "data": { + "inGameID": 37324 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37324, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a01d06e7307aa0d6f179d03f31febebff2febf0a", + "data": { + "inGameID": 37324 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37324, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dc0eba3039feed9368bcb803c7f337b05808202c", + "data": { + "inGameID": 37324 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37324, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4b9155088200eba87990484ff705ddd67a29f02c", + "data": { + "inGameID": 37354 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37354, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7e2af5372c00a0823ab0738499e1c8a92e8336c7", + "data": { + "inGameID": 37354 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37354, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "842d0bcaa316b06e165441180dd53a374c7e40b1", + "data": { + "inGameID": 37354 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37354, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "61b6a4fab68e3c86fa4a86f237e5be0172c9a289", + "data": { + "inGameID": 37354 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37354, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "df28d68b485b671b3a323aab99a2e0d77047052c", + "data": { + "inGameID": 37354 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37354, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "56d7a4d1bb3119754070408f653dd2c7872ff39e", + "data": { + "inGameID": 37354 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37354, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dbaad8ceadf4ecd0c7570f8390f0e8680cdb1d19", + "data": { + "inGameID": 37354 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37354, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7b7703ff48a79a0ed11dac6f2f79c53b07cc55b9", + "data": { + "inGameID": 37354 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37354, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e448269b909b8011b9ca4a08402abb728037d4bd", + "data": { + "inGameID": 37354 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37354, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c186d829f8f7b0fc5c4a2fa8725226c2f965b2f8", + "data": { + "inGameID": 37355 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37355, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0f0ff76639ca10b7b3ea36d47ea7dc0c1051a5e9", + "data": { + "inGameID": 37355 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37355, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "479cbb2063eed59ede76e89de05c6a30cb0cf178", + "data": { + "inGameID": 37355 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37355, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e793b3b010dca1d2ae300d245655246498aef820", + "data": { + "inGameID": 37355 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37355, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e896bb9ad135ec15f9f2264579de5858b59fd003", + "data": { + "inGameID": 37355 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37355, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "38916ee96577f552cf25da19a3b6c03702af67d3", + "data": { + "inGameID": 37355 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37355, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ef9b69bdf5c0aa53a4e295dd80b0a4577a272612", + "data": { + "inGameID": 37355 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37355, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "428637bcf7463c60f0986c0d0beb9f4f1793996b", + "data": { + "inGameID": 37356 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37356, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "85496c74bfbed97d62aa27f3e95d492366f4b500", + "data": { + "inGameID": 37356 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37356, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f61478e50f07817520a925498c8bae5fabc52f4e", + "data": { + "inGameID": 37356 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37356, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "97ab9535bd1999357a1fba3900ca39d53e7516d6", + "data": { + "inGameID": 37356 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37356, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "06cb3fc28042f441919bb3dc4b3370f2a7dc1e9f", + "data": { + "inGameID": 37356 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37356, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c45bdc8592b70a6eb8447c3cb8a01f0dd9ae09c8", + "data": { + "inGameID": 37356 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37356, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bff7dfc84a0739f09eb085641e0fb7760b5bcce6", + "data": { + "inGameID": 37356 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37356, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "54a79c19d3de3355168a4b7af3b325fd83f35751", + "data": { + "inGameID": 37357 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37357, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d7f34f77740e5acda8a625fc039a899d0d1d2169", + "data": { + "inGameID": 37357 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37357, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff833f392a21359977aa9daa614a8dc5d5ca1151", + "data": { + "inGameID": 37357 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37357, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cc3e53a2b70f02c984d6109385d2d5b85386d16d", + "data": { + "inGameID": 37357 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37357, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8be40b3950b92ff9a7f06d815d0a223553253af7", + "data": { + "inGameID": 37357 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37357, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f35ee82fe86bb9d75157a86ca3058be7c2eb3c9b", + "data": { + "inGameID": 37357 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37357, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "932753fbb5e50c912f00c506d659723a8ebe92e7", + "data": { + "inGameID": 37357 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37357, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f302a7a9be8eed4e8452160971061e845c056fd8", + "data": { + "inGameID": 37357 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37357, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "61726c6d7e75b0c4786179c0e86a586d5612cbba", + "data": { + "inGameID": 37357 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37357, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e15b3535f04daff95580e1dc48d14e93a2daae16", + "data": { + "inGameID": 37358 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37358, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ec044d20c47305fd99cc696ab7b2544cfae97e90", + "data": { + "inGameID": 37358 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37358, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0cd9a3b2cdd3617e762de84b0a4ffa0caf30f466", + "data": { + "inGameID": 37358 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37358, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e90eb9f9a3f89b75998657814e972e4742df4724", + "data": { + "inGameID": 37358 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37358, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fa69d58f000ace94d1e280118dd6c700d03446e6", + "data": { + "inGameID": 37358 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37358, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f351a9282c6a7fe4745ebcd5fe61e25539b48b97", + "data": { + "inGameID": 37358 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37358, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "74ab5ca9f9d1053b59c123fe43545dff03fe7790", + "data": { + "inGameID": 37358 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37358, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "32b2f753b1ba1649547be2c2233bb0d5ef47f6a2", + "data": { + "inGameID": 37359 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37359, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a917b4d3d4d7daae650a1b69d953634ee8df9528", + "data": { + "inGameID": 37359 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37359, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "962804de556b94f26844ca79576c76f092a0b22d", + "data": { + "inGameID": 37359 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37359, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d0c0dea554059d1a437c04faef2d269efa8046ee", + "data": { + "inGameID": 37359 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37359, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5bc9ec8a09e196ecf2c42781d28a8b926b681ef3", + "data": { + "inGameID": 37359 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37359, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bf4f2020883c49fd5c051ec0ca1f2e0a89bf69f4", + "data": { + "inGameID": 37359 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37359, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eb6d3b706f7481c93bd603473c684c5a4ddb06b9", + "data": { + "inGameID": 37359 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37359, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2b00c6fd0b52ae50805a15324af17e24c5dd44cd", + "data": { + "inGameID": 37360 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37360, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4f4cc72d5f48371567f5df66f4b5be8351922efa", + "data": { + "inGameID": 37360 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37360, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "efcbf488706377e30d382c436f26dce9aaf1ae52", + "data": { + "inGameID": 37360 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37360, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d318ef66b25cff55744eaa02da926bf16866ebe4", + "data": { + "inGameID": 37360 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37360, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fdf4f77fcffc2120c2792d8f81963df131308353", + "data": { + "inGameID": 37360 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37360, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2ef858cf2c0e8244d0f3d9cbba00f8f15f916ce7", + "data": { + "inGameID": 37360 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37360, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cd98e760e255ac8ee0575341393e7fc0ece00be6", + "data": { + "inGameID": 37360 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37360, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "977bad2bf5c4533f4a815c97108152aae469dbf3", + "data": { + "inGameID": 37362 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37362, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a55c6738b80a3a3d6e6b51746072f808d7641472", + "data": { + "inGameID": 37362 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37362, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eda097fe30a36bf7e285d21e48542a90ae1bfa67", + "data": { + "inGameID": 37362 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37362, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "636267a9721618cbeaba08995f6c5d02716b7423", + "data": { + "inGameID": 37362 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37362, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "094cc19e38c0a65d186b1d1594bea66b14a58eb4", + "data": { + "inGameID": 37362 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37362, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3dc9e47ca331ca8fd1ef94eebf7789a6fbc667c1", + "data": { + "inGameID": 37362 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37362, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "428a3ac28fbade5c4d83ff5f14483212847dfa19", + "data": { + "inGameID": 37362 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37362, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "99637a901851f2c92469b1e739f28be0417b98c5", + "data": { + "inGameID": 37368 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37368, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d00687422461927c2ec36ebf77c22271748fb141", + "data": { + "inGameID": 37368 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37368, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9acc9ed4e3bee12c2acb69832956dc7321d8fefc", + "data": { + "inGameID": 37368 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37368, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "da2456a48a2625ca1ab21b81b24f2b49c74541a7", + "data": { + "inGameID": 37368 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37368, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5c1b1098e68b118bae7f7b592bb8529ac09ca89e", + "data": { + "inGameID": 37368 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37368, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "17cf87171e577996b28f6d0c7faf398b280a7553", + "data": { + "inGameID": 37368 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37368, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "34867ede0908d53317d914dcfaa96a8fca62ee2d", + "data": { + "inGameID": 37368 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37368, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "170e04613fbf0edb3633efedea4e2f2241d60162", + "data": { + "inGameID": 37369 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37369, + "versions": [ + "a3" + ] + }, + { + "chartID": "c2805fab473859091f08c0e17f1ad25f948819fb", + "data": { + "inGameID": 37369 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37369, + "versions": [ + "a3" + ] + }, + { + "chartID": "b2ce75900a120099d9547b348e0212140795ad49", + "data": { + "inGameID": 37369 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37369, + "versions": [ + "a3" + ] + }, + { + "chartID": "9088b62e32f97dbd71d4551b0536c45de29f1d4b", + "data": { + "inGameID": 37369 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37369, + "versions": [ + "a3" + ] + }, + { + "chartID": "597ebf17594600fdf48704f99004b3e4463c935a", + "data": { + "inGameID": 37369 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37369, + "versions": [ + "a3" + ] + }, + { + "chartID": "9b1d1c43f5019279becded78168afd85a41675d0", + "data": { + "inGameID": 37369 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37369, + "versions": [ + "a3" + ] + }, + { + "chartID": "2a23f7378867579fb432a87a558d40b9c7f52a07", + "data": { + "inGameID": 37369 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37369, + "versions": [ + "a3" + ] + }, + { + "chartID": "cf2f0de63a9bc2445453e7e28c0d175134a1200c", + "data": { + "inGameID": 37370 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 37370, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "10c2a956e80e8d5edc1e1716be1316fa49ec6d1f", + "data": { + "inGameID": 37370 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37370, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "73009078ee748c88055f25a19e1b72d10461da15", + "data": { + "inGameID": 37370 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37370, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "950920344ac7dd86e330a91ad27c11f0c007ecbd", + "data": { + "inGameID": 37370 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37370, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2314d991e5cf5240fbecd88e1f3bb629038f50a8", + "data": { + "inGameID": 37370 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37370, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "02f3f0ba9748e5fc45975e56d0750a64c2dbfefb", + "data": { + "inGameID": 37370 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37370, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5693fe501bb094dfa43ef40ad7592763fd119d95", + "data": { + "inGameID": 37370 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37370, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "101b99983db6d791aa161bbca8eb1b22920f8e8f", + "data": { + "inGameID": 37406 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37406, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "adfbe83e29a2e33ba091f210c3d22afe23e115f0", + "data": { + "inGameID": 37406 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37406, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ba034a42c40cb4f377e7908ac3af32a954354af8", + "data": { + "inGameID": 37406 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37406, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "98518b4267970903120b0e8ae1b0c1c62a1e1fc7", + "data": { + "inGameID": 37406 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37406, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c3044bc2cdc6edd5dd9369aab1510835e78355d5", + "data": { + "inGameID": 37406 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37406, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "10f167b60b00a21ec96a043a36d5a39e73082566", + "data": { + "inGameID": 37406 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37406, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fb3040b41c21d81ac5084efb29eccd5e489e211d", + "data": { + "inGameID": 37406 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37406, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4b6a01894efd454eb9fa6c4da4cded1c7ce01c14", + "data": { + "inGameID": 37407 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37407, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4de8caa23073c0137c604a4e6a99440057683bdb", + "data": { + "inGameID": 37407 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37407, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4df941b9428b69e92b5a24d8bbce1e9138232d08", + "data": { + "inGameID": 37407 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37407, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "10e61964603516d70d17eb665c4d354cd4329365", + "data": { + "inGameID": 37407 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37407, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "07f742693d38a12b44ec404018398105456c580e", + "data": { + "inGameID": 37407 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37407, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "062fecb794864ac418a583ba44c6080349ab59e2", + "data": { + "inGameID": 37407 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37407, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e5f3a534561d4e07fec84c23594fd85f6ca496ac", + "data": { + "inGameID": 37407 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37407, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "11dd6ae7333c9bb4ba79da6a2385484b842f5b86", + "data": { + "inGameID": 37407 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37407, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "89102449749a5455ceea515e45ddde00209a6759", + "data": { + "inGameID": 37407 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37407, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d5f3be5044af8c4f7853ee5af45f92aba9ebde7a", + "data": { + "inGameID": 37408 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37408, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f7cc686eb630535f686509cd86e9c77e2268358b", + "data": { + "inGameID": 37408 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37408, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c0f0d782a2e3ce07970db8ba1c79ce784d5a3dce", + "data": { + "inGameID": 37408 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37408, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b7e813460eda3142c292b5a2effea216b125c7de", + "data": { + "inGameID": 37408 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37408, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "55f0b6847c693482b08663fdf79622438f932872", + "data": { + "inGameID": 37408 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37408, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0786da7a27fc826be044d58c8265f346aa4ff85e", + "data": { + "inGameID": 37408 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37408, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aec71b1c9adf0bf5c7e65d974c12a7276abace64", + "data": { + "inGameID": 37408 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37408, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d3ec06bf4cc36f2e0128a1770123f6c4440445e7", + "data": { + "inGameID": 37409 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37409, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "42e19f2dbf5401c5bd17f1f53d3dbcfbb19dc55d", + "data": { + "inGameID": 37409 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37409, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "19f7c6caaf59f19ee54d0ad6e87e22ce1b574144", + "data": { + "inGameID": 37409 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37409, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0340185dfb7172fbf47924c553094a274f440604", + "data": { + "inGameID": 37409 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37409, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "07b2916bea15c5214b96355b8035c2fab8d3787b", + "data": { + "inGameID": 37409 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37409, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a45dcea2652c0e4eef92f7c59d47b9b12e390ed7", + "data": { + "inGameID": 37409 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37409, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3785aef552d8930f1714895bc8b3b911e47417ac", + "data": { + "inGameID": 37409 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37409, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "57f207e6f8029e1594f74507ab92f13c261b620c", + "data": { + "inGameID": 37409 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37409, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f4ca65e46d6d505e9ed8ff3406f64da0155ca5c6", + "data": { + "inGameID": 37409 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37409, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d07ec3173ec00114a5651e5cccd14eb9fd84cbb1", + "data": { + "inGameID": 37414 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37414, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "45e2da603246ef9b5a9557f1b321bbfa1ccf1845", + "data": { + "inGameID": 37414 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37414, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dc6f7e35fbd38b0b30982ff8e7ac5af954269925", + "data": { + "inGameID": 37414 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37414, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "676f5e6cf4fa4cb14e00c06c6b168460d05a2702", + "data": { + "inGameID": 37414 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37414, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2735ce8295a981c7f9fff429cfaffbb972bb741b", + "data": { + "inGameID": 37414 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37414, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "613fe5d24efc92c6b24dac3962ba773495db11f4", + "data": { + "inGameID": 37414 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37414, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5253c75a456cccd72dbd96b1538b919a7f763dfe", + "data": { + "inGameID": 37414 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37414, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5914ee454e7810d5a07f5b37d95afed09fb01efd", + "data": { + "inGameID": 37415 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37415, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d63883154257cb10758eccd43aabc3a64fefb819", + "data": { + "inGameID": 37415 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37415, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aa451fba7bd0ff341f421f815f059b4769b8ef39", + "data": { + "inGameID": 37415 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37415, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0aa5471fd5d1e02e20e1ca78ba6d5b87d5329897", + "data": { + "inGameID": 37415 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37415, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6c4f3b5e78c83b630d09fc6bd3266acdc0f5d6d4", + "data": { + "inGameID": 37415 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37415, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1f82df29199f80cbb2581e0556ee33e98a35a9ce", + "data": { + "inGameID": 37415 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37415, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "98e42e489eda282ff01e6e4ee0d3695cfcb24ede", + "data": { + "inGameID": 37415 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37415, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3113dcbb94c27511c298dcaca31625231c72f2bb", + "data": { + "inGameID": 37416 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37416, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7ed217ca7c92faf181f75dd76a2da6b0ae228f57", + "data": { + "inGameID": 37416 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 37416, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "843c178f57b8e57ca0e7075d2c408fa062e70b83", + "data": { + "inGameID": 37416 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37416, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8d9ad07d4a560d4178d19ad5c1dc21abaa6f3d9", + "data": { + "inGameID": 37416 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37416, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "94237acabd659636c96fb7ca0a7da6b037209851", + "data": { + "inGameID": 37416 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37416, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5aa0d0f7d04f8529954a4463cf8bca71e09144a5", + "data": { + "inGameID": 37416 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37416, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c08255f9ca57687d8358e3b6ba9af7170834cf87", + "data": { + "inGameID": 37416 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 37416, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5e713a10934fdef846a7d2e0efc198b7d490cc69", + "data": { + "inGameID": 37416 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37416, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "292db51cd556fcdfedd62d17550fe7d54a6066e9", + "data": { + "inGameID": 37416 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37416, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d4a913bb733b6dd2a63c2ef98c376c410292e97c", + "data": { + "inGameID": 37417 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37417, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cf4d71097018c03d0d09ed84fefb64b6977f28e4", + "data": { + "inGameID": 37417 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37417, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d0d95b706f77bcc0dada1b987c571cf351cf319f", + "data": { + "inGameID": 37417 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37417, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d9d0cea5f39b0a4d644158e870d9161979d7538b", + "data": { + "inGameID": 37417 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37417, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "96968e82e2d7fcb85a17911399cc89686a2a462b", + "data": { + "inGameID": 37417 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37417, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7bfa3a74ac6656475f748c922e20e6af1a978229", + "data": { + "inGameID": 37417 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37417, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4c2447d4d4484a8fb617f33fb791f97fc4f63033", + "data": { + "inGameID": 37417 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37417, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f515907f8a33e5fba9c41d51678ef2589024f792", + "data": { + "inGameID": 37418 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37418, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e708fccad7711af8f37bcfd41436036ffc667d9f", + "data": { + "inGameID": 37418 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37418, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ac58484e785250d76fd6c680fe9f240485b8b822", + "data": { + "inGameID": 37418 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37418, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "40baaed41ed4fdb2a619af2c3ce78d836de99aab", + "data": { + "inGameID": 37418 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37418, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3b79a1d91b9a9672fa9caeb5fd9beaefea4bb813", + "data": { + "inGameID": 37418 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37418, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0231a6fec44084210421349edce6323d1e6be2b5", + "data": { + "inGameID": 37418 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37418, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "199de2ff09d9592ccfb8f2951f38f394e7b4d60e", + "data": { + "inGameID": 37418 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37418, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "05d516f35f14b00f6019db1f72ac9cf6034ed0b2", + "data": { + "inGameID": 37419 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37419, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "058c5d826a09a135886a4efe47d59e091a359306", + "data": { + "inGameID": 37419 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37419, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fc0703dc08af1dd11f1a3436cfd7c794a656e034", + "data": { + "inGameID": 37419 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37419, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c9168629a1d5357cc832497ae91add56f91d46ed", + "data": { + "inGameID": 37419 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37419, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "932623eda2d72a696df2296367c4cfdbb9ea319b", + "data": { + "inGameID": 37419 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37419, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2c33fc56ceef66ca04f1a63509d5cefe98027f3a", + "data": { + "inGameID": 37419 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37419, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4d8541dda08669301c2f5c7d8fb5bd442c5f85e1", + "data": { + "inGameID": 37419 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37419, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1a115f3dd8887aab9044577b7ba3d868982450f8", + "data": { + "inGameID": 37420 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37420, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6307a7a74ddd87fd193fbabf238feb559417da92", + "data": { + "inGameID": 37420 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37420, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "96f0c86652aff03be3b9a7033b1ebcbcc4711cb0", + "data": { + "inGameID": 37420 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37420, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "72ab35faba2a56e501818a9c0a79036add3dbd06", + "data": { + "inGameID": 37420 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37420, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3b62147f3b0a3187d372fa461658c91839e14417", + "data": { + "inGameID": 37420 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37420, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "320b9dd87e96fb14edd77ee01598191275204279", + "data": { + "inGameID": 37420 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37420, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "52b9fe1280bd500e02fe4b06854cab6807ac08aa", + "data": { + "inGameID": 37420 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37420, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e4e349753d8d018b33dbf96a0682777ace07ebd7", + "data": { + "inGameID": 37420 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37420, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f6e430164dada673b858919a860ec928385e4925", + "data": { + "inGameID": 37420 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37420, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8c119bc6baf84444efc008f22370d66a46589788", + "data": { + "inGameID": 37421 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 37421, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8c66c8dbb47ea91ed1c7396db5c988c168ed519a", + "data": { + "inGameID": 37421 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37421, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "da9560ae8118fa5ca1b1393ab64e6d383d7085e5", + "data": { + "inGameID": 37421 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37421, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "711fe72599500a4f34f3ea93d2c9f24348d7278f", + "data": { + "inGameID": 37421 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37421, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4c780b026774b1ff13b55b3e63d5bc1aa9f61341", + "data": { + "inGameID": 37421 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 37421, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f267bff6529fbadec71364ddf960bc36b70ed35f", + "data": { + "inGameID": 37421 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37421, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2651700d42ff5e2f024ae696f04595beb355e6e7", + "data": { + "inGameID": 37421 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37421, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8ed09e62a1c1c107326ce802d72e58979c8372dc", + "data": { + "inGameID": 37422 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37422, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c532aeb41045f1bae0e393826f790c4ae8cd8dfb", + "data": { + "inGameID": 37422 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37422, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bdf4022a3aa9c53262cda9723b347347b2a69a82", + "data": { + "inGameID": 37422 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37422, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a3479a22f246d1565ade390ec376e8429ed4786e", + "data": { + "inGameID": 37422 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37422, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce6d08deeacc32b79492f16bcb67f35268675628", + "data": { + "inGameID": 37422 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37422, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "99792c9a7639ed14e2da2f41b69f9f527dc4aed8", + "data": { + "inGameID": 37422 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37422, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5357a3370f91f63b8b5c8c82a405bf68511ec1b5", + "data": { + "inGameID": 37422 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37422, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e4e84ea7450921a7d134868517a401754c218536", + "data": { + "inGameID": 37422 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37422, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c3ae65bddb472498a99ed6983ad19d791199a535", + "data": { + "inGameID": 37422 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37422, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "521813c82265c827c71e9706062e3442e62e1ed0", + "data": { + "inGameID": 37423 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37423, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2acd929b3972ace1725a15811a5911e21fac0f4a", + "data": { + "inGameID": 37423 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37423, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ac115bc31bd6be85fb76385781201411e926d21", + "data": { + "inGameID": 37423 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37423, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aef090bc330918e710be807071932ac2f03dd06d", + "data": { + "inGameID": 37423 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37423, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9abfac621f2d7858576ab77a1693dd23d8764d19", + "data": { + "inGameID": 37423 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37423, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "797274153f6173a85d518a39c411ce94b0b12bcd", + "data": { + "inGameID": 37423 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37423, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ef73b22c8af303d1605f9e88cc12d14e9122c463", + "data": { + "inGameID": 37423 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37423, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "966f01a1e925098b3d4f1cd7fe22cd48fca6dd38", + "data": { + "inGameID": 37424 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37424, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "37ad5ab0a3ee6aa6d2b9c064357b29a446394208", + "data": { + "inGameID": 37424 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37424, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5e652728d3a8ad692dca1075d6787131218e4680", + "data": { + "inGameID": 37424 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37424, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c72bde9d62c16b20cef4efda733108c30d8a889b", + "data": { + "inGameID": 37424 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37424, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "34c56bf258c797e3c65e5921d0baf1495b3668aa", + "data": { + "inGameID": 37424 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37424, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a423b0c8fa68eb1648dbeda6598f9911d2363530", + "data": { + "inGameID": 37424 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37424, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "46ab7eb286ab9449aa296f9980ee4df8dd4edd32", + "data": { + "inGameID": 37424 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37424, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2fa056325cae360e8df204ac17f33dc7169c3ae1", + "data": { + "inGameID": 37425 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37425, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "12eef1b5b9304cb1fcc166cc66ab8caed047441a", + "data": { + "inGameID": 37425 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37425, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b5fa47c3b9ded1dddedc6d6e92416bbc59ca3beb", + "data": { + "inGameID": 37425 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37425, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f6e4077e40e430bbf9f9274951851ad2887b1569", + "data": { + "inGameID": 37425 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37425, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b0fca02164c29dfddc465d9e4f1b06a30fccc392", + "data": { + "inGameID": 37425 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37425, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "857cf76eb90deb8e2d685fa36bed927abefee658", + "data": { + "inGameID": 37425 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37425, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "728c867164ff09a438f200df7dfcce943d4a26a7", + "data": { + "inGameID": 37425 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37425, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9be56f9c2fd313dec220fdb2b66ae9d7baf1b0cc", + "data": { + "inGameID": 37431 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 37431, + "versions": [ + "a3" + ] + }, + { + "chartID": "25f3f568bf53a553ee82cce71dba187c1534bd0a", + "data": { + "inGameID": 37431 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37431, + "versions": [ + "a3" + ] + }, + { + "chartID": "7bd1c787ef40067407f67b2504851aa0f5ab25f8", + "data": { + "inGameID": 37431 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37431, + "versions": [ + "a3" + ] + }, + { + "chartID": "03bfc96db7a5d3ee2c63157ea9b811cda34d397f", + "data": { + "inGameID": 37431 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37431, + "versions": [ + "a3" + ] + }, + { + "chartID": "41548db5e83791adf2f156bde8079ddc36c27c89", + "data": { + "inGameID": 37431 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37431, + "versions": [ + "a3" + ] + }, + { + "chartID": "9d518cadb3a4d2607672e981955154406441d06f", + "data": { + "inGameID": 37431 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37431, + "versions": [ + "a3" + ] + }, + { + "chartID": "cf7c2e51d96551ee17acf4d4498331d721710d74", + "data": { + "inGameID": 37431 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37431, + "versions": [ + "a3" + ] + }, + { + "chartID": "dc7a46e3767da3f307ccbf71e71bfb8ffba98430", + "data": { + "inGameID": 37432 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37432, + "versions": [ + "a3" + ] + }, + { + "chartID": "b150de89200f0e30a68e53e2fa7822661be740ad", + "data": { + "inGameID": 37432 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37432, + "versions": [ + "a3" + ] + }, + { + "chartID": "219453652f64d4aa597e77f63283846b04287916", + "data": { + "inGameID": 37432 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37432, + "versions": [ + "a3" + ] + }, + { + "chartID": "0476fe18369f6d1590a6f6caa6a0495813d94fed", + "data": { + "inGameID": 37432 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37432, + "versions": [ + "a3" + ] + }, + { + "chartID": "abf80ea638c26d22b0b15c0559494cb6e47fd3d0", + "data": { + "inGameID": 37432 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37432, + "versions": [ + "a3" + ] + }, + { + "chartID": "2f1bfcc30ecda09de1ed39f803034b17ec614917", + "data": { + "inGameID": 37432 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37432, + "versions": [ + "a3" + ] + }, + { + "chartID": "6c301d6b57fc1e72f839bec232c0dd3927be3710", + "data": { + "inGameID": 37432 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37432, + "versions": [ + "a3" + ] + }, + { + "chartID": "2d43d54455aa56e78f566527520f5fa369680068", + "data": { + "inGameID": 37433 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37433, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "75b82f07b2f6c971fda5c5a3badd4aabff86995d", + "data": { + "inGameID": 37433 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37433, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2cc4873a52f5a56acca440f75056aa3f27ce30f9", + "data": { + "inGameID": 37433 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37433, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "099740b67347f8c94a4c26570c26a65ad79acbd9", + "data": { + "inGameID": 37433 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37433, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8f1cff21846b62c876334f227ddca679e938d7b9", + "data": { + "inGameID": 37433 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37433, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5dbd91340d1bc8327b321de3140775e2dffaa996", + "data": { + "inGameID": 37433 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37433, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6bbf6242adf6047a1aaa43594491e544624b7cb7", + "data": { + "inGameID": 37433 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37433, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c9d3dd26cbbe8ef86dbadda99e516691d068c5c9", + "data": { + "inGameID": 37435 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37435, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7e1a8800d81ca8487e75611942777f2ada5445e8", + "data": { + "inGameID": 37435 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37435, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d7a483c65c0121515c5b5550f3e451296b29f96c", + "data": { + "inGameID": 37435 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37435, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ea2060824057f5f503e022a874fe54b4a2b16e1d", + "data": { + "inGameID": 37435 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37435, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0938896e39341db0b1bf09147e3ac4de34cc75e3", + "data": { + "inGameID": 37435 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37435, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1181dc69c76652fe3ad0995d503f77bc47b35e15", + "data": { + "inGameID": 37435 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37435, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "33b94380c66408aec5d583734e0a4ed716656601", + "data": { + "inGameID": 37435 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37435, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9fd694b9a68fce161372ed370277d0396820db4d", + "data": { + "inGameID": 37436 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37436, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6fed91b4634297dd02c1f35907527b1c43724fbf", + "data": { + "inGameID": 37436 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37436, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cadd5b78c8db6c462b79689dec34c6b9b2ee2280", + "data": { + "inGameID": 37436 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37436, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c4b97bc89967fd6aa09f1398f529c1b89c113e68", + "data": { + "inGameID": 37436 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37436, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2176d9600cf548fc7c013fbb59bbb26bfa7be54d", + "data": { + "inGameID": 37436 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37436, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7cb2f8c093750f7594917ea7742dace5a2bea72b", + "data": { + "inGameID": 37436 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37436, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1fa420e0c0beb23a9569eff21233557932719183", + "data": { + "inGameID": 37436 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37436, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1490566ce7b5ae45b12d9f72e60948bc8283f494", + "data": { + "inGameID": 37436 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37436, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "87fc4d4fa0def302ef28373a530ef33d25f6366c", + "data": { + "inGameID": 37436 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37436, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "89a3f152b61dc21eb844881f19e636e2e82ed6b1", + "data": { + "inGameID": 37444 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37444, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c27ab1ab335a7405b9b6a5dbe6cb0aac5e9b275b", + "data": { + "inGameID": 37444 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37444, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "84e110e12351ac99046a950e7670671c1fc5f328", + "data": { + "inGameID": 37444 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37444, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "158bc6afbbc16472811ee5fbc8bab8b09ddee437", + "data": { + "inGameID": 37444 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37444, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d052de1b7b920239d0c280f9d3739da661e3123d", + "data": { + "inGameID": 37444 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37444, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5141c58b053df264024c1e16bc60910f8457df10", + "data": { + "inGameID": 37444 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37444, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "89bc13df75e393300d4b343b2a63cff361d7dfe8", + "data": { + "inGameID": 37444 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37444, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "741e4fd0e056713d662cb78584c51b1221c2af73", + "data": { + "inGameID": 37445 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37445, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d80661d39d9cb8e30dd6494ca71a0397bef216de", + "data": { + "inGameID": 37445 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37445, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f6aae177e3097698c91d89504c08759c08aeb794", + "data": { + "inGameID": 37445 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37445, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0b2b358d2bcaac61d6c612f8ab4b21e9af1980f1", + "data": { + "inGameID": 37445 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37445, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5e1338ebdcc9bfdd5cdb8dfe663583ae5dd1f44d", + "data": { + "inGameID": 37445 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37445, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9326a0a3ae8ab498a7698931a28dd6359a710dc1", + "data": { + "inGameID": 37445 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37445, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0fd2094facd053680d935c4d3d94ae29939ab287", + "data": { + "inGameID": 37445 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37445, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "759ce5a7c812b642c9d2f51fde321df2a1ae4ccc", + "data": { + "inGameID": 37445 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37445, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2b04fe43184e43c780999be8393ac2418ce0f154", + "data": { + "inGameID": 37445 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37445, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "431e79a2cf05b75b9a08e28fd06d765330854cef", + "data": { + "inGameID": 37446 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37446, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cbebbaca4d124c48ec4c727e2173c40cd5ed74d0", + "data": { + "inGameID": 37446 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37446, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "19534fcdba9c4a684c162e0c45d9a0ffd929784d", + "data": { + "inGameID": 37446 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37446, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5f5a44d85620b836ed061810e3be7a9d5e170386", + "data": { + "inGameID": 37446 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37446, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "be61905b10e8f1a34ec0e7f8ecdc2eec3e35402a", + "data": { + "inGameID": 37446 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37446, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a5816da41839aa5d44c172760a7873a1bf58fa7a", + "data": { + "inGameID": 37446 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37446, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d02d60eced64042fe9eb4d5029f9d3c7c7757349", + "data": { + "inGameID": 37446 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37446, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "616675bb29727f075eb4916ff18d317015ca0461", + "data": { + "inGameID": 37446 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37446, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e48941efed660d46d7a2f9fde77d441cc9d02944", + "data": { + "inGameID": 37446 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37446, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0c8bad4d5b96cfd2a4ae575b1960d87a0948b133", + "data": { + "inGameID": 37447 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37447, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b13c80b145273b0889e505aa9e9587c58f575000", + "data": { + "inGameID": 37447 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37447, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "324b8889d23e33e2f422a38548dbcbb8cde2ac0f", + "data": { + "inGameID": 37447 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37447, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7ea05d73fab3d33016d4825fa02205ee9c3be5d3", + "data": { + "inGameID": 37447 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37447, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "782e9b6a8c1e2213c1e8b2755233b6a23eccd2d4", + "data": { + "inGameID": 37447 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37447, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4b8226946afd21034bac5ac071c8fd8150ea546f", + "data": { + "inGameID": 37447 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37447, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2cffbdf4c0a91befdead7dec3c979a5564281d4f", + "data": { + "inGameID": 37447 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37447, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0f86dcbb3710e42b0286cbbc460a24d18c30c9c3", + "data": { + "inGameID": 37448 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37448, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "67d238fadeae6e300daed1f99ed5a440bfe5f8f6", + "data": { + "inGameID": 37448 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37448, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2355c2f72d54f8eee1531ca35e20b9206ac9bc61", + "data": { + "inGameID": 37448 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37448, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "abef5f38c54337498d6b8eab576a6d5c568cdf7f", + "data": { + "inGameID": 37448 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37448, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4581a815a4bc30879d97059d296648e26532c862", + "data": { + "inGameID": 37448 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37448, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "af5daff3edf6ec4266fdd9daa5572ec85640a966", + "data": { + "inGameID": 37448 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37448, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7bad68bcd9b5604c107fde72f76108121c5f475a", + "data": { + "inGameID": 37448 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37448, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ad22de5bbf571e05b387e4f50e21b8b61148db0b", + "data": { + "inGameID": 37449 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37449, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a36f56e36682faf2d34c0ac80707a53a7e384605", + "data": { + "inGameID": 37449 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37449, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f45f29796200c2df7e6aa97d8897d41193170015", + "data": { + "inGameID": 37449 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37449, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8d0f0fe387561a314f7906f3b82ab54fd1a237ee", + "data": { + "inGameID": 37449 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37449, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "78a0971b3b4349505850e89746127d8bcca53eb1", + "data": { + "inGameID": 37449 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37449, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "590e670d535ca769f4faff1daa7b2f3e81a510a3", + "data": { + "inGameID": 37449 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37449, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b553ea71c3b0065bd263dbaa8fb18f1473862ca2", + "data": { + "inGameID": 37449 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37449, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a03436b8a16533dde10bf3c35e7d9822815cd03b", + "data": { + "inGameID": 37450 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37450, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "40f23af83fe2b668d0cc8713efdd53f468b60ba8", + "data": { + "inGameID": 37450 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37450, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "48f164cab68d6af128aea20bc40c9e8909ed3ac1", + "data": { + "inGameID": 37450 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37450, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "42608be08b04127cff41a1c355143e58a5cb1488", + "data": { + "inGameID": 37450 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37450, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8f320f198ee59e3c53a89239b75f90ff657e4ab", + "data": { + "inGameID": 37450 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37450, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "33231108080a9ab0db095c0a88829566d2e0f95a", + "data": { + "inGameID": 37450 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37450, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e90ee95b99da8e16d5f3069e3cbeda3703694186", + "data": { + "inGameID": 37450 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37450, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "91e950b688dcff287dc8b0165b2d61628bb46ac4", + "data": { + "inGameID": 37450 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37450, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e7a9c59587a88cd6d4c5f8baed2affbe4f91459d", + "data": { + "inGameID": 37450 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37450, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cb10bcc605a5afac08c0565e747983962816e3d1", + "data": { + "inGameID": 37451 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37451, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "77c63a5ec9d1cb903f4cbe53aeff7fc268b497ff", + "data": { + "inGameID": 37451 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37451, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2740b66a3f1761a3f1d14d8f056decfe43681443", + "data": { + "inGameID": 37451 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37451, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f59b8d244d6d77f8e80c80e67a53d43691d248ea", + "data": { + "inGameID": 37451 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37451, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a77e132322a29dc0b524603eed6d24b45f64f2e4", + "data": { + "inGameID": 37451 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37451, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "abb4758ec883cbf99e0899d3f209ba4202f08408", + "data": { + "inGameID": 37451 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37451, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a4ebc7e91a3ea3620704b523a421a851810d0535", + "data": { + "inGameID": 37451 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37451, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "123daea90d273b46ffbb830996b56ad31532dc7b", + "data": { + "inGameID": 37452 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37452, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9768028708eca9d17b11d8855a41eae1db58791c", + "data": { + "inGameID": 37452 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37452, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c66f3bd0008536c0352daa3c0575d50b15761e1a", + "data": { + "inGameID": 37452 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37452, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "26fc923f6790bcd6bd8aa7438bd637d0ec98a63f", + "data": { + "inGameID": 37452 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37452, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "937173f852ce72b1b69535c4a459557a66e350c5", + "data": { + "inGameID": 37452 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37452, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f8e32356ad94496d43c24e593833ca89509550c4", + "data": { + "inGameID": 37452 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37452, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1e9adcbd47ba36cf59dade82326b1a7039815a61", + "data": { + "inGameID": 37452 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37452, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "295466c4717e5940e5abb6d268a3169a0666845c", + "data": { + "inGameID": 37452 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37452, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "db914fb39dbf19d80c217dcf126b8b4364fd65a6", + "data": { + "inGameID": 37452 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37452, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c8d2102b58756e750849abef5388ce61869da553", + "data": { + "inGameID": 37453 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37453, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "da191287f5135e6db759fdda945396448e359653", + "data": { + "inGameID": 37453 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37453, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e71f7f8fb2f14645f46ab14a20a40841ab1b8a11", + "data": { + "inGameID": 37453 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37453, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "09931a2204a840ed4031720711e6cc2a998f5e8e", + "data": { + "inGameID": 37453 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37453, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "305a2a2c11748bd6a2e6500ed7f709311d39cd8d", + "data": { + "inGameID": 37453 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37453, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d16dcc0be1e30e19b57cb817e15cb7c71c69f015", + "data": { + "inGameID": 37453 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37453, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5554a8289c1977d8462612ab83791edbb056c26d", + "data": { + "inGameID": 37453 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37453, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "82583f5e0dab4436d8219b32592cc2d772bf647e", + "data": { + "inGameID": 37454 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37454, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b09d76fce5df425702f8e553d8937f2c49f2f9c4", + "data": { + "inGameID": 37454 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37454, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aa84eb2b67bd7277fda58157f3e91e273e7e4fa3", + "data": { + "inGameID": 37454 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37454, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8bb3f9b75f5f71a772a20be0b295b7818e0c403d", + "data": { + "inGameID": 37454 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37454, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "359685ed07ceb8d89c0b2aafdb6dbe8f642a5a17", + "data": { + "inGameID": 37454 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37454, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c266c0511f77202fd8008ba2d7389b345f3d91b7", + "data": { + "inGameID": 37454 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37454, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eb2f7e52a2eef367975aa5028a26c057da6accd5", + "data": { + "inGameID": 37454 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37454, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "73ab69ef5616c69b6744ba02946f47a12ed800f2", + "data": { + "inGameID": 37455 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37455, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "97ea10c4ec0c13225e46ba631e23a13fce9e8490", + "data": { + "inGameID": 37455 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37455, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b9fbad2ff68979ea28cde83847b45e0450ce6396", + "data": { + "inGameID": 37455 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37455, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "06bc5881b2ba2acf7f89d72193fd12c10fee30c4", + "data": { + "inGameID": 37455 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37455, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9fdf4674374d054730641bcaf07163ab7de06a00", + "data": { + "inGameID": 37455 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37455, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ba0e6f206ee1bb0f0efdcaf266a381571e16ecf5", + "data": { + "inGameID": 37455 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37455, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "13029755d012003e6c9a05f36e2f763997119136", + "data": { + "inGameID": 37455 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37455, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dba88a189179610fcfca22bec89650ac344d6c25", + "data": { + "inGameID": 37456 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37456, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "da60ed7d10e6c69ddb4bb03c9485edde2040e916", + "data": { + "inGameID": 37456 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37456, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "442fc83e95991b25c6b4eb0e0da871af9ffa619b", + "data": { + "inGameID": 37456 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37456, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c3de2b0808df39e3514a17b5ef39903b1d548509", + "data": { + "inGameID": 37456 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37456, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fcf4204af9072ed613ddbf80e623f30782280910", + "data": { + "inGameID": 37456 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37456, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7630a75a03d64ebbeca84654bd9ed7f78aa07a03", + "data": { + "inGameID": 37456 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37456, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "734134c4b12d5437804a71cb9bebfce04d051390", + "data": { + "inGameID": 37456 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37456, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3e6e5836e61c25259afb4b4f538826039bd420a6", + "data": { + "inGameID": 37462 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37462, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0d92ae70bd49e3f5875ef2ebbb6e1d39a945bd78", + "data": { + "inGameID": 37462 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37462, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6934bbdd83ad3cbdb4b1f38df42364ef009d13f2", + "data": { + "inGameID": 37462 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37462, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7a5ca4993836c2cd214139d195156e4bcfdc6ee6", + "data": { + "inGameID": 37462 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37462, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "86f794042be10b6a1ef3bfdabc1fa3ae3ae56376", + "data": { + "inGameID": 37462 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37462, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eb816a957bfe96db287e290343cbbec3d116cbf3", + "data": { + "inGameID": 37462 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37462, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4410bfdaccc5fc8dd4980b97be0f88bedfdb0448", + "data": { + "inGameID": 37462 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37462, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d5de96f069fadf05d9b5c8be879374c31a6694dc", + "data": { + "inGameID": 37466 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37466, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "828282fd941f7de1f901abd0849d365dca194e8e", + "data": { + "inGameID": 37466 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37466, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f8f0736c3968172e9de4e432304e70490e0192c0", + "data": { + "inGameID": 37466 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37466, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0bb590336fa30469f1132238f198f6201cda9559", + "data": { + "inGameID": 37466 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37466, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bed5d8dd073897c7f8be654680c9af451c0cdc3d", + "data": { + "inGameID": 37466 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37466, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e3e6f04597a731b4736b4360803cce33ca6856eb", + "data": { + "inGameID": 37466 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37466, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "30cf054d9d7c7445e6fd32a07ed18f6a89388f83", + "data": { + "inGameID": 37466 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37466, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bef7323fa51f13d6bd0f19bc312a9d1ab0f04c52", + "data": { + "inGameID": 37472 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37472, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "979d92a5e4bb13504f426edaa26bd1c8e47dc160", + "data": { + "inGameID": 37472 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37472, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "66b56d692af92a4a4a9cd29f457b86c23cee3822", + "data": { + "inGameID": 37472 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37472, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e5f7320ba0ad94f38c0c3bcabfedae80389f93f4", + "data": { + "inGameID": 37472 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37472, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f0333d4e861d144296445987974f5e998586af5b", + "data": { + "inGameID": 37472 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37472, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e886cf1cbf279c20adf3ce51cf42f3cee42a5a1b", + "data": { + "inGameID": 37472 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37472, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f27223a14a7bd1259daad3c588134ddea5d5242", + "data": { + "inGameID": 37472 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37472, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "93f383879996f06b06a14938f5e2698edb4ef127", + "data": { + "inGameID": 37484 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37484, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4375ce8724fa8bf466d49c00fbc88a380dbded86", + "data": { + "inGameID": 37484 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37484, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b94fc5cabd109b8225987b74e1d6af9811e06561", + "data": { + "inGameID": 37484 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37484, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "af078606e133a266132f25eec41c2430c001e7a9", + "data": { + "inGameID": 37484 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37484, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1b113b091962214c4ce04b85942268edc34fa29f", + "data": { + "inGameID": 37484 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37484, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b9b996d60fc8e791940071ffd584331aa2d2c18b", + "data": { + "inGameID": 37484 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37484, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1479d2d4b8af2c70ddca8028f58bee95bc77a506", + "data": { + "inGameID": 37484 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37484, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ff8945d0de8a43a93646ecfdc3da3d9efbb8162", + "data": { + "inGameID": 37484 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37484, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "07f4304348755730ea18d88988137d696d351cfd", + "data": { + "inGameID": 37484 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37484, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e0e53ead5c74a779f86781efe853dee7d83e868f", + "data": { + "inGameID": 37485 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37485, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d6390e8b5656c19e27ccd62af254e9c36f476da8", + "data": { + "inGameID": 37485 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37485, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5994c0f1054ed50e0334b72083b489361beb4ba5", + "data": { + "inGameID": 37485 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37485, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6f4e92a7b55432f4dce92c24cb7ad3fdcc2c2b0c", + "data": { + "inGameID": 37485 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37485, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "37f7a9331b9f7e9cd02dfb96f95c9cc2fec9e279", + "data": { + "inGameID": 37485 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37485, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d608f14e91cdf97cc12a1a35b917a4334670790", + "data": { + "inGameID": 37485 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37485, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "70145bc8f703af3a1893f28552dc1d1bf61ba534", + "data": { + "inGameID": 37485 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37485, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9ea2df2cf40c8980d10c13b67ef9da30927bf918", + "data": { + "inGameID": 37487 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37487, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c3982afe876f8c56d9fbb43f12d239670da86a9a", + "data": { + "inGameID": 37487 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37487, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ae2dfcfd6acbb5de7c9a80199f3661b887f1fa76", + "data": { + "inGameID": 37488 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37488, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a945be914e9630ec2456b7d68f5548eb27a4c5de", + "data": { + "inGameID": 37488 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37488, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d66e8de7cbe2bb8374e80dd25ef76fee3f9ec4d2", + "data": { + "inGameID": 37489 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37489, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4b41bde2e52811d26d740fb98c9d78ff13836b98", + "data": { + "inGameID": 37489 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37489, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "235876f67b8016a7cb5d14cfd5d1536b76c769a8", + "data": { + "inGameID": 37490 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37490, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a519fc18590672408e9f658274f4e7e75f10fb39", + "data": { + "inGameID": 37490 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37490, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5c0a2cfd9ba4fb6602b7bb0a9b240b4fa4d918bb", + "data": { + "inGameID": 37491 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37491, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d328e438275c014009c6cdc885dd752f5f1b83b2", + "data": { + "inGameID": 37491 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37491, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fdf1c7199706ef6ee582f0e6b8d2e757012ae0a2", + "data": { + "inGameID": 37492 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37492, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "77abf6252a8c9c557a5321b4c07cc75cc394c2b6", + "data": { + "inGameID": 37492 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37492, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "53220c3cc9e4ab5abd84879872b681c693217f73", + "data": { + "inGameID": 37493 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37493, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2066af9e3bf76ebf38545dd23e5cb6787a3dc5dd", + "data": { + "inGameID": 37493 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37493, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f82e685b32a55f7b83f40e9b7a104f5b33f8dae4", + "data": { + "inGameID": 37494 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37494, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "64a3bc0a8c29d15e52414eea48200eb37ef362e8", + "data": { + "inGameID": 37494 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37494, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0aebedb241efdc986c5bfd06a0516a44bf8c12f6", + "data": { + "inGameID": 37495 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37495, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1628234aa1f24db4a4d1338fecdc7393a8aadd4d", + "data": { + "inGameID": 37495 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37495, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fb4fc1948544b91a7340f0fea8f315a9b5e45118", + "data": { + "inGameID": 37496 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37496, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "48ba7769dd34bbc3cb9d8491dcea44d0224c6a90", + "data": { + "inGameID": 37496 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37496, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a166bf75b3697ba2447e170249ea2904119176ef", + "data": { + "inGameID": 37497 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37497, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9051faaa4778cdf870009503c72f3786dc4f6240", + "data": { + "inGameID": 37497 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37497, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a01ad3f4ea5511cb51cb6ac4874952f3ccc1f95f", + "data": { + "inGameID": 37498 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37498, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c0d8a9746e0bd19fc397b4cf5a9fbfaccdd9dfc7", + "data": { + "inGameID": 37498 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 37498, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8f3d285cfea4f115040e6267033859ce30b58910", + "data": { + "inGameID": 37499 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37499, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c37ee33233f24cb27b4ee96bc3d0c681804e2b32", + "data": { + "inGameID": 37499 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37499, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8c2dfdb49313b4f72f5eb14fd942f4e0e617bba3", + "data": { + "inGameID": 37500 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37500, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1c577a61596e25ae3a5a7e12f287198152775362", + "data": { + "inGameID": 37500 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37500, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a05b83c2d42e78d829c9f6f8604bfef29536d0ca", + "data": { + "inGameID": 37501 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 37501, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a5bb402227d8c0f56cd3293f2d5a5b636d5db26a", + "data": { + "inGameID": 37501 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 37501, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cb3031e69ec15d8ff000e989a0099db16935cd8f", + "data": { + "inGameID": 37502 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37502, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9b8fc80d01776c589c2f6b54adb8d4c7427b7e94", + "data": { + "inGameID": 37502 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37502, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dc94ddbcdf30f272a1e90d3db3808f0a067c6d7e", + "data": { + "inGameID": 37504 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37504, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1d2445b520b5ab0b94d065258ae54e73af8e6e87", + "data": { + "inGameID": 37504 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37504, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0b8cb504dc1f697ba8626235ab8a14cfb11a2dc1", + "data": { + "inGameID": 37504 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37504, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ba61eade80181c8b7d66b8dce17764ec2ecb1c39", + "data": { + "inGameID": 37504 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37504, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d302fac5d1420f4f020d115c12ec69daf438b219", + "data": { + "inGameID": 37504 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37504, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4f70c56dbeb365bb40e0ead81acfe7a7695f4263", + "data": { + "inGameID": 37504 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37504, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "344b0063a73b0fab4255fc1f3881035b33fab763", + "data": { + "inGameID": 37504 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37504, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5a82b98ac789f0eb2e7017fbfcf2c91e726d570f", + "data": { + "inGameID": 37511 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37511, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d82d49cd8b9ff862b52258114b9c0502443453b7", + "data": { + "inGameID": 37511 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37511, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8e2ce3519967ec571ac07686ae2db324984a587", + "data": { + "inGameID": 37511 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37511, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4305784ed8c73cfb032a3539f62c0144e4f94fbd", + "data": { + "inGameID": 37511 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37511, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "88ee21a5d63a39f84394b270c5fc0a1bda0b9971", + "data": { + "inGameID": 37511 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37511, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "911931aedac7fd87fb0815d63dd3c61b30dd209b", + "data": { + "inGameID": 37511 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37511, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2dcce7d74209c05ef625c4760c7dd6d8149e9e60", + "data": { + "inGameID": 37511 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37511, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bc7d4e7d21e1fd6fe39f9c7fd803a25bcf6406bf", + "data": { + "inGameID": 37512 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37512, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ccf1bf459fca04c44180db30d62d3b0b600a1095", + "data": { + "inGameID": 37512 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37512, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "79e0c9f08d37ab20aa2866372ccb0d086653cf92", + "data": { + "inGameID": 37512 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37512, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "81a2f816fa7efb68e14a7cdd1b893ab5115fdb17", + "data": { + "inGameID": 37512 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37512, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "009249041b17325eb82f888a812b077e4304f768", + "data": { + "inGameID": 37512 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37512, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1352b1bbf8a160e35335a118b21cda4e2108498f", + "data": { + "inGameID": 37512 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37512, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a77739b09c48e62d9285fb0a975c4678bd3fa09b", + "data": { + "inGameID": 37512 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37512, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0daca29d73c41076c6625606f557f426414e07b5", + "data": { + "inGameID": 37513 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37513, + "versions": [ + "konaste" + ] + }, + { + "chartID": "31340e8faa89073c6c5e8aba9fb79bfe464c357c", + "data": { + "inGameID": 37513 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37513, + "versions": [ + "konaste" + ] + }, + { + "chartID": "5c9ea77b6ca49b058920c27b294cad92cf8dbabd", + "data": { + "inGameID": 37513 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37513, + "versions": [ + "konaste" + ] + }, + { + "chartID": "4c46c4cf48e85517b6f71a5891ecef471aeab753", + "data": { + "inGameID": 37513 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37513, + "versions": [ + "konaste" + ] + }, + { + "chartID": "3867002de5ea72d0c6a53289362de2e88446bb9a", + "data": { + "inGameID": 37513 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 37513, + "versions": [ + "konaste" + ] + }, + { + "chartID": "a561e0719175617d9a9d8e97a9400566f17df9b7", + "data": { + "inGameID": 37513 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37513, + "versions": [ + "konaste" + ] + }, + { + "chartID": "4f50c8574d5d4f92476a6ba30d8582b800b7cf77", + "data": { + "inGameID": 37513 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37513, + "versions": [ + "konaste" + ] + }, + { + "chartID": "5e9e7a4ec93dfb84d790deaf52abcf2c8566f6b3", + "data": { + "inGameID": 37517 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37517, + "versions": [ + "a3" + ] + }, + { + "chartID": "67934527c38f60f6668bfb7048e986dcd8720394", + "data": { + "inGameID": 37517 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37517, + "versions": [ + "a3" + ] + }, + { + "chartID": "ba351e36ecda993d1508ca8fe95eeb6dfa031e65", + "data": { + "inGameID": 37517 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37517, + "versions": [ + "a3" + ] + }, + { + "chartID": "d9796455dec3b35938a449f3e55e5bcdf4024d89", + "data": { + "inGameID": 37517 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37517, + "versions": [ + "a3" + ] + }, + { + "chartID": "460b6d0bbf00b65dc51514cd18678e2576b98adf", + "data": { + "inGameID": 37517 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37517, + "versions": [ + "a3" + ] + }, + { + "chartID": "aeeeb8f624d266a8b1ee5ad6161882e0f82b689f", + "data": { + "inGameID": 37517 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37517, + "versions": [ + "a3" + ] + }, + { + "chartID": "719e3f78673bf2fc1b723668cc42a3f586ef41df", + "data": { + "inGameID": 37517 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37517, + "versions": [ + "a3" + ] + }, + { + "chartID": "f67bda8668334c578594c840241bffc11cb31d22", + "data": { + "inGameID": 37518 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37518, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "87be83de60fedb99a7d57604a9cde4fdae9aecdb", + "data": { + "inGameID": 37518 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37518, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a488a7b7904e2efb33c653162833962e8210e665", + "data": { + "inGameID": 37518 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37518, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "17c1ee079c8f59f339146634608f7837f4cdd280", + "data": { + "inGameID": 37518 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37518, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "efd643b71a50a932e6d902c69a24841dbbc7e185", + "data": { + "inGameID": 37518 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 37518, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "77ee8e9265cb1b9867fe7bf7d3d7d0965d136969", + "data": { + "inGameID": 37518 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37518, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fbc109350ecadd4bcfe433c7ae721175b23bdbb9", + "data": { + "inGameID": 37518 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37518, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ea44745059402dd96101ba3c18150d084ce2aabd", + "data": { + "inGameID": 37520 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37520, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "db1008ae915b5da4d9b2c598104f8afbaaa53f74", + "data": { + "inGameID": 37520 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37520, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "702010db9f2a260716c623c9ce2d0d85e18f1c3c", + "data": { + "inGameID": 37520 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37520, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "895c80d5ad997f1b7c9ef5cd881537fda8ff6b25", + "data": { + "inGameID": 37520 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37520, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "69c197507cafb41f3cbee1241b9f625d221ec159", + "data": { + "inGameID": 37520 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37520, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bc42ef34b034cfc670914ea6ec00509e3fa57585", + "data": { + "inGameID": 37520 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37520, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6ec60c727ee3be7a24c99b6aa0a8e4c407d0e421", + "data": { + "inGameID": 37520 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37520, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a8b1ed114908110322838b8fa53325ae37e9e46c", + "data": { + "inGameID": 37521 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37521, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c55f8506d46e0df1e9791692b8e14f9ac5bf1224", + "data": { + "inGameID": 37521 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37521, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "638fcc4358c56e7d099b7e09892689ec6bc235dd", + "data": { + "inGameID": 37521 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37521, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "571d15c1f7d1f7639e6b525c46087f6ac8bb2d00", + "data": { + "inGameID": 37521 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37521, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8aba8235cf8bf785ca6c43124a15df1ab8e6d0ee", + "data": { + "inGameID": 37521 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37521, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8be1bbcd1cbd09329a696eded4546d4be789d259", + "data": { + "inGameID": 37521 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37521, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e00c5984c5e6db80756a813bcb1fe1ae9674a8bf", + "data": { + "inGameID": 37521 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37521, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e104594de23364fafa62a45323a4b30e3ff05270", + "data": { + "inGameID": 37522 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37522, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9b6d0f19f4e06a2795b973ed68d59e82bac6ba08", + "data": { + "inGameID": 37522 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37522, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ccc3affc01af23446596da22746eb268e7da9e01", + "data": { + "inGameID": 37522 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37522, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1af7b45554f6e9c21e691cfd2c9232f5da8cdc90", + "data": { + "inGameID": 37522 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37522, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bd353068bdb22e4c63b7fe1a1011bd7b75d877d2", + "data": { + "inGameID": 37522 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37522, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5b2250928407eec99c709b23227a85a7d6f373f8", + "data": { + "inGameID": 37522 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37522, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fe54c0577a12bdad25d38ddbd3fbd526ff3d7ea7", + "data": { + "inGameID": 37522 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37522, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1061fd4068cbf6177f5df5692d5dd9b0ea2d2d10", + "data": { + "inGameID": 37523 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37523, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fd101dac6e74b6009b3f1036cb80bdcd7e53d903", + "data": { + "inGameID": 37523 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37523, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "af42d991b7038344ba900f1beaf5f5f02dbe4172", + "data": { + "inGameID": 37523 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37523, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8b3fcaf8d456f68e6aab79bfc02089c36d4fadf0", + "data": { + "inGameID": 37523 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37523, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4815dadcab08e7a7c095be1ec76f7ff5ee08fe34", + "data": { + "inGameID": 37523 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37523, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bfb2746f6d17999867a869c8a5bb9b2cf569abb9", + "data": { + "inGameID": 37523 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37523, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7dd9a50b09445859896cc97dcd4490556fb20de0", + "data": { + "inGameID": 37523 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37523, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "69630b3cf4d2cedd9fd90d5fe2e5bdb31f6fe2cf", + "data": { + "inGameID": 37524 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37524, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eb4fd10a9408130fcb941a8238e7678d009c9440", + "data": { + "inGameID": 37524 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37524, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8ac22888625265ca047d03fc49a03fa208990391", + "data": { + "inGameID": 37524 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37524, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a50e2075b5f87013401c9a39b89294a9f6892d64", + "data": { + "inGameID": 37524 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37524, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c3eab0891b51de0aa991a404f4c64657dfff3212", + "data": { + "inGameID": 37524 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37524, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fc5072969f2fdbdc7fb8df94c3ab6d3c7504f9f1", + "data": { + "inGameID": 37524 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37524, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2ce60a62c19def690d30a6172c0ac4190bbb702e", + "data": { + "inGameID": 37524 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37524, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cbab747acbdcd7992064bc9fb3616a1c8e1c604e", + "data": { + "inGameID": 37527 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37527, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d9638bec97dd2e2c5729a9d3496f071744f7f438", + "data": { + "inGameID": 37527 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37527, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eabc0e228e270a4d3cc46b1a427319f0364806a3", + "data": { + "inGameID": 37527 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37527, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "be48d9d5560a6c45c542437264ac3f39dbea807e", + "data": { + "inGameID": 37527 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37527, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b15143bb8810bce74db211bf7cfc67e06dd1a574", + "data": { + "inGameID": 37527 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37527, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "69b571dc8f8e4d1b4ffbec5c6184e986987815df", + "data": { + "inGameID": 37527 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37527, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "32f6447b14f5e30674785d998f5e987c3de4c772", + "data": { + "inGameID": 37527 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37527, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "99dbeea916c814589c8ad1b7bec13a1626b5105b", + "data": { + "inGameID": 37527 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37527, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "73f4fb139958a8c99caf41c8926da261f1f37b17", + "data": { + "inGameID": 37527 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37527, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "81043599639c8be211fdfc01b2ce56c57caba6a0", + "data": { + "inGameID": 37530 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37530, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f48c570eabf8e6c0a48fb1dbd537f19840d3e556", + "data": { + "inGameID": 37530 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 37530, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b246eccf6f25b276864509c4da5a72664823d4eb", + "data": { + "inGameID": 37530 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37530, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a8d7675a61033f71a517da2e92d60c7d0ba5d96b", + "data": { + "inGameID": 37530 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37530, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bfb6db5c1435228a4effbb33c1314ddbb032f377", + "data": { + "inGameID": 37530 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37530, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d6752db1378882f1b0fa30916985633328c1ff7d", + "data": { + "inGameID": 37530 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37530, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d8e83aaf908f89533e090adcb89381ca9c0ecda0", + "data": { + "inGameID": 37530 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 37530, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "31fc45caeeb3d32f13f2af718864a0bb5a44f756", + "data": { + "inGameID": 37530 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37530, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "06f6b71985a346f19faba86c09a2df73298d83d4", + "data": { + "inGameID": 37530 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37530, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e85c4e7fdb6eedf5c523e5e397eb0844e8c3fe8f", + "data": { + "inGameID": 37532 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37532, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "545967f49caca39ca6a00a29af58b7bd372437a2", + "data": { + "inGameID": 37532 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37532, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1aae9bbf755d9db725106201338ea67c4b1f3e83", + "data": { + "inGameID": 37532 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37532, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "57574c0373c9645079afc184a9fa8515ead4cf36", + "data": { + "inGameID": 37532 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37532, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3030393c0f3f9697874e1927690f0f6cb9fb306b", + "data": { + "inGameID": 37532 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37532, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c6115ffbadc120951a459f516c5f6a174df93864", + "data": { + "inGameID": 37532 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37532, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "85571b0c0fcb3d206903610cc3164a369e9349ad", + "data": { + "inGameID": 37532 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37532, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "59d5abd9158aea1381aec12dfc635a35372c5a49", + "data": { + "inGameID": 37537 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37537, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "035a305cd50f3638528407b0906c20819066c835", + "data": { + "inGameID": 37537 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37537, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "913864c1419c51a8b12a71b8276b528c6cc25719", + "data": { + "inGameID": 37537 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37537, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "27e21e4c9da4b5dbdf52be18dc62c35584fcf701", + "data": { + "inGameID": 37537 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37537, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "474cf6619ec365310feb5dfc39e4683a4b4c335e", + "data": { + "inGameID": 37537 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37537, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ebd08dd94dd563e75007d18eab3aa94a0aae8e6e", + "data": { + "inGameID": 37537 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37537, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9483f50fb7093e988b53c68fa175d527975f2e4a", + "data": { + "inGameID": 37537 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37537, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0da10275df87e7295b73e2ef09b2a7fcc26bc5ff", + "data": { + "inGameID": 37538 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37538, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cd727907e5cbe03f0f64f6fb1d31033f40e5013c", + "data": { + "inGameID": 37538 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37538, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "938182744c3b6e69ac00a03d87b9797ce00cc892", + "data": { + "inGameID": 37538 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37538, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a671ed4978a67a7e35e77df129859b347f20a3bd", + "data": { + "inGameID": 37538 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37538, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b2f2eace583c1c1f5aa8b58b711b95f78164049c", + "data": { + "inGameID": 37538 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37538, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c26c590dcdf5e6eb95c9da3d6948250cbca2261f", + "data": { + "inGameID": 37538 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37538, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f70deed531f8900b2ea5dfc31da2fe911f0b209", + "data": { + "inGameID": 37538 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37538, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a5febdec7499806a4d99c3209c83355355eec836", + "data": { + "inGameID": 37538 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37538, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c966ee14a8db6c0510cb8cbe1766b795cd4b7b02", + "data": { + "inGameID": 37538 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37538, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0ae03b24504d434f376d59f5c73d2b8aa56baae0", + "data": { + "inGameID": 37539 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37539, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c9eb952d00e742896f006a3f4aa7bec64024537a", + "data": { + "inGameID": 37539 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37539, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b7c9c3e515331662842dd966257e75fd869b23e1", + "data": { + "inGameID": 37539 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37539, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "02794eae55d26401447dd89d55ba7169017047b8", + "data": { + "inGameID": 37539 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37539, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ba979e5b7b598cbc83bf51a68527f06d4e39056a", + "data": { + "inGameID": 37539 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37539, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "437d578684a115a20a2a7914219bbb84f1379902", + "data": { + "inGameID": 37539 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37539, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ee4a7843f2a8829a40116947121e28ab676c3a62", + "data": { + "inGameID": 37539 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37539, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "792ab964a6b1d2c27fbf6fdec4c88f6bc32547f7", + "data": { + "inGameID": 37539 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37539, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "06db60510e3981972db65526cb93acd7f1884094", + "data": { + "inGameID": 37539 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37539, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e7641e0a57c6ca73d1e38faf7de58f47d0369ebd", + "data": { + "inGameID": 37540 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37540, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "218ad3c16afad80648f0ead01ad26b3f665f494b", + "data": { + "inGameID": 37540 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37540, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0b0721ab0b85d50b2289a0c96757ab7fa7bc79e9", + "data": { + "inGameID": 37540 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37540, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "76c8acab5d497b1a13d56290dcbf98183753a92f", + "data": { + "inGameID": 37540 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37540, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6b5bc316f70a4ce5b9be01d773067b5e40290eac", + "data": { + "inGameID": 37540 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37540, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "36045bf9f23a503512c06dc1fc0367044580afee", + "data": { + "inGameID": 37540 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37540, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6b8fd28676a1dfdc73e1a4c8697c971d5dd73eb9", + "data": { + "inGameID": 37540 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37540, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "65c50806321a6387163ab9ccf49b3a985135a704", + "data": { + "inGameID": 37541 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37541, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "52bec195f67b4e222db7aaad7ab53801a00f15f0", + "data": { + "inGameID": 37541 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37541, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "91ac1b0dc1ae67d51c29d3580136b4e892ea6473", + "data": { + "inGameID": 37541 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37541, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "97fe86021116601c349fd9c25e9e6b727eec9c26", + "data": { + "inGameID": 37541 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37541, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "af2efd18d3f264535a1758b1716a7a79cfe7c59b", + "data": { + "inGameID": 37541 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37541, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8ef18d042094e58f52502b02e71da8b160d82c16", + "data": { + "inGameID": 37541 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37541, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5e0fe6ab084b0bf86d9a61bc873c982c7a9d1f2a", + "data": { + "inGameID": 37541 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37541, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0d191cae307573b004bb68c395a1d76816919577", + "data": { + "inGameID": 37542 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37542, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ea964a9f1ee380eed845e8f938f7836427dbb8bd", + "data": { + "inGameID": 37542 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37542, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b078f5c28c214424ac732a0853e6448d0fdad76c", + "data": { + "inGameID": 37542 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37542, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ad8a7a1e3e22eecb3c92fd9c2335f48c9a04244", + "data": { + "inGameID": 37542 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37542, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ae482c3e7c70aec0380fd5d9573f9edba2560ebc", + "data": { + "inGameID": 37542 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37542, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a3b4ea4f48255b86fd4bee4753a0777e7a2dc9b3", + "data": { + "inGameID": 37542 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37542, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4c78e91aef3b0be334e080dc2b7b129f4f195e3a", + "data": { + "inGameID": 37542 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37542, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2e06a52a285296e5b460dd159bb3296c378584fa", + "data": { + "inGameID": 37543 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37543, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "37c8ba80bfe17f27fd3016547da64c51836e1733", + "data": { + "inGameID": 37543 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37543, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3ba1a77e654f65e50d157c71bfb58eaa110d7c5b", + "data": { + "inGameID": 37543 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37543, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "15aaf23f4ca6c367ee4c0dc15539644362645964", + "data": { + "inGameID": 37543 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37543, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fca9f3553659354ab4868a2874374dc6ea4a0b28", + "data": { + "inGameID": 37543 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37543, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "31c089a5ac0027a46dc1e53d1d0c2647b74aa143", + "data": { + "inGameID": 37543 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37543, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b27f3ee595a07f0e42be04edab74ce590a5fe24c", + "data": { + "inGameID": 37543 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37543, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5ca554e6fe840b443054c20982448d9ed493aa13", + "data": { + "inGameID": 37543 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37543, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a651bdd9476c4008578eca580acb6417faee4104", + "data": { + "inGameID": 37543 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37543, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0e8b6f09ec8264edca109fbc6995d11c87b9ca76", + "data": { + "inGameID": 37544 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37544, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "79982d86bd7014ebfc922d05cdba38876248929b", + "data": { + "inGameID": 37544 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37544, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9b20837637ab5759fba5e3a3c64dc6480ea94ba5", + "data": { + "inGameID": 37544 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37544, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eaf2a7c011a2be1d10517369aadc7a32504aa3a6", + "data": { + "inGameID": 37544 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37544, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7df9eedda3952b9bb6cf78f1a32672efd3b53f47", + "data": { + "inGameID": 37544 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37544, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "73a2a950a179477914ed5fd0bc3f05042020a760", + "data": { + "inGameID": 37544 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37544, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9da4e5e892996a6dd41bc673b9d0ffbbbba1a999", + "data": { + "inGameID": 37544 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37544, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "940bc5c118d239eb9851c754a82617b09cc4bbfb", + "data": { + "inGameID": 37545 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37545, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "df28c343cd95098c9590ee4260e0a76af66aceb1", + "data": { + "inGameID": 37545 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37545, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dcb4701053ca76b1e451896e6ef479672906f215", + "data": { + "inGameID": 37545 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37545, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bfd62ed71032fa3c16d93fdc6a61d2a12e7b668c", + "data": { + "inGameID": 37545 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37545, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9156740baf486b0b9073dc6602dfb35db7f63cda", + "data": { + "inGameID": 37545 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37545, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "663c2dd3cd98788b3a23aa6e26d57ffd305a3f45", + "data": { + "inGameID": 37545 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37545, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "24bfe05242751925fb75893df87ca2e11fd63da8", + "data": { + "inGameID": 37545 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37545, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d66f867e64c7e1f5ed375d4b00a9d610f669c53d", + "data": { + "inGameID": 37545 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37545, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fca2fc70293104edf6764957581087f6c6096f16", + "data": { + "inGameID": 37545 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37545, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e23f633f02c71eda3571a9288f27332fd22f4f7c", + "data": { + "inGameID": 37546 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37546, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "61a8eb1d9becd3c271ea4239d905849932f376c1", + "data": { + "inGameID": 37546 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37546, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "87929f532c45adff11524cd13f7ec03c8851a6fa", + "data": { + "inGameID": 37546 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37546, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e8aa675bed5e118209ec568411fb79ac46234c2b", + "data": { + "inGameID": 37546 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37546, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bece282d0d33d6ab67ca3ca85b504afb8385874e", + "data": { + "inGameID": 37546 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37546, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "47ac210bf73ed7c183e1a371f31e98511aab3437", + "data": { + "inGameID": 37546 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37546, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1fc1ee48bfc2379a49d308d79adf6bb4138d27c9", + "data": { + "inGameID": 37546 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37546, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "507842b1e88720f3e9590c869303fc680a1dc79a", + "data": { + "inGameID": 37551 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37551, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f49c8acf321ffb99d5c3d5e6e66eadbe2b5aba03", + "data": { + "inGameID": 37551 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37551, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5685305028a01d7edc73c17342f0df0c9307dbfe", + "data": { + "inGameID": 37551 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37551, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d9a53818d97694ee6cefe8672716fb83876c3535", + "data": { + "inGameID": 37551 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37551, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "57bcb81ae6b4b68f5ee1223f4354b4a48361a87c", + "data": { + "inGameID": 37551 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37551, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e01c4414dda08d261755d764624f3dec307b5973", + "data": { + "inGameID": 37551 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37551, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "55626147099cfe06aa242bb54a9888f692643c2b", + "data": { + "inGameID": 37551 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37551, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fc2188d327f4549801f2101676e917547d0398e4", + "data": { + "inGameID": 37562 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37562, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4eb9399f1c1d178e09d9ff06cd7e4a584262630e", + "data": { + "inGameID": 37562 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37562, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "96ed1be81b067a84703ecb2fb280333bc2093c1d", + "data": { + "inGameID": 37562 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37562, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f2f631c4579ef82df23c5e7f2bb64ce681cbe041", + "data": { + "inGameID": 37562 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37562, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6e4a7075a137c6268af1ff450d3391ecfbf532f1", + "data": { + "inGameID": 37562 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37562, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4706417634766cc091c0d562959377b2264b6bd7", + "data": { + "inGameID": 37562 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37562, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0ab778f02e33af810aa2c673b6254b34ff74c966", + "data": { + "inGameID": 37562 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37562, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "022d0f898f4164b66a76fa7bd490a7e92e2fd30a", + "data": { + "inGameID": 37563 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37563, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "460d2d6bfe9a26a8e9daf8db6509fb08fb6f254d", + "data": { + "inGameID": 37563 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37563, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f89c90a0e4601018aff000c6d1f682abd4b94b29", + "data": { + "inGameID": 37563 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37563, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "29a64ee826b40764d8c646e918420c099f654fa2", + "data": { + "inGameID": 37563 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37563, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "29524c1e0b24ae54dc4e2732f0cd427c102c6cd1", + "data": { + "inGameID": 37563 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37563, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "faa5eb1873d2414c491d6f1ad573d14766098b80", + "data": { + "inGameID": 37563 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37563, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8955d5e9f25e558586c991d4552518c52b60a035", + "data": { + "inGameID": 37563 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37563, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f029381194e0c57477dc3b0b23cb29181890ec2", + "data": { + "inGameID": 37564 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37564, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fd125bc49c4a1b90d390a4193807b39b6cee0115", + "data": { + "inGameID": 37564 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37564, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "363fc413572df270a5d0a76da7b1a06fac7c22c0", + "data": { + "inGameID": 37564 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37564, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f59c7d01aff261220337b1ed5654fde60f6a9387", + "data": { + "inGameID": 37564 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37564, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e7a313464be31bc11efedf7d9b587d60c0b7c0ef", + "data": { + "inGameID": 37564 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37564, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dd83b9dc22b2e41d87266a7a2e90c15bf2cb164d", + "data": { + "inGameID": 37564 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37564, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5fa902d7c18a5f6f43b47c200b5d0461ee4bb26b", + "data": { + "inGameID": 37564 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37564, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c0eee0144e2b053502d4cac11df60dd7e8679ec6", + "data": { + "inGameID": 37565 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37565, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b2f0cc1157a307399bfdf37125081440e35077c1", + "data": { + "inGameID": 37565 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37565, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "15e4df8d7cdd2ba14c9da4a57e59d34d4b70f48d", + "data": { + "inGameID": 37565 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37565, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c7cfdd98a44226f6363b9392a70563b0f04cb892", + "data": { + "inGameID": 37565 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37565, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "558ca31749ae857accabea173dad19a5b6f7c807", + "data": { + "inGameID": 37565 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37565, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b83fdf434d49e2d3f7e5ef04794f4c24908e640e", + "data": { + "inGameID": 37565 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37565, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ec40c1d95f3522b53e67cb01d161719f39447d45", + "data": { + "inGameID": 37565 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37565, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3c77553bc92b1f95b5684b0f4c6dd518f54fce46", + "data": { + "inGameID": 37570 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37570, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "48b0f01464143070fa7638447369b2707bf39654", + "data": { + "inGameID": 37570 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37570, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce041dd7968099538c0c3c3ca6e39f78555447c5", + "data": { + "inGameID": 37570 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37570, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3b5463dddc50d02b7efb49b80c0466bafaab0f2d", + "data": { + "inGameID": 37570 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37570, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f159c4b9b3e771c6b19267ec4325559216d28b84", + "data": { + "inGameID": 37570 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37570, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4744ee7903e8d7cae8f290cb84942aac9421e0be", + "data": { + "inGameID": 37570 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37570, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4a4bf9f845dec6e6a794a600a6c1d56cd8d32584", + "data": { + "inGameID": 37570 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37570, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "088399d5f463e94b8d77dccaabcefee1bcaded4f", + "data": { + "inGameID": 37571 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37571, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "46887768cc69bbffccafe69e91c473e0a93ce081", + "data": { + "inGameID": 37571 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37571, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2ee41cd230fb2353f24fe1f9601506abae62fa7b", + "data": { + "inGameID": 37571 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37571, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6ef5c7de1a0280f944d71ab9b798e4c091451cd2", + "data": { + "inGameID": 37571 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37571, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "953110ef160faf0fa6f83197d549d93ffdcbd330", + "data": { + "inGameID": 37571 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37571, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9bb1e7f565ea629500b431f8e6b8fa402a4bad2e", + "data": { + "inGameID": 37571 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37571, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0de567cbfe3ef70c774c98fea205a84bc5aa028b", + "data": { + "inGameID": 37571 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37571, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fe068f183e86a5ee555517aa46a4861290904e18", + "data": { + "inGameID": 37571 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37571, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ac965ec157641e3ee568ff5e79fc5d2f251c1544", + "data": { + "inGameID": 37571 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37571, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d93d372a56fe541d0fe452c31e4fb1575a5700d1", + "data": { + "inGameID": 37572 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 37572, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ee39a7e9e21812ead68377b928710be7ae56d170", + "data": { + "inGameID": 37572 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37572, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4c61972986a86d4626ee2086aeee5b90ed0f8d78", + "data": { + "inGameID": 37572 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37572, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f7eb9bbdb4d35fe10a1509b09c55a5786675370a", + "data": { + "inGameID": 37572 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37572, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "07eca677b086d397bed1dd37282631da008bcfe2", + "data": { + "inGameID": 37572 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37572, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4a5dca735e30b4272749229c4658ef9d90ca8c09", + "data": { + "inGameID": 37572 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37572, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d4831df5bb0349a20cd8cdf34423ed286f554fc1", + "data": { + "inGameID": 37572 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37572, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d89bbc2a42a68e366ef8686f55897196ce2f617c", + "data": { + "inGameID": 37584 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37584, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4967371f1118cbfc5ae383c17a0bdd1cd9616217", + "data": { + "inGameID": 37584 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37584, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "57feb6ca0adb1f112426f9531424f768deaf2ef3", + "data": { + "inGameID": 37584 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37584, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fda9241ac5bc03e2e65bc78a0fa787cb120cf7aa", + "data": { + "inGameID": 37584 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37584, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "47564e730a30224f37046025828a5a7973f1ff72", + "data": { + "inGameID": 37584 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37584, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cf5493b84039bd717d074c0e9e581f3f5c1d14d0", + "data": { + "inGameID": 37584 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37584, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9d1f626ea9c0fe5a546e48cca2884b9007d08406", + "data": { + "inGameID": 37584 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37584, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fd138db6caa00aaf8ecbeb051674f958b58fa2fe", + "data": { + "inGameID": 37584 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37584, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "29c7da63fbcd8fa4ba140e8190229099d841d738", + "data": { + "inGameID": 37584 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37584, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "91bf728a4ad1c0a4f18d5f96baa9bb4f1b5f1b4c", + "data": { + "inGameID": 37585 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37585, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "952ff8cc44ae512270b33778bfbd4c662cdcf49d", + "data": { + "inGameID": 37585 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37585, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "51237b5e37d674954430732093ea332c239247b4", + "data": { + "inGameID": 37585 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37585, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aea7ab8e18494bfce2cb1e5a208551010aacf029", + "data": { + "inGameID": 37585 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37585, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "16b1384c5112df936b5b8e0b0ed0ab13c5baffb7", + "data": { + "inGameID": 37585 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37585, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a477cc0b4b45eae00e31f821e5847afac79f14f1", + "data": { + "inGameID": 37585 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37585, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bbb8d305d83b603c178e8bb86b75a2738d165d49", + "data": { + "inGameID": 37585 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37585, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e8a8adc863ebcd010279e31217ec4568c1544060", + "data": { + "inGameID": 37585 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37585, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1f20b3e140c7b5c7f4eef41407db60f50c28b992", + "data": { + "inGameID": 37585 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37585, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0372f1135e518550966eb31d7bca82dae6eb68ff", + "data": { + "inGameID": 37586 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37586, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1bb96d829c719c94ae931fa43533df2e2f6a868a", + "data": { + "inGameID": 37586 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37586, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "44148f19168aa76f1930127982a0cba74d6c3f88", + "data": { + "inGameID": 37586 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37586, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c4a51d7a6ce71d6b97e18b206fa148c1a6d5429f", + "data": { + "inGameID": 37586 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37586, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ee292846eb4b7e8679297088e6aba6b6ab965f5b", + "data": { + "inGameID": 37586 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37586, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "12c6066602aa6a51b735ffc0b59b5ab82f780886", + "data": { + "inGameID": 37586 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37586, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e333914f71ec88b722bac7ef625fdd978bc4e804", + "data": { + "inGameID": 37586 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37586, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "432ede14d5fb88c4d971af1b5315c08afd016f12", + "data": { + "inGameID": 37587 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37587, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "57ceb11f681f7dde345621ed5eb0e45fd5e68cc1", + "data": { + "inGameID": 37587 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37587, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3c5c228a915f9ccc3230de084fc25ae775e23f2b", + "data": { + "inGameID": 37587 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37587, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "37a6e396beec88dfb784dc8fd16bcce85e971979", + "data": { + "inGameID": 37587 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37587, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "66a57f93e008df756ef1018ec89c5f266a0b3c65", + "data": { + "inGameID": 37587 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37587, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f93d6ce9f4fe022dd28bed70f9cce6840054206d", + "data": { + "inGameID": 37587 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37587, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4e371325a2eb865e2a5f47a471049a0d06df0e11", + "data": { + "inGameID": 37587 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37587, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "95392c8fb31611db54ec3e15c2112378497a3855", + "data": { + "inGameID": 37588 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37588, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "276a5d24393ce645803d9ae30b17c32e86e9dd1d", + "data": { + "inGameID": 37588 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37588, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "df43a20d0454ee86613a023e9d1e03ada8abaa4a", + "data": { + "inGameID": 37588 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37588, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "88d174a79b78e128175f3e463f8294e70f4a8038", + "data": { + "inGameID": 37588 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37588, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "072d4d9f6025801eb88e89159750c900156f4d00", + "data": { + "inGameID": 37588 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37588, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3a6942d8d7053c1c1b529a3dd1511c6024ff3604", + "data": { + "inGameID": 37588 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37588, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2a42ed9484019ce6958255fad5e4c6e95024c2b2", + "data": { + "inGameID": 37588 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37588, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "438a261b350b855f78cc7632e24828475aebea30", + "data": { + "inGameID": 37589 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37589, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "49e5c0c024bf2f19d657844b24b120f4b7a950ff", + "data": { + "inGameID": 37589 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37589, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "58a85c60692a9d8c5ddbecf5e8fa145a70bb71c5", + "data": { + "inGameID": 37589 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37589, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f18812f5fddd548d5563161064bd67287e285d13", + "data": { + "inGameID": 37589 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37589, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9a39c7b3a2ff76d4fb65dda226a910808e058643", + "data": { + "inGameID": 37589 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37589, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6b1920271574f6c22f7b278702bcac24db656d7a", + "data": { + "inGameID": 37589 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37589, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8d2406ffc03571786ebf0ff2aaad2596e2f7f834", + "data": { + "inGameID": 37589 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37589, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "09ab18b6eb7d726070a344868afbabf6365db099", + "data": { + "inGameID": 37590 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37590, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8fb8be3c34672b34600294681fb3ad4aec0bb336", + "data": { + "inGameID": 37590 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37590, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "807a060049272b39a8d3c7bea3c472680608c002", + "data": { + "inGameID": 37590 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37590, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e478ee91117e5cc09852dfd7eb3940f2906bb5e4", + "data": { + "inGameID": 37590 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37590, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5bea0ba7eccdafed4c5adf3592fbd657b3622b8d", + "data": { + "inGameID": 37590 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37590, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "58bb791688194d7762c1fdbfa870a7843af2db8f", + "data": { + "inGameID": 37590 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37590, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bfbddc35f8d5137c1cef1671c67c0581042b43c8", + "data": { + "inGameID": 37590 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37590, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1650608b304f15ed3bd209f646baa5837080be29", + "data": { + "inGameID": 37595 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37595, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce9cdc98412e1785fb88eee06544f474ce2d514d", + "data": { + "inGameID": 37595 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37595, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "118eceed66a0c33ed441f6f7a62f2b2e8ac14bca", + "data": { + "inGameID": 37595 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37595, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fd5fffeb0f040a9e3232d5333adbc8a861390ad3", + "data": { + "inGameID": 37595 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37595, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "667b8109203498cb106fbb250935f0b0ea5e4c49", + "data": { + "inGameID": 37595 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37595, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "30f729cebe8c08c968169900b7e5649f781274c0", + "data": { + "inGameID": 37595 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37595, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9a12563e858535f1a234a62434f2ee53ac2508cd", + "data": { + "inGameID": 37595 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37595, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff6d3a07b37b8fee7fa2b0621a957767e5222651", + "data": { + "inGameID": 37595 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37595, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "45fc4905457c57a63d56394549a058c7093e4a4c", + "data": { + "inGameID": 37595 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37595, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fde803a23752467449840306acfb298aced49381", + "data": { + "inGameID": 37596 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37596, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "df9b9e629eb27c39bf934cdd1e71f7e47aec03ec", + "data": { + "inGameID": 37596 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37596, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a4cc1cf5860bfc8d10ee9513e025de3e5e97037a", + "data": { + "inGameID": 37596 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37596, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "004013740bb244ebcc1e7ff2c3c83a9ac87058cd", + "data": { + "inGameID": 37596 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37596, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d0f057050bd22d4870cc8b4a2d733b8d490db574", + "data": { + "inGameID": 37596 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37596, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0c426bfcb16b49597b10cc85ccf23d93a7eb47f5", + "data": { + "inGameID": 37596 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37596, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0980e741e9887cbbd2ca3ebe3a7c18ad17014d87", + "data": { + "inGameID": 37596 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37596, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "96b9c8908b44f33fef89b6cd51c4fbea37145a7a", + "data": { + "inGameID": 37597 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37597, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f5f4af05360471063ee091b2060a6e177571aaf5", + "data": { + "inGameID": 37597 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37597, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9d80091b113d669ec1d6b43e8b263234b0bf9c6e", + "data": { + "inGameID": 37597 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37597, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f048e246a550bf693e51d2ac6d8c6b18d4deb0fc", + "data": { + "inGameID": 37597 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37597, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e0bb26655a08a864b2398f3dd9101fa3a264f2f3", + "data": { + "inGameID": 37597 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37597, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f02fac5dc14d9abcdbc39a02d0fd8edf81453370", + "data": { + "inGameID": 37597 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37597, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b7963c4eef44b31ec430978c17bd914a15e5d908", + "data": { + "inGameID": 37597 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37597, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2af66ca8840ef4b1c2fcaa9a93968f6eb9f14db4", + "data": { + "inGameID": 37599 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37599, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "85cc55643145f53738e8679de6b05c7c84b53805", + "data": { + "inGameID": 37599 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37599, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f9fd989b047ca8b5f6072985f98e6f8e32608766", + "data": { + "inGameID": 37599 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37599, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c85f06a13a8ec8455ce7909af5e46383a00d6037", + "data": { + "inGameID": 37599 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37599, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9e0b1e2ab37da4259799eaad3e2669e2231aadfd", + "data": { + "inGameID": 37599 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37599, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5dc7008f657f718c2f1a4953faec586baaae0061", + "data": { + "inGameID": 37599 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37599, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b20d296b9d50b729c480a420cd3158a92d846cb6", + "data": { + "inGameID": 37599 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37599, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "15240d5b75cad0b3a9972fa0ecebc77f0e717a65", + "data": { + "inGameID": 37600 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37600, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4cbbc85c0c053aefc8122ffc748c4665fea1986a", + "data": { + "inGameID": 37600 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37600, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "16c311446239ea91547b2b1bf328bf233a38294c", + "data": { + "inGameID": 37600 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37600, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d55a5a55715c1c98f21e98146a6a8ff33ba6bbb7", + "data": { + "inGameID": 37600 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37600, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f313b58bd8cfa6f3856d147455cffc60a8bcd26c", + "data": { + "inGameID": 37600 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37600, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff2db1d05fc5ecfc6a846da644a974ae492974ba", + "data": { + "inGameID": 37600 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37600, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8ba94091038100db5d750280aec8d67e7b692799", + "data": { + "inGameID": 37600 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37600, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6f14ee9ef5ba9b135933cf8984eb94d5f3ff8878", + "data": { + "inGameID": 37601 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37601, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d7484f69b982a54fdc1ea2def171cb4d3f6045aa", + "data": { + "inGameID": 37601 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37601, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "331d4c6e3ada1d4a2f992befd485d46fbdbdc60b", + "data": { + "inGameID": 37601 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37601, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b80a9098f40b8066e1737ece44f38cf2c4dc4274", + "data": { + "inGameID": 37601 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37601, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8fc51f3e18ad5e718a48045c3ab7f84051852a82", + "data": { + "inGameID": 37601 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37601, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e36b5b2d244908bde08f9f7846b24a03f52ce819", + "data": { + "inGameID": 37601 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37601, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "73f2822fcb07680da3f0ad62e5bc74341651d1df", + "data": { + "inGameID": 37601 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37601, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "491e90b540152ec02a6fb97eea6f9280bfc02c1a", + "data": { + "inGameID": 37602 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37602, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cb632d6de29d414e68d0a042e28c1e02ca7d8ec5", + "data": { + "inGameID": 37602 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37602, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "53dd911c8e121983eb0acce7c731b61ed6053134", + "data": { + "inGameID": 37602 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37602, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bcb5926e4aaa0af9f6268b2cdda51009b205a2b2", + "data": { + "inGameID": 37602 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37602, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "227ddc5d9cf345e67b2c5a3007f838d8934ece2e", + "data": { + "inGameID": 37602 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37602, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c6ce79ea1b38508ce65fd5f3581348ea115e9932", + "data": { + "inGameID": 37602 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37602, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0e9008fae51eb07c0fdc5b5592540d1c1a8d0421", + "data": { + "inGameID": 37602 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37602, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4859092763e6383aa0486cd70a98fd58521cfe81", + "data": { + "inGameID": 37607 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 37607, + "versions": [ + "konaste" + ] + }, + { + "chartID": "2f2f805407e48bc7623031c9339feca1d0025817", + "data": { + "inGameID": 37607 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37607, + "versions": [ + "konaste" + ] + }, + { + "chartID": "acaf3751b20b200c91c44daf001edfa2d55b7be0", + "data": { + "inGameID": 37607 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37607, + "versions": [ + "konaste" + ] + }, + { + "chartID": "930d5ac643c86ef095943a531e30540d9616d87f", + "data": { + "inGameID": 37607 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37607, + "versions": [ + "konaste" + ] + }, + { + "chartID": "5a919dfe706a8b34e18475754072f52090f86e1c", + "data": { + "inGameID": 37607 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37607, + "versions": [ + "konaste" + ] + }, + { + "chartID": "49fb4e267f66e901a87e22d1cdf2262c8b57c177", + "data": { + "inGameID": 37607 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 37607, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f035a5274f1f040890538a134bd93a8c24079c69", + "data": { + "inGameID": 37607 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37607, + "versions": [ + "konaste" + ] + }, + { + "chartID": "b74ca5c067deaee890ebc031fb951e21e86bd450", + "data": { + "inGameID": 37607 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37607, + "versions": [ + "konaste" + ] + }, + { + "chartID": "0ab779da475e36890f7a8e4c86928d0b50e8aaa6", + "data": { + "inGameID": 37607 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37607, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f843a2174b2677a3e8e5e239dc13e401b98eca52", + "data": { + "inGameID": 37608 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37608, + "versions": [ + "konaste" + ] + }, + { + "chartID": "6bec16142f90fc0d35d456a28c84b60ea6bd61cd", + "data": { + "inGameID": 37608 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37608, + "versions": [ + "konaste" + ] + }, + { + "chartID": "7d3fd1b53aeb3e06917c241b32d198edd336c943", + "data": { + "inGameID": 37608 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37608, + "versions": [ + "konaste" + ] + }, + { + "chartID": "9d8737035baa49ed7407beeb81900fe0a21fdcef", + "data": { + "inGameID": 37608 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37608, + "versions": [ + "konaste" + ] + }, + { + "chartID": "589deb433c43d2fec2a2f5766d0984a5f6a136a4", + "data": { + "inGameID": 37608 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 37608, + "versions": [ + "konaste" + ] + }, + { + "chartID": "1a1eb1f9df9979226bcb17f79288a95604430036", + "data": { + "inGameID": 37608 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37608, + "versions": [ + "konaste" + ] + }, + { + "chartID": "91d24f7dc7fccb46e04701c11b7d902a699609e7", + "data": { + "inGameID": 37608 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37608, + "versions": [ + "konaste" + ] + }, + { + "chartID": "21f47f01b61d4093e33c385e9f3010c44d951dbd", + "data": { + "inGameID": 37609 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37609, + "versions": [ + "konaste" + ] + }, + { + "chartID": "d7b948f221bf5766ca45fcb274239018953c0929", + "data": { + "inGameID": 37609 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37609, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f8292db2fe8469307de9629d69ec6511442dcd54", + "data": { + "inGameID": 37609 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37609, + "versions": [ + "konaste" + ] + }, + { + "chartID": "778bdea9434f18872ccd601420688dca11c7b148", + "data": { + "inGameID": 37609 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37609, + "versions": [ + "konaste" + ] + }, + { + "chartID": "0a4d4759c75c6690cf6ac9c68e404ac0c9670e9c", + "data": { + "inGameID": 37609 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 37609, + "versions": [ + "konaste" + ] + }, + { + "chartID": "ee02cd6c08b5393d5c90395247672f51e894f7ac", + "data": { + "inGameID": 37609 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37609, + "versions": [ + "konaste" + ] + }, + { + "chartID": "840b39762161562f87f15fcbb340f400d704691a", + "data": { + "inGameID": 37609 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37609, + "versions": [ + "konaste" + ] + }, + { + "chartID": "80be802269e8679c8da21763cbac9e8980c71a0d", + "data": { + "inGameID": 37613 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37613, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "576b8eae36af99945271d607b9d70f7690c0f332", + "data": { + "inGameID": 37613 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37613, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f1f4a5e7b093102e6293a3cac27163ae6287fcc", + "data": { + "inGameID": 37613 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37613, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e70a1cca784a8b189524412749895bf5959b06d5", + "data": { + "inGameID": 37613 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37613, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "84beacd2e2a6db64d5605a3cfc07ffd645468b18", + "data": { + "inGameID": 37613 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37613, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4df3b2ec5e901d66fbe1b4f085cf72b15f76c3ad", + "data": { + "inGameID": 37613 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37613, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0230afbe96897b71b992be90c714d76b52222b34", + "data": { + "inGameID": 37613 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37613, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "11769d86446fc9ce283b0fbe925af49336c2e0d7", + "data": { + "inGameID": 37613 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37613, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "679affb22e3157fdcc445ef311e48efcd46e83b8", + "data": { + "inGameID": 37613 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37613, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "53d3485af95f629c3ced551b0118b2a32cba1a01", + "data": { + "inGameID": 37614 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37614, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7ff1ef62dad90e990922cad92a7b222fe3040522", + "data": { + "inGameID": 37614 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37614, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a215fa5cdb07dd1894745af33b926695cd9ed00d", + "data": { + "inGameID": 37614 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37614, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "48083e7de8831c23dbf0a90f158af5d8ba613b93", + "data": { + "inGameID": 37614 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37614, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a7360f542011847007d10a318d7b02875eb73f0d", + "data": { + "inGameID": 37614 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37614, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "50be303b896b71bea4d644d0b09e0a3b327a6d14", + "data": { + "inGameID": 37614 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37614, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3c68942d14bd05fe5a478f872a46ab005b56d878", + "data": { + "inGameID": 37614 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37614, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e426fd13c63694ffac2de956b729f24453bb964a", + "data": { + "inGameID": 37615 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37615, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aaed8fc07f53f37224ce3cc7d5671e648fcb271d", + "data": { + "inGameID": 37615 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37615, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "404421ff27a7eb8ff844ed9f8686de51c3a7275b", + "data": { + "inGameID": 37615 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37615, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4a61a01d334c8b1f74f8d0881b8ef8afaed80300", + "data": { + "inGameID": 37615 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37615, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d2fab6b29470b67cbbaa0b5f57d58caa85e9bdfa", + "data": { + "inGameID": 37615 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37615, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4279248c3bdd671b312a84014062a18fd96aed11", + "data": { + "inGameID": 37615 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37615, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "19100f44a4d15a501892569258b697a2a2454b14", + "data": { + "inGameID": 37615 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37615, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "47fab92be76ed6499180ee64654055b24bb61154", + "data": { + "inGameID": 37615 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37615, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ed78db592c1c478af71cd4b6d2627c27ef85c474", + "data": { + "inGameID": 37615 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37615, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "417722358551ab6ca5631990a56151d179c96719", + "data": { + "inGameID": 37616 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37616, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e123bd2f4ede1b136c191289ccdf0a57df1b33e7", + "data": { + "inGameID": 37616 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37616, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e12807cb4aa1ede9415a3845132584fc97c4bb72", + "data": { + "inGameID": 37616 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37616, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "42ad97b8adaa9d8478cc10edd43de1424536b8cd", + "data": { + "inGameID": 37616 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37616, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eb34190650249bbbcd93bb004ae307ef496b989a", + "data": { + "inGameID": 37616 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37616, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5e2c182b1885cf2520cb57238eeb7389034607d0", + "data": { + "inGameID": 37616 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37616, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bb55ab09b8601a89168776d460394255eefafa69", + "data": { + "inGameID": 37616 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37616, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ec5c80101f44d77f86b038503669bed10780d961", + "data": { + "inGameID": 37617 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37617, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0a6e85ea16e360fbe96bd23818db688263cd0816", + "data": { + "inGameID": 37617 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37617, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3a18a80a2c62768c820ffe8973e2d50ac30b34ca", + "data": { + "inGameID": 37617 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37617, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7183cc3e6de542ee0e7e44339fdc1865aad02e7b", + "data": { + "inGameID": 37617 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37617, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1d3bd6460e9036e1efd858a7563743daab4152ad", + "data": { + "inGameID": 37617 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37617, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "46d23cc469cae8d1da0fe3bc7e908356b93a1c41", + "data": { + "inGameID": 37617 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37617, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "806e11bff1a2e0a0a14760f22ee831c77e3703c1", + "data": { + "inGameID": 37617 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37617, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "74919ec06a51ff98bbd0ef0f7ff72c13622ee680", + "data": { + "inGameID": 37618 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37618, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "091963cde098dee53b2fe863cd80f7f1695d672e", + "data": { + "inGameID": 37618 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37618, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c90e59956bf7d6b37c7f3d6fc757106f4f4291f8", + "data": { + "inGameID": 37618 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37618, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c249d1a1b1b71e395920f886866d50988e3be942", + "data": { + "inGameID": 37618 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37618, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "db3e9bfd4ec613f4fbacdf7cdee47c82a0ead67b", + "data": { + "inGameID": 37618 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37618, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "80ea442f2b6a0faef5e6089d31a2c8390ec25da1", + "data": { + "inGameID": 37618 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37618, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a4162a1512ece8e52d505749fc469cbe21ed0a44", + "data": { + "inGameID": 37618 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37618, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c37770d6d247cbfca955793dbfc5a0555209dad7", + "data": { + "inGameID": 37618 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37618, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4bad833c31356f6afc6b8f2c37512c49eb5bd43d", + "data": { + "inGameID": 37618 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37618, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8c3f69250aed618549c407caa1078fd8fafc6d40", + "data": { + "inGameID": 37623 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37623, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5b4aab12965173bd59dbb3e4334bccbdb4ee4583", + "data": { + "inGameID": 37623 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37623, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f14e8f99ebd9e8f58a92364e4ec1645875e4783f", + "data": { + "inGameID": 37623 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37623, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6fefdb22f05b2fe9b51b033a3c9f4d33975bea84", + "data": { + "inGameID": 37623 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37623, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "13d540ef249dd75eed8396b1dbe7e4662722ce42", + "data": { + "inGameID": 37623 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37623, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9633019f6511d61caf65f8a1ef4f2ec45e3ea999", + "data": { + "inGameID": 37623 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37623, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "21b785cb7596a9b418f0a962a3b291c081132b95", + "data": { + "inGameID": 37623 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37623, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5986e9b44ce7bbc1a8c1e6ddf5b719ef03b1fa30", + "data": { + "inGameID": 37623 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37623, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "53c285ddd6141659c57ab1dcf39ca2a2644438bc", + "data": { + "inGameID": 37623 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37623, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fa2686d2c2ba490039048d658c9f7581582868b0", + "data": { + "inGameID": 37630 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37630, + "versions": [ + "konaste" + ] + }, + { + "chartID": "97bd00c1fffb59b2d69b07792584987cd7836187", + "data": { + "inGameID": 37630 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37630, + "versions": [ + "konaste" + ] + }, + { + "chartID": "41382362fed345e02118fffbee4d3ebc619b2a0a", + "data": { + "inGameID": 37630 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37630, + "versions": [ + "konaste" + ] + }, + { + "chartID": "ce4800ba726ac7d20b73a7e9fd565170e5fc3c5f", + "data": { + "inGameID": 37630 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37630, + "versions": [ + "konaste" + ] + }, + { + "chartID": "60ba0526b200e43ed7920eed9fb647530f33d27e", + "data": { + "inGameID": 37630 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 37630, + "versions": [ + "konaste" + ] + }, + { + "chartID": "e3ed8d4a1d3fb243887aaf5b67db70688609962c", + "data": { + "inGameID": 37630 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37630, + "versions": [ + "konaste" + ] + }, + { + "chartID": "6d09bf72a68e91038afa8de44059cd5e1e29c82d", + "data": { + "inGameID": 37630 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37630, + "versions": [ + "konaste" + ] + }, + { + "chartID": "89fe48839673579d316b0a6f0382692ae2748ae2", + "data": { + "inGameID": 37638 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37638, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8e215a86116f025ca18af76d2b09e99e9157a6bb", + "data": { + "inGameID": 37638 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37638, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a6de25c49cf56776d5c0b714598ba2010f733044", + "data": { + "inGameID": 37638 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37638, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "21872c25a0f8ed1ca495dd36c1f58529122d74b5", + "data": { + "inGameID": 37638 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37638, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f27f4363a4416a4d0ac1e771741bf1af451c10c8", + "data": { + "inGameID": 37638 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37638, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ccba51ee05225b70885838dfe2a0fa317ef7643d", + "data": { + "inGameID": 37638 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37638, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5f23ab39b938177a21ece0dac44f8d6f7267f329", + "data": { + "inGameID": 37638 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37638, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bc4c3aa9d90d7c59d28262a50b8ed27783161546", + "data": { + "inGameID": 37639 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37639, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "88227e9cabce96311341587c87108e90f6e8147e", + "data": { + "inGameID": 37639 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37639, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8c4b513ada331442eacd25424d9686b41136eb0a", + "data": { + "inGameID": 37639 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37639, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aa8ef1fcfb376963c664a1ec19a86222e1ccd36a", + "data": { + "inGameID": 37639 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37639, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b20d061dea3df288a7763acdbdb99b6145a10ff6", + "data": { + "inGameID": 37639 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37639, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7fe74537c0d226ef8bf3430c6d4e7e6dd7a1b129", + "data": { + "inGameID": 37639 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37639, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4653d11562900770098d21d2e8a5af1dc2cb9a8e", + "data": { + "inGameID": 37639 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37639, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "463daf1eaf6f9c0f37adfbd6d62058b713089647", + "data": { + "inGameID": 37640 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37640, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "76551772bdffd79465429c74ae33e9fbeaf9c0e3", + "data": { + "inGameID": 37640 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37640, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "96c4b8b50ba42ddc440dda4bcd3a869825ce343c", + "data": { + "inGameID": 37640 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37640, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "19ca108a07aa84a6fbfd332e3cab70a5bfcc400a", + "data": { + "inGameID": 37640 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37640, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "973f33ed362ee5ecdf76134e7ae4ca292227379c", + "data": { + "inGameID": 37640 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37640, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9c00f978d8128695614511bf2b1cf64a789a9870", + "data": { + "inGameID": 37640 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37640, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "47ab89de81700ce5aad44464b05e8d0bb9c7e592", + "data": { + "inGameID": 37640 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37640, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "68e84c2dd264a18743cac14ed1b2c6301aa0d0b8", + "data": { + "inGameID": 37640 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37640, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e9d6cd6a03a5e17e59d741b3f3b0e9c9d9249683", + "data": { + "inGameID": 37640 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37640, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "259db9738c6ba5e145858dd6ba2b5d42eea492a0", + "data": { + "inGameID": 37641 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37641, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0eacede4dbcfdfbd9b1b50d0fb8504a86fb73cbc", + "data": { + "inGameID": 37641 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37641, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "790b12ccd8999667b4fe2c6b1106e087fcf02dae", + "data": { + "inGameID": 37641 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37641, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ecea4b45713698feb692c70c7f56ca8c1598bc02", + "data": { + "inGameID": 37641 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37641, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e998f4715086741c70de89cb0960897415f35047", + "data": { + "inGameID": 37641 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37641, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "71507404a2eee5ee94ac6dcba8bf4b24e6924c4a", + "data": { + "inGameID": 37641 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37641, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4cb4eac29aa4e00464839caf8846793bd9f0a533", + "data": { + "inGameID": 37641 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37641, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "40efe387288da163f8914f6cb11ed5d4481409bd", + "data": { + "inGameID": 37642 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37642, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7966ea6898747ee7fcfcd4017a78af746bcb084f", + "data": { + "inGameID": 37642 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37642, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "95a6db9b692e075ef799f6ec2bc6edb32f6a3a69", + "data": { + "inGameID": 37642 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37642, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "177e0dc90522c2e3007c2ce47e2ba07986af75ae", + "data": { + "inGameID": 37642 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37642, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dc07cc232d8a25e0ff33c11bcb4b032b8e5b766a", + "data": { + "inGameID": 37642 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37642, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "04bf787756d823cd477825b5d5390db27c93d0bc", + "data": { + "inGameID": 37642 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37642, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6c27739ed4491eac92fc81e8f6cd7eecdaaf317e", + "data": { + "inGameID": 37642 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37642, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8b8a928a5154199eb7802d5570506d37756ad556", + "data": { + "inGameID": 37643 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37643, + "versions": [ + "a3" + ] + }, + { + "chartID": "4d3bb8470c3af97b78f7317597bbf5893cc9942f", + "data": { + "inGameID": 37643 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37643, + "versions": [ + "a3" + ] + }, + { + "chartID": "47b1e471afb02109618b84afa0c2c1adeb6538f5", + "data": { + "inGameID": 37643 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37643, + "versions": [ + "a3" + ] + }, + { + "chartID": "a4db362651115585de4fbed6860abe6c2f1d87db", + "data": { + "inGameID": 37643 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37643, + "versions": [ + "a3" + ] + }, + { + "chartID": "608bfbc3232736456f544f52a2f10ce45c03698b", + "data": { + "inGameID": 37643 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37643, + "versions": [ + "a3" + ] + }, + { + "chartID": "a6ebdfed1f338dc1c34a8a80d75f01f3e7325e60", + "data": { + "inGameID": 37643 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37643, + "versions": [ + "a3" + ] + }, + { + "chartID": "3a6c44c8331768de2c2e5be9c2601ab69e485475", + "data": { + "inGameID": 37643 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37643, + "versions": [ + "a3" + ] + }, + { + "chartID": "97f8675dda3b23cbba2a21feefc801f5f6d9204e", + "data": { + "inGameID": 37643 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37643, + "versions": [ + "a3" + ] + }, + { + "chartID": "53db26b05e2e950c3d98f6e2df5f9ae2981953f3", + "data": { + "inGameID": 37643 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37643, + "versions": [ + "a3" + ] + }, + { + "chartID": "0d91558545314a1702e1ab0ba85314514a7ca98b", + "data": { + "inGameID": 37644 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37644, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e73145db944a5cca0d53546ee0792beacf59d986", + "data": { + "inGameID": 37644 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37644, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4501d4f0075216a41d928ab895e3e59593d94470", + "data": { + "inGameID": 37644 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37644, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a896de44ef05b63500e46a82706b55c2163350ff", + "data": { + "inGameID": 37644 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37644, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "19c991990e354fc005e2b39d75fdf3fe7585582d", + "data": { + "inGameID": 37644 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37644, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5578a11bceccb76318821e92747526936cd0702c", + "data": { + "inGameID": 37644 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37644, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "560522cbb198d3de10b7ceef36f1f65f699e9096", + "data": { + "inGameID": 37644 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37644, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "168fafd894e7b9f6ee09c82baf187071b80b648e", + "data": { + "inGameID": 37644 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37644, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5dde4776b9400fc65eacea9374962a538efecb69", + "data": { + "inGameID": 37644 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37644, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f3a180570d2e72dc99474451f8301547b778bdec", + "data": { + "inGameID": 37645 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37645, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3febd69ee880bd9ee764c479bad1407f04af92ff", + "data": { + "inGameID": 37645 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37645, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2170cbc813b49d7ce64a80d5ede86361e0a3af00", + "data": { + "inGameID": 37645 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37645, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c8bf56eaaa1244d96dabd1fc29d06f3353ce2e0c", + "data": { + "inGameID": 37645 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37645, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8edb8a6bc3b86854559d5185d898b3024cc1aa15", + "data": { + "inGameID": 37645 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37645, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bc6f6c0ecb1e0343d97480790381c51fab8d0cfe", + "data": { + "inGameID": 37645 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37645, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3a75343b37f11d20269ae02c3d70e055b7678ab1", + "data": { + "inGameID": 37645 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37645, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2c1199699cff5aac47b69c142a8fc1d4ccc3f632", + "data": { + "inGameID": 37645 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37645, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2fe19d7f4252a02ced2ca8e95b40847796f64f81", + "data": { + "inGameID": 37645 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37645, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "87eab914495933e81124a5c1c759bd2a1f880c64", + "data": { + "inGameID": 37646 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37646, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fe7a60d0688e0194bfc615ffb0a3d8ad0fc794a8", + "data": { + "inGameID": 37646 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37646, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a99ba53408f3a4e7d2a7a8023dad43c3233c99ef", + "data": { + "inGameID": 37646 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37646, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "198207edde893929cf4cfd1270cf83212b133896", + "data": { + "inGameID": 37646 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37646, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "427e0f9da4b86c0b83e4183b20dad96f8133462d", + "data": { + "inGameID": 37646 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37646, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b20da7ef1d87dbd361a55dced89f7fddd60db2fd", + "data": { + "inGameID": 37646 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37646, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8ebcf2b1f6080ae4366098be1820298aae975d5f", + "data": { + "inGameID": 37646 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37646, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1a20b1987e515154396c91d5b5a6c07826240aa5", + "data": { + "inGameID": 37647 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37647, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "815dffbcf0eb8692fb0f6413d5c05bf3a1aae9d6", + "data": { + "inGameID": 37647 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37647, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "04c81576ceacf2d23105f30524739c820825cfd4", + "data": { + "inGameID": 37647 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37647, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7c429f1425548660a62a657165f27ce64c4622a7", + "data": { + "inGameID": 37647 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37647, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3b9c141235bac2d6205cfd0ae0b14aa7be4bb1b2", + "data": { + "inGameID": 37647 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37647, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e048147bff2f6a5fbad05b3be58d0ee48ad9db5d", + "data": { + "inGameID": 37647 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37647, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4dca5ad5e0160608b74c58383c8ee279b70fe462", + "data": { + "inGameID": 37647 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37647, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1d8956ee20df6f54d533328fde1fe604be81690e", + "data": { + "inGameID": 37648 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37648, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "14eb58949906e25bd3a2a4d13f19dac6dd06ccd6", + "data": { + "inGameID": 37648 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37648, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8b92e93baa17da278e467d9a0c7bcf988cc52ee2", + "data": { + "inGameID": 37648 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37648, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "66d1723db7bb60dcfe770a6f96c83ea66ea1fadf", + "data": { + "inGameID": 37648 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37648, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b5461d03d219d139f4856e340315010498cdbeac", + "data": { + "inGameID": 37648 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37648, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "298b6bacdffc5ada5a01b9f8af10deab7bb93784", + "data": { + "inGameID": 37648 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37648, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "65fe5d17df6519573712b10ab93e9a135df359ba", + "data": { + "inGameID": 37648 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37648, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6bce6028dccd8b816ea9dd76810d71920e0149c8", + "data": { + "inGameID": 37649 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37649, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a9d2bd046c87d8fb2d43082042dc0f259727e64e", + "data": { + "inGameID": 37649 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "19", + "levelNum": 19, + "playtype": "DP", + "songID": 37649, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2526f957889fa240484eae713e1f4f7e78a7e0ed", + "data": { + "inGameID": 37649 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37649, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ba1a5d4b2c9c9d759a4378efed33b2d4696dd105", + "data": { + "inGameID": 37649 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 37649, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "98d2b07b6058ec0ee900fa77e5d393479fe3cada", + "data": { + "inGameID": 37649 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37649, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ab3f47f07f0d2df1f1ad762a2fc0c7884cd5f89d", + "data": { + "inGameID": 37649 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37649, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5f7e6e767fc3ee667723d639d1bf27e12337b8d7", + "data": { + "inGameID": 37649 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37649, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3e6e8cb79d6113d124df430ace1ebefbe3bf4df9", + "data": { + "inGameID": 37649 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37649, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3abe10c16125d6f72e32c9b7a54996fb7cdf6cf4", + "data": { + "inGameID": 37649 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 37649, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "36b55ca5dbc4e0cb40a418f0e8ba6a0175455ba0", + "data": { + "inGameID": 37650 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37650, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "508116de432f770693fc223177689b542937be0e", + "data": { + "inGameID": 37650 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37650, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "43ebf073a281409848909ddd151823d889cdb992", + "data": { + "inGameID": 37650 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37650, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aa3ece704d138620e63b74e404aa5ce550086d4a", + "data": { + "inGameID": 37650 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37650, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8a8f9e13e7170c83fb5f7e14ce43ecc0891a916b", + "data": { + "inGameID": 37650 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37650, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cd0b6c19646c8d79f7b68b9a191a408c2ec5bb91", + "data": { + "inGameID": 37650 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37650, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0d7a91bd87a03dafb3749fe592938514f47378ec", + "data": { + "inGameID": 37650 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37650, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ace01d626a1fee40229d467d2b5bb9b479bea9b2", + "data": { + "inGameID": 37651 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37651, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "186f1a43c5bf54b858e1877c7adc379d8e93703e", + "data": { + "inGameID": 37651 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37651, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f557f645d47424ee658c50af0c65539768691650", + "data": { + "inGameID": 37651 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37651, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "948ea68363413648d132c9c1c153bc1837febecc", + "data": { + "inGameID": 37651 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 37651, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d00ce6c9f9d774ff64f5b92230665a8c02aa7782", + "data": { + "inGameID": 37651 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37651, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fc4bf41a9c65f0482e85f74d32a02a44ee210b84", + "data": { + "inGameID": 37651 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37651, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "325f7b1504f46f9e340d1ac1bf0360b2ca017a37", + "data": { + "inGameID": 37651 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37651, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7285e18b307a62541a1e7b83ed2ea2670288c8db", + "data": { + "inGameID": 37651 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37651, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "01d34d8a78c913b172be039d9d2c3f9608230b46", + "data": { + "inGameID": 37651 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 37651, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "38cd4bc6219ba73ecfa00327f5f0731276d50905", + "data": { + "inGameID": 37652 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37652, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a46a5f39a352b4cbe4ecf40c29985a35dbecf102", + "data": { + "inGameID": 37652 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37652, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1383a9c9981c995e67594e9d93b6c0833012666b", + "data": { + "inGameID": 37652 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37652, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d9a798540ec585ad9a32f7bd9d89bc0a9fbcfcfa", + "data": { + "inGameID": 37652 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37652, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b9944775cba2efa7840d9b3291bbd5f4ee793884", + "data": { + "inGameID": 37652 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37652, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bd7e7948475fb2ba9739b23e0a440d45eb587298", + "data": { + "inGameID": 37652 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37652, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fa20f5a81c236e3a31a2f83a7eae8d5becc2a600", + "data": { + "inGameID": 37652 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37652, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0cd3e904cbaf81dc9e4f0a7255a3e8edff116e06", + "data": { + "inGameID": 37653 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37653, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d2f166ee684a11e451e730d76ee4609341cf8cc5", + "data": { + "inGameID": 37653 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37653, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0d3a9f55bacc533871200e876c5dcecefa156fef", + "data": { + "inGameID": 37653 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37653, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e3cf87cda7afaa47eddc523bb10fb34114aca2db", + "data": { + "inGameID": 37653 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37653, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f1b9b3b4c6cac7c206da9b4c3b7a8652c9b539ac", + "data": { + "inGameID": 37653 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37653, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f08a8d88e0db0b3a4dff5b50b1a336701f9e371f", + "data": { + "inGameID": 37653 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37653, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "171db6c7f2cd362b886f73527b554e2c04624ed8", + "data": { + "inGameID": 37653 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37653, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a04e026512e174a0840f586ca919d51b6c6da208", + "data": { + "inGameID": 37654 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37654, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "22fc893d5e2b8d8804f9414f6d25041341d2f5b3", + "data": { + "inGameID": 37654 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37654, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "337c9cae2535bb29691b0953da4f3a2577f112bb", + "data": { + "inGameID": 37654 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37654, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5327401b648d533278aaf154852e7ce7947a3adc", + "data": { + "inGameID": 37654 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37654, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "155b829c20b16587133fd1acbbc56c7eb13456f3", + "data": { + "inGameID": 37654 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37654, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8e9a81822da8c64af3f785e5815c623b12f9acb", + "data": { + "inGameID": 37654 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37654, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "39a88319763e06d11679eebec4517c2e5f550b00", + "data": { + "inGameID": 37654 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37654, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a3939581929afb26f8566c1be727f5df845b35fe", + "data": { + "inGameID": 37655 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37655, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ced40cca49e7204869ebdb04dd4af377f63cc883", + "data": { + "inGameID": 37655 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37655, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fa387b4c71cbe0c03d8c6ddd297fe4ee571d6d9e", + "data": { + "inGameID": 37655 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37655, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3f774455a1a6cadf9a2bb73a4dbc85441a2555d6", + "data": { + "inGameID": 37655 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37655, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "362e17139b1c653ddd960400357b9f801cfee254", + "data": { + "inGameID": 37655 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37655, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "91532c85004f08fd2bbba1b7e28012634a532982", + "data": { + "inGameID": 37655 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37655, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "91f57e5c4e3298cc328d0cefc0a20e437c62c183", + "data": { + "inGameID": 37655 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37655, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "124602bccffd46f3cfc2d009a045ef5482ff053f", + "data": { + "inGameID": 37655 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37655, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c2c4f1b2c263394b96826fb202e702286001c158", + "data": { + "inGameID": 37655 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37655, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b7c32eb0332843b2e3af49c8e3801ee3930aff5b", + "data": { + "inGameID": 37657 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37657, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b79378a9f8cfdf971a2cc35b364890ce235068cc", + "data": { + "inGameID": 37657 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37657, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4c92a3320b8c221b92d1e5a833f5b29d1c7f7f81", + "data": { + "inGameID": 37657 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37657, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "10e3f850f45fc3cb8bb386386470aa9738ada029", + "data": { + "inGameID": 37657 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37657, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "33cc6b28c9af975e9db2a2fe818b077dcf5a2c71", + "data": { + "inGameID": 37657 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37657, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7a83c824309871885c76c1fee88c042326c1dc29", + "data": { + "inGameID": 37657 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37657, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f125e4ca86000a55c90e259b9b810a8821d4735e", + "data": { + "inGameID": 37657 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37657, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "943d5bd6153050c2f605a2815bd0c3c85612a78a", + "data": { + "inGameID": 37659 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37659, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "246a30b4d8306261758976fdf19c9752958ca47b", + "data": { + "inGameID": 37659 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37659, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "afa08e32c23fd21769101bc896858a52935333d0", + "data": { + "inGameID": 37659 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37659, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ed1a02985078d0e006a8342c8348c042c7e559ab", + "data": { + "inGameID": 37659 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37659, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "db20d317557de19017171e24a3d90c8424531259", + "data": { + "inGameID": 37659 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37659, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ec75e9445b8ad10b0aa7f27a3f30ecebb73d5bd0", + "data": { + "inGameID": 37659 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37659, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fd7dc59282f62989a8e68c68fdf6782c842c8c83", + "data": { + "inGameID": 37659 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37659, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f7669d50ef1ad0cc7d7a20e7feb2de4644b3a15", + "data": { + "inGameID": 37660 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37660, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1951edbe3d77c0e265fa7be9ed60b97002937406", + "data": { + "inGameID": 37660 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37660, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5c017bbfb5ed827a1dbd06809f401184eb757fb2", + "data": { + "inGameID": 37660 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37660, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2cbaa8549d97451c74451e3afbd216734b6ebb6c", + "data": { + "inGameID": 37660 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 37660, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4a5026eda2b63ef6029c18d55759df0db6970411", + "data": { + "inGameID": 37660 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37660, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6151e76621957805dfd32b36410ab3550b539184", + "data": { + "inGameID": 37660 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37660, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bf7a6572ce2013a7789fa9654af506f192b330e7", + "data": { + "inGameID": 37660 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37660, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b9b34a4c527c76ea6f26999131241472c3929972", + "data": { + "inGameID": 37660 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37660, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "362d9e85ff1e1b49651e32f3768d0a8e5d31c6f5", + "data": { + "inGameID": 37660 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 37660, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a32ba969cc019d8110b534d19c38950f15ac398f", + "data": { + "inGameID": 37661 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37661, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "df2e42346d760317621246e3b03eb7b8c3268929", + "data": { + "inGameID": 37661 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37661, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "85ded083367107b2a2455065a319a81b95f251b2", + "data": { + "inGameID": 37661 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37661, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8a3a743207a7b49394e611b0a77cd9a48716eea1", + "data": { + "inGameID": 37661 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37661, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "26d477d133733ae4f214a6850b1a06548ae96527", + "data": { + "inGameID": 37661 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37661, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2b1c1aea9875b82f207484ff88c6fbdeb29aec3c", + "data": { + "inGameID": 37661 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37661, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c08fbe2ac239cd19fb03a1a30583ac9db6d1fa88", + "data": { + "inGameID": 37661 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37661, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "86f03f98ac886fcaa291159c773c500ec07e88ed", + "data": { + "inGameID": 37662 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37662, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "772449bcea4bf717995077e151ac15f9ea62148a", + "data": { + "inGameID": 37662 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37662, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e969af98ba730b16b5964df3041947bd7eb9a688", + "data": { + "inGameID": 37662 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37662, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1d418ca6a4f7bb50c5adb5ac4300edfaa03c7bd1", + "data": { + "inGameID": 37662 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37662, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e92e30f93d7d54f0137bde35f1dad9a72e814ae8", + "data": { + "inGameID": 37662 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37662, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "18cfb9cd670cd2e8a3f1c2cb63b48f2968a9262d", + "data": { + "inGameID": 37662 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37662, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6b67e7952e5efc40b7d935df43ebc33d09397988", + "data": { + "inGameID": 37662 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37662, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "67bd6bccdbdbaa2d353e6f5665f05a058a5cb002", + "data": { + "inGameID": 37662 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37662, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "767684a44625c7ad1b93bf174b2ca6997b5e1232", + "data": { + "inGameID": 37662 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37662, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "552c3c1974a50a1ed12b7a50f651083aa6b672e9", + "data": { + "inGameID": 37663 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37663, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9afb6ab6f2e03bb8599ba73b30b97bd697b5673d", + "data": { + "inGameID": 37663 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37663, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a73fd7894780f9193d58058b7c95f957c5bb4cb9", + "data": { + "inGameID": 37663 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37663, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "feb66a8be1c3438dd3000a3d6580f2bad8410fce", + "data": { + "inGameID": 37663 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37663, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fce261a8595a1f059ed934a5e4d144a88df5d6de", + "data": { + "inGameID": 37663 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37663, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "91705f45ed7959cbfa739ef5882cf22f1605ae25", + "data": { + "inGameID": 37663 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37663, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6fed609c540327c34622945dea7576fd4555341a", + "data": { + "inGameID": 37663 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37663, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a3b88bf4d7825ae7f6e5312303e3a68a11841243", + "data": { + "inGameID": 37663 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37663, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7b5181bdf0de95cb8b41c24bf6df09197df4c2be", + "data": { + "inGameID": 37663 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37663, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cd7f0f6a663905580c3fc8586ced7c5b92954da4", + "data": { + "inGameID": 37664 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37664, + "versions": [ + "a3" + ] + }, + { + "chartID": "6b6e556646cf3d2addaabc4c40b6533b41d566d2", + "data": { + "inGameID": 37664 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37664, + "versions": [ + "a3" + ] + }, + { + "chartID": "d6b9cfe8f5a8f744f57a21f182efe13dea33c854", + "data": { + "inGameID": 37664 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37664, + "versions": [ + "a3" + ] + }, + { + "chartID": "4771fd865f1bc93f3803df1531b3f151fec652d0", + "data": { + "inGameID": 37664 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37664, + "versions": [ + "a3" + ] + }, + { + "chartID": "909aa1792ab59198bdc995f443a907d5b44b18aa", + "data": { + "inGameID": 37664 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37664, + "versions": [ + "a3" + ] + }, + { + "chartID": "4381d9d1d318c9b4de794c88a9834b007e92b6b0", + "data": { + "inGameID": 37664 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37664, + "versions": [ + "a3" + ] + }, + { + "chartID": "64481f49c92626016a0792774e9fabc9571d62a0", + "data": { + "inGameID": 37664 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37664, + "versions": [ + "a3" + ] + }, + { + "chartID": "9b1d8039d7c603f8098f76a20c1346dbab69ffec", + "data": { + "inGameID": 37665 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37665, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "be89768e6a143d63587beb666dc306d6569e2500", + "data": { + "inGameID": 37665 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37665, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "172e7a59ca780194a3cc2cda75e008114849e30e", + "data": { + "inGameID": 37665 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37665, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "396ebae7a5332b7f70d8dc59c7af9083817179c7", + "data": { + "inGameID": 37665 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37665, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ef50f18aa1191696a93d91ca616dee7c2448591", + "data": { + "inGameID": 37665 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37665, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b34362a4399f4f599e06974f05cd9780fdc1401d", + "data": { + "inGameID": 37665 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37665, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "82edb91dfdf25c6f532b746fdf1ecdf3db9e00b4", + "data": { + "inGameID": 37665 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37665, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0f3b509bc48a8bdd523384bbd5fb7ad84061849d", + "data": { + "inGameID": 37666 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37666, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "01b9f13f360a201eb3a3077460dd8d70981b0335", + "data": { + "inGameID": 37666 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37666, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "27cbff6693fbfec07eb8aa495037474134b4e56f", + "data": { + "inGameID": 37666 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37666, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "98ef3ac4d59c359ac5a388818999e1380c611b13", + "data": { + "inGameID": 37666 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37666, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5b9035d5514025da1f6aef6c5f3a2923e90155d2", + "data": { + "inGameID": 37666 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37666, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b6eac5ca998a7abb6f75075049caddd6f2ff460a", + "data": { + "inGameID": 37666 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37666, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0d11cf3ea0c8f2ee70c717ea8ab671d3150f2a7b", + "data": { + "inGameID": 37666 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37666, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0f2b26a57a9b35273fb6e85ca086efa01035f820", + "data": { + "inGameID": 37667 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37667, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2b2754264ef129899a374022e0a1c21974e344c1", + "data": { + "inGameID": 37667 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37667, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b2b7eb177400e9a37626e12f9aa467a156d4786c", + "data": { + "inGameID": 37667 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37667, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d58eb61585040466c72989a100f73f270a0a4ff9", + "data": { + "inGameID": 37667 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37667, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "520c4601279766b371d3c0b63ecfef498179568a", + "data": { + "inGameID": 37667 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37667, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "985e7dc697e9b12e715073402b6f1724ca40dd4a", + "data": { + "inGameID": 37667 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37667, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1cd06365fd66f021ffc5ad33e3853633dfe4c25c", + "data": { + "inGameID": 37667 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37667, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "577f7dd1b7b4a1db65d2c4e1d9f817c1f5a1525b", + "data": { + "inGameID": 37668 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37668, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f3a4854d5c581972fd77f7781581c7d01a085a83", + "data": { + "inGameID": 37668 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37668, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f3294ea382e52e2a5c767d7ff6746cbcde15fd2e", + "data": { + "inGameID": 37668 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37668, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f478dd5cc53f10fba7abb5ae4a9947cba770ae16", + "data": { + "inGameID": 37668 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37668, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1046531de396ceaabb835431d3e3ce0c1856a78c", + "data": { + "inGameID": 37668 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37668, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "83a42d481b701867cbb60441c5f7fea210f6d49f", + "data": { + "inGameID": 37668 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37668, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "71037076bd6d8ccce93b67014d7b339a42422055", + "data": { + "inGameID": 37668 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37668, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "33bdb538a1132419738027ee4efec9cdbbced071", + "data": { + "inGameID": 37684 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37684, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9e5a90467d7bc7eb663bf57be46f6dda9025c090", + "data": { + "inGameID": 37684 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "19", + "levelNum": 19, + "playtype": "DP", + "songID": 37684, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d342273c3baad1286c1e44de3b59534330a7125c", + "data": { + "inGameID": 37684 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37684, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b177f64ba715e8753411d9e68be467b8cd83516c", + "data": { + "inGameID": 37684 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37684, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dab23abe802f57f24bf3fece9fbc9f8f0abe839f", + "data": { + "inGameID": 37684 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37684, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2ef616506ad140b61615ed77cdf1f02a787a6e96", + "data": { + "inGameID": 37684 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37684, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cc342fee81d42f47e0c70a7fabadd6e8f9c0766d", + "data": { + "inGameID": 37684 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "19", + "levelNum": 19, + "playtype": "SP", + "songID": 37684, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3a7e86026e1a9fb5917b3155982dae0fe8c3ad2c", + "data": { + "inGameID": 37684 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37684, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8151f41a908b3d8d6ea19d1cfe08987328f414e8", + "data": { + "inGameID": 37684 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37684, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce455392ee809b115aece90c80a2854a0a4dd585", + "data": { + "inGameID": 37685 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37685, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "85718c073055c84257e7edeeed7648732deb7518", + "data": { + "inGameID": 37685 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37685, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cd64182371aad9a2d36b46087019fa69e12ca2b7", + "data": { + "inGameID": 37685 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37685, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b91a437efbc032fe3d4527bcb8cc571b6142f9ff", + "data": { + "inGameID": 37685 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37685, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "da47cc8d0157a5a13a4f150e03c8dcb65b60998f", + "data": { + "inGameID": 37685 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37685, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cea2c21ed4d645687495f29e51ca35e66c849075", + "data": { + "inGameID": 37685 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37685, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "52144de9499e75d9e4588ca8575151e4da967d93", + "data": { + "inGameID": 37685 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37685, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8eb221ba10b64f5e439820d53b3300850d7884f5", + "data": { + "inGameID": 37685 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37685, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ea3816fa043017fcb00c3c5072376f340c9257ce", + "data": { + "inGameID": 37685 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37685, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5be8715dc7c79dcc697e8ee1079c89a82b1100ed", + "data": { + "inGameID": 37686 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37686, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f6c2650b4223ca9b1ac8e853bf18495668d17e6f", + "data": { + "inGameID": 37686 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37686, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fefc53edc248c36d92bd7f381e75485367c0c4e6", + "data": { + "inGameID": 37686 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37686, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d4b08bb8bda22ee6921381622dc399c12ceb9ccd", + "data": { + "inGameID": 37686 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37686, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "58bae602d25147b4e786159c14436603a7574498", + "data": { + "inGameID": 37686 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37686, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ef3540a3ad1429c404f305fafcb9aa52e71ea2d9", + "data": { + "inGameID": 37686 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37686, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3933898ae0af1e410ff3bee6490922b6c68a0d54", + "data": { + "inGameID": 37686 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37686, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9efd71dbf8622d908a6285e7ece88082c1d5e01f", + "data": { + "inGameID": 37686 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37686, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0ea3a85add1b1935855fd5e86783dc6e0aa4648a", + "data": { + "inGameID": 37686 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37686, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "409eedbd7a1959687b7e4dc3ef236f88ec0e868e", + "data": { + "inGameID": 37687 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37687, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c076e233c1ae22680f88c55430906dbb871d2df0", + "data": { + "inGameID": 37687 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37687, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "db7da960ca0b4d8c3af8e14c5aa3d870a0169aff", + "data": { + "inGameID": 37687 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37687, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "16a861a2fa53cc015366940c29516389b0a4bfc1", + "data": { + "inGameID": 37687 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37687, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2665962d89403300f186c23cfc7546994001a321", + "data": { + "inGameID": 37687 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37687, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "17698a52f96c535dc5798b0b00f6ff2792abb41f", + "data": { + "inGameID": 37687 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37687, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f41284584b37e296d00939f8ec30d918f58efb74", + "data": { + "inGameID": 37687 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37687, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7a7740cd9559198aceacde0dd4e27b2ce7a545c8", + "data": { + "inGameID": 37687 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37687, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c93daf0eb6430b6447807e74736ee848a04449a7", + "data": { + "inGameID": 37687 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37687, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "868e5b405470506366256e2cd9d68aa4b73d9bad", + "data": { + "inGameID": 37688 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37688, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "36180fe374dce675235fd0cd69ebb357d9cedfc2", + "data": { + "inGameID": 37688 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37688, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2e563a9305a86604faae16c271d23253ba4482d0", + "data": { + "inGameID": 37688 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37688, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9454729b22ec813e19f353e24bef2440a4b7458d", + "data": { + "inGameID": 37688 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37688, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6928e326c23d4e952aa25267cbe05bbd2804b9ae", + "data": { + "inGameID": 37688 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37688, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6e49d6869f495a63c2f68d982f1068e96f85d750", + "data": { + "inGameID": 37688 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37688, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7926033f57cfc3acf43be7a1a4b8b6890163eca7", + "data": { + "inGameID": 37688 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37688, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f38c2770ef47a09a1d5b865603aec9422b199c7", + "data": { + "inGameID": 37688 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37688, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1c4e195545631197851a85a98de48d1b64dcfa72", + "data": { + "inGameID": 37688 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37688, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "340ea43ef770c6c8c4313cb0723f8fbbada78624", + "data": { + "inGameID": 37689 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37689, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5e8b11e149d2a1a816afcefb948cd42a2f3c98ed", + "data": { + "inGameID": 37689 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37689, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eebf6eae35d4220d61e0aa55b757b1f3c7d2ab9c", + "data": { + "inGameID": 37689 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37689, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce7c3e730b808d55ebdaf4a8e396187e756d6b9d", + "data": { + "inGameID": 37689 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37689, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6ae2a9fab10e7fead2994efb1a3c57f4e7b2c9b6", + "data": { + "inGameID": 37689 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37689, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d9bed4954496b602c62c33d7184e94c04d15f686", + "data": { + "inGameID": 37689 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37689, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5c4112741f8a6a2cca4a8c28f413e601f26285b0", + "data": { + "inGameID": 37689 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37689, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "01a1500cf6641351f853ce59c2a2347ef9582fe3", + "data": { + "inGameID": 37689 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37689, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e716b74a2b8b0da8182fda986da8c2fb232823d5", + "data": { + "inGameID": 37689 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37689, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "02c46408b9aa89e856a92d400279600ff15f01a3", + "data": { + "inGameID": 37690 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37690, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bcecc281d56ad39b3dc0e468ac026f714e976d67", + "data": { + "inGameID": 37690 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37690, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f6390928b022cf167bf53c1ab129f8c5e139a369", + "data": { + "inGameID": 37690 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37690, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "22032f62de510e058cb7d37a924f1b7654e851e8", + "data": { + "inGameID": 37690 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37690, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c701b984b1aa4b27ca2002e20b0476c416d647fc", + "data": { + "inGameID": 37690 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37690, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a47646230589d86b627e85a07d06afa181e6e115", + "data": { + "inGameID": 37690 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37690, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b86d69dede48f352ee7e4a3c9ceea1477746d6d0", + "data": { + "inGameID": 37690 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37690, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "69ddf378025e212f8fbe00a2ad3329c6d4e1a9c7", + "data": { + "inGameID": 37690 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37690, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c991ca5be2bbd1e026cfc6b9b327edf5d776f905", + "data": { + "inGameID": 37690 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37690, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "933cb4ba6fda1ccf1d32f1abfe1b2aa0b67582d8", + "data": { + "inGameID": 37691 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37691, + "versions": [ + "a3" + ] + }, + { + "chartID": "6462e28a5195c4740be6d4e2cfd8b73e4b592737", + "data": { + "inGameID": 37691 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37691, + "versions": [ + "a3" + ] + }, + { + "chartID": "92197615d37e1ab71bf6a3c5e3fb457e73c83433", + "data": { + "inGameID": 37691 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37691, + "versions": [ + "a3" + ] + }, + { + "chartID": "14d5d92425f6cd5f3b9e9efef040854ac050e9e6", + "data": { + "inGameID": 37691 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37691, + "versions": [ + "a3" + ] + }, + { + "chartID": "b271a82b8cc4545556fc4c79171871cd274d121d", + "data": { + "inGameID": 37691 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37691, + "versions": [ + "a3" + ] + }, + { + "chartID": "d6aaa294f493c1a08b4953a2c2240eaaebd14ccd", + "data": { + "inGameID": 37691 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37691, + "versions": [ + "a3" + ] + }, + { + "chartID": "b049a471508213a442fc2a78400a01506b43ab17", + "data": { + "inGameID": 37691 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37691, + "versions": [ + "a3" + ] + }, + { + "chartID": "f14bc72ad8336625ce64fc42571192e1ec168113", + "data": { + "inGameID": 37691 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37691, + "versions": [ + "a3" + ] + }, + { + "chartID": "e5d7db4dec83346da8efa954b20798cccc7f7621", + "data": { + "inGameID": 37691 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37691, + "versions": [ + "a3" + ] + }, + { + "chartID": "c6e07f17d0e4220b686a130dd3c55760f184ffaf", + "data": { + "inGameID": 37692 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37692, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "40f80aed4ad2a99bbd9e955fbcc2553b0a897220", + "data": { + "inGameID": 37692 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37692, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "498cfd51a34aae5b3fddc2232435165c2db54ed7", + "data": { + "inGameID": 37692 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37692, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "551be9e3915b62cfff367350c7012e2c904473f8", + "data": { + "inGameID": 37692 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37692, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e210e9d274b0bda3c11e008be03a538f077607ed", + "data": { + "inGameID": 37692 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37692, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1e877ee00c9eeaae11e3ccb7c7c8dd80f07459ac", + "data": { + "inGameID": 37692 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37692, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "62a6a0ba16aa3bf34193a8c90961e453fa778585", + "data": { + "inGameID": 37692 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37692, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4cc9c1ed8ab3cb83e1d0ad7c241d553d1dcc8e78", + "data": { + "inGameID": 37693 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37693, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "71dcd834dff4727ab1af2d36d73dee66d5a483ec", + "data": { + "inGameID": 37693 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37693, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "46652dbe4476a76309eea3930c3d9440b1343f70", + "data": { + "inGameID": 37693 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37693, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "534820beadd50cac793356a246e1dc8282a9206b", + "data": { + "inGameID": 37693 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 37693, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9e4f2afbc60fba6d0267347a1f49792a331e2f62", + "data": { + "inGameID": 37693 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37693, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d9c22f14ae043d4e1aa14769c490d91626c9da82", + "data": { + "inGameID": 37693 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37693, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fe9c26f1ba34a0e6bf207486d0ca60c1354666a9", + "data": { + "inGameID": 37693 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 37693, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4815e33212fcbc83eae243454ce7686dae141994", + "data": { + "inGameID": 37693 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37693, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e3ca86fa054d401fe4df46ce729381c311264916", + "data": { + "inGameID": 37693 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 37693, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1bf7d88ea584f4535a87f558ce2e470ca4422ca9", + "data": { + "inGameID": 37694 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37694, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b4f657dc2a3abc0a1140a792b3570a663afcd531", + "data": { + "inGameID": 37694 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37694, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "99e897f6abcb0b9359e6b73cd7e3b708db7a55b0", + "data": { + "inGameID": 37694 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37694, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f22fc8cac3421c9e1b5fd5669e8ebcefdc28360", + "data": { + "inGameID": 37694 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37694, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4f6bdae1ca3dcfbc37d6f88f48ccba2b9608afd2", + "data": { + "inGameID": 37694 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37694, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "00ea998ef9608d4150515d836e1733727bc708ca", + "data": { + "inGameID": 37694 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37694, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2d22b39cbc81da67a79f1902974cf5e98fcbccd4", + "data": { + "inGameID": 37694 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37694, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9ecfee5b555a10f6cb03c132e8ad9dcf8523389b", + "data": { + "inGameID": 37694 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37694, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "899c4bef8255a22bc151179f8219c4016f5eab93", + "data": { + "inGameID": 37694 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37694, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d74db6e8aa857dc940226bfbac1990a0f81c8f4f", + "data": { + "inGameID": 37695 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37695, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3682696799300a68e7490db4daaf5ceb77cb6204", + "data": { + "inGameID": 37695 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37695, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "62bcbd77d57d85c11a328c0e793cf77ff0e796db", + "data": { + "inGameID": 37695 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37695, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "80ac38aaa8c54e82912699becacb632c91305e40", + "data": { + "inGameID": 37695 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37695, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "074035dbc69b615c9f4d1c8056460b49fa578da7", + "data": { + "inGameID": 37695 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37695, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f82c4417e9b1d59245555b75a70210868ab5072d", + "data": { + "inGameID": 37695 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37695, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "33dedf3e5c19b93b684d957d0613a029f3417fa3", + "data": { + "inGameID": 37695 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37695, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c82e48a9cc6785b7f00365659408ea1a47ae8919", + "data": { + "inGameID": 37696 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37696, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "180b15fde744817cc8f842c7151482eac350cc61", + "data": { + "inGameID": 37696 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37696, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8aa325127d66d885d6d6dfd599a4fb9c21242f09", + "data": { + "inGameID": 37696 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37696, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c43d1177186bb1d6711aeac67f53236b7738838d", + "data": { + "inGameID": 37696 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37696, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c118cec22cee4e9fbf9fd756eee00f79483a6459", + "data": { + "inGameID": 37696 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37696, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5c5090ce2f27e0f0affe992abd09e72344355f6b", + "data": { + "inGameID": 37696 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37696, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4db9977f0fbd46da6a6f975f3da2f199c77fd0b4", + "data": { + "inGameID": 37696 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37696, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "83d1ce4e73825dec38820fb211ecfabf79938757", + "data": { + "inGameID": 37696 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37696, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "660288f43197d16ed5a20c41aafdd30f32741030", + "data": { + "inGameID": 37696 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37696, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5a529693a623bdac52887436404a94236c740aa3", + "data": { + "inGameID": 37697 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37697, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0e81673c9f2ecfda0169252a80db234544f43f64", + "data": { + "inGameID": 37697 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37697, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "35aebe5366207c948b36f0f46aa6fa4810b14db1", + "data": { + "inGameID": 37697 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37697, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fe5726da34d1becfaf9b270f899b32eba3ebcdbd", + "data": { + "inGameID": 37697 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37697, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d72f8f00ecb7ed37eeddfd340c00f709af6afdae", + "data": { + "inGameID": 37697 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37697, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "01f7a285da0a996826e11ed5f104223ce4d4c9cf", + "data": { + "inGameID": 37697 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37697, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dbec367137b41cb730d1151c75bcb845f5d6e50c", + "data": { + "inGameID": 37697 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37697, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fa26ae67fe9469d2c26991db2f4d66d5883cfa09", + "data": { + "inGameID": 37698 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "DP", + "songID": 37698, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "88aad60e2fbaf85475df4fd77a25bdeb0a1aa7d5", + "data": { + "inGameID": 37698 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37698, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1d4293eccde214b3e7c3e68e97392a0d05b2f459", + "data": { + "inGameID": 37698 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37698, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4cbdb3432f11c8c327765d784ff47ba06bd4165f", + "data": { + "inGameID": 37698 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37698, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "193b63f6fa58094e5c7ed7c9a6961ec00422e6d0", + "data": { + "inGameID": 37698 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37698, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dcdfd1990d8a06f433e4260c21e82bd2c31a6805", + "data": { + "inGameID": 37698 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37698, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a2b74e032a80feb89edb1dc68585607496e5cbbb", + "data": { + "inGameID": 37698 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37698, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0b92cbd9365db21f1e17fd8432f3f7ae63dbe1c3", + "data": { + "inGameID": 37731 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37731, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1d0572fdfbdcd69ea2c4ec897b086b41f96db866", + "data": { + "inGameID": 37731 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37731, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "af267fc712a433b2cbdb500536ed1902f01b6131", + "data": { + "inGameID": 37731 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37731, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "70c4b683c51428603e24e13e177bd8966f3ad2ef", + "data": { + "inGameID": 37731 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37731, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3159c91a9be0b7d837242f0eba4eb2e1c8ea65be", + "data": { + "inGameID": 37731 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37731, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "01b67836b5622ae1e62c32c5482c97a87992ee7e", + "data": { + "inGameID": 37731 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37731, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "52b558317f219ada1f3b8194a4c722f822671b91", + "data": { + "inGameID": 37731 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37731, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c25551189b9ebdf4e0501a665db3db19c4da6ff0", + "data": { + "inGameID": 37733 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37733, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dde0e5bf05adfa3bf55019acdca57e67cb6b7d91", + "data": { + "inGameID": 37733 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37733, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9c267b1240e42b87f3bd025784a03f221b8d894c", + "data": { + "inGameID": 37733 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37733, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dec4b167b1739f8b352a562e14f6fde49c826050", + "data": { + "inGameID": 37733 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37733, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff3c58bccf3ba73c853e4c9ca9784a3019e5d182", + "data": { + "inGameID": 37733 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37733, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "89799515797c7183c53431ff8a3f5bd883d4eb26", + "data": { + "inGameID": 37733 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37733, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "367291878ac3c5a032cb730ce2ddb041bed7c6e6", + "data": { + "inGameID": 37733 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37733, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "48a6c1e68e6430ae554f80311e3c9237c8f5e459", + "data": { + "inGameID": 37734 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37734, + "versions": [ + "a3" + ] + }, + { + "chartID": "7c3956f7569236e594d51a1f6bc1569c934bb02d", + "data": { + "inGameID": 37734 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37734, + "versions": [ + "a3" + ] + }, + { + "chartID": "0c64a5dade3fe9d205cabc2facdc048afcd646e5", + "data": { + "inGameID": 37734 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37734, + "versions": [ + "a3" + ] + }, + { + "chartID": "c85c324652ef391a0082d5d38825258cc4fee4bd", + "data": { + "inGameID": 37734 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37734, + "versions": [ + "a3" + ] + }, + { + "chartID": "033246c1cc79d37123da68c0c1e8db32f87399bd", + "data": { + "inGameID": 37734 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37734, + "versions": [ + "a3" + ] + }, + { + "chartID": "205bf8baaf2c3f86d242095abc894e8c1cd0f892", + "data": { + "inGameID": 37734 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37734, + "versions": [ + "a3" + ] + }, + { + "chartID": "5860686f161b9aeadbd48df7132c3f4ca322a17b", + "data": { + "inGameID": 37734 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37734, + "versions": [ + "a3" + ] + }, + { + "chartID": "f8ae3b985065ffc673f952aaf419c535cbed430b", + "data": { + "inGameID": 37734 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37734, + "versions": [ + "a3" + ] + }, + { + "chartID": "04e6d922fd4983ccbc66656ea6b8fb258649b85b", + "data": { + "inGameID": 37734 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37734, + "versions": [ + "a3" + ] + }, + { + "chartID": "19c591009358f35accbbf1249ecccae889b84674", + "data": { + "inGameID": 37735 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37735, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9a6fd6da878a947f9b01b7d05bb29eecb5d984b7", + "data": { + "inGameID": 37735 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37735, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5e38dbdec2b2cc40ba9311ca911de6a06f897a16", + "data": { + "inGameID": 37735 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37735, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "70c3da659724e249b0d3e560bab4b14c22796f88", + "data": { + "inGameID": 37735 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37735, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5af127171aa3ba9c7eab1c12bf840a4c0a0588a9", + "data": { + "inGameID": 37735 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37735, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b4cbcf8e30ae78e7c0e982caa6c20c9b6bfffd83", + "data": { + "inGameID": 37735 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37735, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "366f47541c3e4362853fcfb1f4c3cdca4bb2f914", + "data": { + "inGameID": 37735 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37735, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fe1a46011c4ad2afbe512c2ca255577e3156a408", + "data": { + "inGameID": 37735 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37735, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cef563beaf2aa0bbef4ab615d427a183add59b0e", + "data": { + "inGameID": 37735 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37735, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3cff8d172b9cb787b6a29fbeebfc539de5e62338", + "data": { + "inGameID": 37736 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37736, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "04361f68c327977cf85c4bf1b248a9c29c0a8dd3", + "data": { + "inGameID": 37736 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37736, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a71eb0f795a9cc28dbffabd5096ef8e032e8ea47", + "data": { + "inGameID": 37736 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37736, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c4aca340c2d0c447f11119f43e1bb6a47805d9cf", + "data": { + "inGameID": 37736 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37736, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "04e568b26f5ea5f702b3551894bf31416af642fb", + "data": { + "inGameID": 37736 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37736, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fc7d987bade5b6b8467c1012ecf40c68d9736bfc", + "data": { + "inGameID": 37736 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37736, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "31407c05618334c8f3e94b4d3c23ed6e0b6eb2cb", + "data": { + "inGameID": 37736 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37736, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4f21a3e75bfda180583a87e8746ff65c984b8196", + "data": { + "inGameID": 37740 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37740, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c25892b17561622d3e8de51a89f9d6c94836bcd9", + "data": { + "inGameID": 37740 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37740, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7e5b6970af1c2da3a303a8156776b3adb44e760d", + "data": { + "inGameID": 37740 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37740, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f8bf2d45d4ae41ad2b539553c1ab77d915eba22a", + "data": { + "inGameID": 37740 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37740, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "04546c1ae91169d823ac3e8225805f8fd9fa04e6", + "data": { + "inGameID": 37740 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37740, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8235ae3020c0b5b7ae31c66edb9b61ad22f96b1", + "data": { + "inGameID": 37740 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37740, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c51128cc102e7fc7b2871fe4fc7fef37324867ec", + "data": { + "inGameID": 37740 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37740, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "516bab198fe56cd5e9bbd7f113006f6b68f127fc", + "data": { + "inGameID": 37749 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37749, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d4c5dfe139ef9d7d7b2939b0bbb0aaf6896b809", + "data": { + "inGameID": 37749 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37749, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4b67b6a8796c475ad4808d8532585bc0c46e3862", + "data": { + "inGameID": 37749 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37749, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e3156e7a2eb27f220df89b48b9edbab818b7abc5", + "data": { + "inGameID": 37749 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37749, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "360c3a7bff63daddfc317c98e083b89fa65f201c", + "data": { + "inGameID": 37749 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37749, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b5127b032a7bdef48cd76763d676ebbaf2c2dd65", + "data": { + "inGameID": 37749 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37749, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a5682698563e8435ae9e56806debc9389dd0aa7b", + "data": { + "inGameID": 37749 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37749, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c8692e21f10c1dde08ff912e2897c27a1b0e2815", + "data": { + "inGameID": 37749 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37749, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3391d61295ca4a59344580f415a671a7ee8d7a82", + "data": { + "inGameID": 37749 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37749, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ebd6360dff5db7266d681327cc942e4cac6e022", + "data": { + "inGameID": 37750 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37750, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "07bb89d1ae6dead76a64a4dd91315eece6e9d227", + "data": { + "inGameID": 37750 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37750, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2c9db99174c55f47e5275ed45a37c03eebf68dd7", + "data": { + "inGameID": 37750 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37750, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "97a98dfabb607cddb6f2d329b3aaa0a230b0e8e3", + "data": { + "inGameID": 37750 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37750, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e4c9822017fdae3e44bb5d57dfdbfdc57acc327b", + "data": { + "inGameID": 37750 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37750, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "97996df0033a07c0e433f997329c702089686e12", + "data": { + "inGameID": 37750 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37750, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e6f87332ea3d1e34a625249aa195f6b96f624b11", + "data": { + "inGameID": 37750 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37750, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1fc5a5fb34143d5556447b2f3e08f439bb3d267f", + "data": { + "inGameID": 37750 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37750, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "801913bbc74d60f747749b2f40d98614d942526d", + "data": { + "inGameID": 37750 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37750, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "896a022e8e4364960a41ef0b6cc1c593f6525a46", + "data": { + "inGameID": 37752 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37752, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "60b4f377c2e55d12cf921fc795ef651920cdd5ae", + "data": { + "inGameID": 37752 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 37752, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f07063277136d67fdaabf6f81684017b53f631fb", + "data": { + "inGameID": 37752 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37752, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "38da793265b8eac646cf744ba3bbb5bcb66cef0f", + "data": { + "inGameID": 37752 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37752, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e509fd4086e626a4f711513d53f697a7cd4f6731", + "data": { + "inGameID": 37752 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37752, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "54e1d64908cc02cddfaa23043e018fd76e9a7bb8", + "data": { + "inGameID": 37752 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37752, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5961267e12dd50ba99b652df02797fd1ae683b0d", + "data": { + "inGameID": 37752 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 37752, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3b43722831a3a1bbf4180acd9497027ebd126605", + "data": { + "inGameID": 37752 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37752, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "234cdacd035f9c4b3ed8baf1ba4d7a4c228fa87b", + "data": { + "inGameID": 37752 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37752, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a60a80fe98bb0baa12c59605f4f677718db6476a", + "data": { + "inGameID": 37753 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37753, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "40a86613e03bbeed8bf7a05b27075da4303ae591", + "data": { + "inGameID": 37753 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 37753, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b19eef944dff6dc87bb05210dcd481f027c1c62a", + "data": { + "inGameID": 37753 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37753, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2ffc82cd3ca0ae1f2549b6e2a8542fd765b8df04", + "data": { + "inGameID": 37753 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37753, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6a80618a7bce402824b0c9eeb2e18ab969f28d78", + "data": { + "inGameID": 37753 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37753, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6c58a63129b696f3114bf8d55dbe3b32a215faab", + "data": { + "inGameID": 37753 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37753, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "441bd859f5bc6f7b04242fdf22fd4dd0cf2cd73c", + "data": { + "inGameID": 37753 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 37753, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1461c1389df33e0edd012fd82c5de7ef3e2779f0", + "data": { + "inGameID": 37753 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37753, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ff3f14b3a508f9be6548afeb71a449df825c61f", + "data": { + "inGameID": 37753 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37753, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "26ca93d6732320af5ed1c437e69057c549deb4bd", + "data": { + "inGameID": 37754 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37754, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2da469ab37e6c49c7b2625455ea13dfc9bc27312", + "data": { + "inGameID": 37754 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 37754, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4aef71eb2b89610b807dcbf7930b0bd6f83abe5c", + "data": { + "inGameID": 37754 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37754, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7b77d6425879e74d243a0cb0bd98bd38acc12259", + "data": { + "inGameID": 37754 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37754, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "586888c81f1feb5cb3a0ff932ebdb276ac2131b2", + "data": { + "inGameID": 37754 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37754, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5ad105b790f8b1b8337b2b37c4bd25413098173c", + "data": { + "inGameID": 37754 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37754, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6aeb8b02bb52968a33ebe1c95502df74565c3205", + "data": { + "inGameID": 37754 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 37754, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "15af352ee9a4cd1a8187a2e770c6d4e3ffb577be", + "data": { + "inGameID": 37754 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37754, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a53d610606e3beeba191fc19eda2e896a6671047", + "data": { + "inGameID": 37754 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37754, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cc040f7a5af8449985793bcfaa6498db1d8115e1", + "data": { + "inGameID": 37755 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37755, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fa86499fb07b5eac6ee2ad727c7f5078dc9e4dae", + "data": { + "inGameID": 37755 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37755, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "752a6d641efd35ca2f69d18572f6f8900441fae5", + "data": { + "inGameID": 37755 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37755, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "93689adb68dc73ac438ffc434862ff4e0128733f", + "data": { + "inGameID": 37755 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37755, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f8e0b4ac84c990d24034c8a11ddd7e2d171023ae", + "data": { + "inGameID": 37755 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37755, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "861775a608dd397f9cba4463d7f2b87858435058", + "data": { + "inGameID": 37755 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37755, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8377ba5acea87d3237944007033a74aa4383cdb9", + "data": { + "inGameID": 37755 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37755, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "05634f2c94b51d8f5370e0579214a13be9d1165a", + "data": { + "inGameID": 37755 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37755, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ac43dbf90e9de602ae141e9292301ebd22e14e8b", + "data": { + "inGameID": 37755 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37755, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8b5c34551eba817fefad4c989ec406acee528aa4", + "data": { + "inGameID": 37756 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37756, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "95424c491652964e62d13a5e02603f43db5403d7", + "data": { + "inGameID": 37756 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37756, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "842f3bf1dcdb7da7f89d7184dc9be280315acde0", + "data": { + "inGameID": 37756 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37756, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "83ca226868a701dbd91b73261d9ee6c243be661c", + "data": { + "inGameID": 37756 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37756, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bdf0e071fecfaeeb6e1e594c78fe93b9492ef0e5", + "data": { + "inGameID": 37756 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37756, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a353b26bbb8caaae70f8f9e77164be679840b402", + "data": { + "inGameID": 37756 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37756, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "37da9620ae489bdcc3a3a8c5fb9f67902454697e", + "data": { + "inGameID": 37756 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37756, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "75cbc85c518fc17d0fb5165142969e19d2fbb587", + "data": { + "inGameID": 37758 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37758, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5f26b1f96331db1d85afd3be54ce84529ef2a287", + "data": { + "inGameID": 37758 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37758, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bda59f103d4bead4d40301722782b7398ddbfd4b", + "data": { + "inGameID": 37758 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37758, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8a53996d84226b3fbb7c4d7d2421657b52ad455a", + "data": { + "inGameID": 37758 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37758, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "027c87632379e7fa903358458fbe120872c89a19", + "data": { + "inGameID": 37758 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37758, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8641b65e93e4a7f32d22ba9d1e25a9991d1ce21b", + "data": { + "inGameID": 37758 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37758, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "022577607752bc97a56d70239c6786bbf63626b0", + "data": { + "inGameID": 37758 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37758, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "64ed0a1d7cd0a924e3025f509f6db7ee93fb2fd7", + "data": { + "inGameID": 37758 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37758, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "38fcde00cc42ff19727738ae8278037823ae67f0", + "data": { + "inGameID": 37758 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37758, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5e7f0944081e4cbe73edd482e55eccd3d7030a0d", + "data": { + "inGameID": 37762 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37762, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "25551142c9be1c7fc5faf2b9e93a1c8e3ed566a1", + "data": { + "inGameID": 37762 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37762, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f4dd1f15f4345410272800b74f9f3523c022016", + "data": { + "inGameID": 37762 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37762, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fde08f439c26d3981b79483ed04296eeff8bb105", + "data": { + "inGameID": 37762 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37762, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a82a69e803b341be0297420af3ae37066b23c839", + "data": { + "inGameID": 37762 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37762, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b25fc100c90908e4d4688aae716e191c1f47e03d", + "data": { + "inGameID": 37762 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37762, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3ba39f04c13b347ee61e599b00b63c98287003dd", + "data": { + "inGameID": 37762 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37762, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "041c91b3c1f5291273608d1c50d64cccfe13c8d1", + "data": { + "inGameID": 37763 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37763, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4faff9762ec8261ef7f6babfcd099ba62129bf13", + "data": { + "inGameID": 37763 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37763, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e5c13f5d794b90e2453506eca24ca3e58a61997b", + "data": { + "inGameID": 37763 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37763, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "01a7a7c0f49a435c8b86987c8579816f3e89abf4", + "data": { + "inGameID": 37763 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37763, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7e2443276a13d0114a7c514138f55d0dda3ed171", + "data": { + "inGameID": 37763 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37763, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "de9c1d00bb061ba4f578cb5495be73ef19735b18", + "data": { + "inGameID": 37763 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37763, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e7ecfe7bcc3658c49b1513fe0025f4879fecaa35", + "data": { + "inGameID": 37763 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37763, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "66a2b917f6b064a128f3557978ed2f9407287363", + "data": { + "inGameID": 37764 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37764, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "288d8bf25651ecbb9ca6e25b9c6b752e7a109459", + "data": { + "inGameID": 37764 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37764, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0337a34e9ea717769a61785ad778f843fe15e2fa", + "data": { + "inGameID": 37764 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37764, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "915984d7542e53b93de694dd604e99f828fcbfa7", + "data": { + "inGameID": 37764 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37764, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "962c0ed9ed0f765a46c9915173a19f7e1dca20d8", + "data": { + "inGameID": 37764 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37764, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "750c4f0941a04471a42c36a46b8b525ce400568f", + "data": { + "inGameID": 37764 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37764, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1c79ac62a8b8f1d6112121e98d254d0bb53c25cd", + "data": { + "inGameID": 37764 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37764, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "819de22497f3adf2bf437eac9ef66d7e507f8605", + "data": { + "inGameID": 37764 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37764, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "badd873cad6f45fc00644f086ac280e934c54c42", + "data": { + "inGameID": 37764 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37764, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "14cd9c9fd1e73d49599870fb3f3e131bdcd159d9", + "data": { + "inGameID": 37765 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37765, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d8076646929ed88d6c29745164935483d3f5cad2", + "data": { + "inGameID": 37765 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37765, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4f645f7c6606d70a2cc2953d43d576eb40ca17ca", + "data": { + "inGameID": 37765 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37765, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9c3609f4a7f951fcf6711c8d25cd03785315a9ac", + "data": { + "inGameID": 37765 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37765, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3e5c2aa92ea535a29f0c2ed2431bfc5cdc61d8bc", + "data": { + "inGameID": 37765 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37765, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2fe574bd2a4198211e47e92f967c2c436d77db3a", + "data": { + "inGameID": 37765 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37765, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "00e4ff32ae440d4b58b993995693059ae1c0e777", + "data": { + "inGameID": 37765 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37765, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f558c12d47b13c613bcb338e562ca87a1941888", + "data": { + "inGameID": 37767 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37767, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0c5a75fd1c7b315809c52a0d570a14157ec11f5a", + "data": { + "inGameID": 37767 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37767, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "db0d9e9553dff56add6292899627fd2bc6dbd1d5", + "data": { + "inGameID": 37767 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37767, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6eeffd9659c0311e0e501c1a1e01b3f58ca31d58", + "data": { + "inGameID": 37767 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37767, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0ac88db69c351d318382b937f2a8fef1d34985a9", + "data": { + "inGameID": 37767 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37767, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "63a57ed33aea501e95a8e89790e362874b804fbf", + "data": { + "inGameID": 37767 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37767, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "78a27ea5350c78ad38e74c8a2a56bc016adf6842", + "data": { + "inGameID": 37767 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37767, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c0ad51ca853bceb9a986ebc6cd195213c4f33f9d", + "data": { + "inGameID": 37775 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37775, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "18fb71bb0562b9ec94997eb6f0fed99f61d4c4cc", + "data": { + "inGameID": 37775 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37775, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ee766f189ce91dfa1e443bd2c559b9de61f9512d", + "data": { + "inGameID": 37775 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37775, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff52e0347ddfe610a45b1e2b30f37fb2b3cb43fc", + "data": { + "inGameID": 37775 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37775, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c5aed0d679caecca76d76288cc08b7de56e62c86", + "data": { + "inGameID": 37775 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37775, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ffc4735bdf27b317f8043f1ef1f728d063a3b545", + "data": { + "inGameID": 37775 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37775, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "32af1323e39227c89c5186619dd20410c1bb7580", + "data": { + "inGameID": 37775 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37775, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a6b0bc4cdb11c17633e6ad04378fdc7471f401db", + "data": { + "inGameID": 37775 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37775, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5061d503e1c208f32f5c68ca4e2ca8b9d57f7129", + "data": { + "inGameID": 37775 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37775, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3f6abb0eab4bf19fdb72a0035eced0bae694d11f", + "data": { + "inGameID": 37776 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37776, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "23a9624d969c3434a21700a5bc5a838887e3cdaa", + "data": { + "inGameID": 37776 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37776, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5886d7a2612f7c4b1b73f5a5f16377afb2bfe34c", + "data": { + "inGameID": 37776 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37776, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3ffff24d015b140c482e8aae1e861b81897238df", + "data": { + "inGameID": 37776 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37776, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "374fdbe0899b856bc33866c11a49d6a549c61275", + "data": { + "inGameID": 37776 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37776, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "467e1bd3f6d19e154cfc6bf88c365764c4f6662d", + "data": { + "inGameID": 37776 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37776, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e0eb4d3f3085f0538abaf0140bcf3e029e91d7a3", + "data": { + "inGameID": 37776 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37776, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d1990f64de7f3d745352be28045d38dc38d8123d", + "data": { + "inGameID": 37777 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37777, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "35d99ad8bbbae0c88554d602b22e18397c23c4c0", + "data": { + "inGameID": 37777 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "19", + "levelNum": 19, + "playtype": "DP", + "songID": 37777, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2b64e08b20b35bc31180d088b00a7b4be3b28b3a", + "data": { + "inGameID": 37777 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37777, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3c08bfd910edf01fedbf992dc92ebec1dad3691b", + "data": { + "inGameID": 37777 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37777, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1c0bf91a68cc6a2b2e99458e38b8185f4810edd0", + "data": { + "inGameID": 37777 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37777, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "72bce3578f94b32392bde619ffddd21a2687a4d6", + "data": { + "inGameID": 37777 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37777, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f5da978aca48811dd83b9cd79229992f000704d1", + "data": { + "inGameID": 37777 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "19", + "levelNum": 19, + "playtype": "SP", + "songID": 37777, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "adfa79022cbd7034dc04113b6ecc1e869c8bfca1", + "data": { + "inGameID": 37777 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37777, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "49321ab1f8472173a9469fe4d3e5fe309a64227c", + "data": { + "inGameID": 37777 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37777, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff452b45444aa8548c5cedc7c5f272320a63138d", + "data": { + "inGameID": 37778 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37778, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d0ab615cd4e84f834d7d8303799723ab27b1535f", + "data": { + "inGameID": 37778 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37778, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c7bb06adb4021ed6e3c56ecd0968deacaaf8b194", + "data": { + "inGameID": 37778 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37778, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "94817a5cb34cb73e50589e4f11a3219c2ec09511", + "data": { + "inGameID": 37778 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 37778, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5b83dc7c2b47a43f5cdd4109b52ca7a47245733a", + "data": { + "inGameID": 37778 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37778, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d5f553e3fc72f132ca8461571952ae827718335d", + "data": { + "inGameID": 37778 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37778, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "62bb0ec5fe73be3d657dfa52dd239241ed77419f", + "data": { + "inGameID": 37778 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37778, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3e9bf6b76f0bbd00759dcfd12b1c644a69a3c9e8", + "data": { + "inGameID": 37778 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37778, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce87716f45d5c79987c813fa7968748d665973a6", + "data": { + "inGameID": 37778 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37778, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9b87d4ee43830a5f0b3ec043d2253b43bf5abc7f", + "data": { + "inGameID": 37779 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37779, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "56de9ea31556bab12a2f5fe8922008506fbeadba", + "data": { + "inGameID": 37779 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37779, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f7274de0f5ed23bc00ee14e5d80bdad00ee6125", + "data": { + "inGameID": 37779 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37779, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "291f21a3d6e52f93e1b112cd6e22e391e749a347", + "data": { + "inGameID": 37779 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37779, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1d70300330aa4e64b9a58bc9392bd93e12ce06cf", + "data": { + "inGameID": 37779 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37779, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "260acc61caca366f7eb3804829d2ea31cee1b0c5", + "data": { + "inGameID": 37779 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37779, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e5b05d30c1ea024aacd015da00492586898b4e06", + "data": { + "inGameID": 37779 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37779, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "023a4babbe6df0bf74770bc33788e76839c112e3", + "data": { + "inGameID": 37780 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37780, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8ee5962b6c19767b475a61bc56df46eb38eecc3d", + "data": { + "inGameID": 37780 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37780, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "497c3df8ecdf227984417db2855be62c369dfe61", + "data": { + "inGameID": 37780 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37780, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2a60e1f26950ccd268bc425126f26924ff88a775", + "data": { + "inGameID": 37780 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37780, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6380c36928e277135f4e75e030ed4513d1015556", + "data": { + "inGameID": 37780 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37780, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e48c1e144e36292e866c01a83c59c978897659d9", + "data": { + "inGameID": 37780 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37780, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "345d23b4d2baab0a6deee3e230586dac6f424ae9", + "data": { + "inGameID": 37780 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37780, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d3b6328f0527c585d4735886f73358434ff10177", + "data": { + "inGameID": 37781 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37781, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3420f71eec608790547610fdb0e632de87ffe450", + "data": { + "inGameID": 37781 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37781, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "616c2798cb5753e5aa747f75b793809c2646de23", + "data": { + "inGameID": 37781 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37781, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "928eb796aedbec9c99e9dee8be58693043dc7c47", + "data": { + "inGameID": 37781 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37781, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "54be8a28e76b01f078aff93b4a127c6e202fa38f", + "data": { + "inGameID": 37781 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37781, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9856b93ac5e4afcbf80db13fa8899c1df18cc34e", + "data": { + "inGameID": 37781 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37781, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "80f9954898e63eadc0a8d16584bfa391bdbe7caf", + "data": { + "inGameID": 37781 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37781, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8de56a832ad409ef23e3d7e09c081370c67f4a75", + "data": { + "inGameID": 37782 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37782, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "564da0f4db81cda6b4eabb2d1477ea720b1f0616", + "data": { + "inGameID": 37782 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37782, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "556abbffd89aea3daef0a9656a3efb78dfde269c", + "data": { + "inGameID": 37782 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37782, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3a3d254a5ae8a6535e8f89ed9f88fc2a56201791", + "data": { + "inGameID": 37782 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37782, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c9496ffe128b1890f5fedff7faad2bada4a0a7ea", + "data": { + "inGameID": 37782 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37782, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4b9ab36c2a8268b936abbec8e362468aea7e3341", + "data": { + "inGameID": 37782 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37782, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "18975ac72d7ce58ca10b0c0241166fc3d2510102", + "data": { + "inGameID": 37782 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37782, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4e940e873826c5d45d5d06590cdea25de3df421f", + "data": { + "inGameID": 37782 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37782, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d9fb47954028772fe1fd6652a275058e83e24482", + "data": { + "inGameID": 37782 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37782, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d2aa78976afa20f608ea9cbbc7bdda09ccebf2ab", + "data": { + "inGameID": 37783 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37783, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "41b77d22b1578ec5a3a6c8bbab21d04ed6b56f0a", + "data": { + "inGameID": 37783 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37783, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "74782264911f3a1059f7584644d42c56857a8908", + "data": { + "inGameID": 37783 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37783, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9e2e2e22fda4a9fd1275d755df79b27ac2734997", + "data": { + "inGameID": 37783 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37783, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "04321be9a7d03ca367d4ec711f89ce1350369e9d", + "data": { + "inGameID": 37783 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37783, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a556dcda6608d25d4cb6888fd8e7b9a044263fa1", + "data": { + "inGameID": 37783 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37783, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff9b0a97826ba19a8058f8b762316eb572a2e9d6", + "data": { + "inGameID": 37783 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37783, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e9fd264df3ed27ee6b6057f160cae5a11781cb66", + "data": { + "inGameID": 37783 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37783, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "30318eed58409c184d4531acb71b0423401b73d0", + "data": { + "inGameID": 37783 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37783, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "61c791eccec4f448b16c86b64ccab41c8864bec9", + "data": { + "inGameID": 37784 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37784, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1373dd7adad772f79593fb7350b3dc9cd88f5803", + "data": { + "inGameID": 37784 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37784, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2c0b2d27635ae56d056230cb40103cf94ba2e1e4", + "data": { + "inGameID": 37784 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37784, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e8ccf344e5fb625f4641ca23b5ff05e99979157a", + "data": { + "inGameID": 37784 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37784, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c7650ba4a666450daeff263d2b3d0cdee01fb80e", + "data": { + "inGameID": 37784 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37784, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "73620dd5f3c2d476aace084cbea9940cae14595a", + "data": { + "inGameID": 37784 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37784, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "db118dbb8218e7c7a8559b7944286b32c7311a4b", + "data": { + "inGameID": 37784 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37784, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9edff16a40c472878914fe2394c7d0f7f686d7ea", + "data": { + "inGameID": 37785 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37785, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "495d8e974f66ec40ae3312f682aae01dba4031fc", + "data": { + "inGameID": 37785 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37785, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "977e80d01d2b301095908733276de84ac4e41520", + "data": { + "inGameID": 37785 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37785, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f3c366e9c92815418580f570a16b2e116a0fc82a", + "data": { + "inGameID": 37785 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37785, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "60948a2afb56b3a9bb118acd9c226915266c3f55", + "data": { + "inGameID": 37785 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37785, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7bfc982b76ddd96d497e69824af7e764305f9cde", + "data": { + "inGameID": 37785 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37785, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d29137c8295f6d66b78883aafc2dcbc264b2cc43", + "data": { + "inGameID": 37785 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37785, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d80c64249c25af28dc765a5a2787635966e9e3f7", + "data": { + "inGameID": 37785 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37785, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "da0483c6525003c1c4ad8f51c75ba7596fa7230f", + "data": { + "inGameID": 37785 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37785, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3100227822711c9e7da70b6f94561cef5edf688a", + "data": { + "inGameID": 37786 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37786, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "82eada4f3226d03d2864bcabf32201cde548055f", + "data": { + "inGameID": 37786 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37786, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4563bed025ef97bb2153db31f0f8e3341bad90be", + "data": { + "inGameID": 37786 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37786, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1fd5a8b7a267fdf69f947a7baa34c210029fbf4e", + "data": { + "inGameID": 37786 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37786, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "85c351a54fedf0a7f0c6c0012cf743e71e6af1b6", + "data": { + "inGameID": 37786 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37786, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6f36dd84e16eb3d58c4849d474fd3356e83c621b", + "data": { + "inGameID": 37786 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37786, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "417a0e6844ead3bcba18dc792923461859b3993b", + "data": { + "inGameID": 37786 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37786, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9b0dbef25ac014a591dd800006c487135acdad8b", + "data": { + "inGameID": 37787 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37787, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b97a1e21fbb8e0823a258a72cdc86ab87bb55f9c", + "data": { + "inGameID": 37787 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37787, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4ef49e13c695c09508d9646f64afd7a85c2c7ca4", + "data": { + "inGameID": 37787 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37787, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "90fc7d33844bc69fd25c767ee0b8864b92ca817c", + "data": { + "inGameID": 37787 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37787, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "398cc2d9122ae449efaaab694aa53a1d98b7b60c", + "data": { + "inGameID": 37787 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37787, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9b646c21a5b8c3d1b6b491416111c8c51b121862", + "data": { + "inGameID": 37787 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37787, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5d0dc4867e90bcd16e20d9d89377602fc06c23fc", + "data": { + "inGameID": 37787 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37787, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b5644a9090aa1e0ce8f71ea4a5bafde2d19db549", + "data": { + "inGameID": 37788 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37788, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b68402f26b8e637c05245e9dc6754d018aa09610", + "data": { + "inGameID": 37788 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37788, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b907a30a027a38078e3b9b6e4d7462e293819da0", + "data": { + "inGameID": 37788 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37788, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0c8265b4a8211c6d5eb1dd218b4c92a2031f6000", + "data": { + "inGameID": 37788 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37788, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a746b2422eb6ce7fdf95c70a395227ea2c312c4c", + "data": { + "inGameID": 37788 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37788, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "74ff3c31e1a072960fa6fa75f8b8080e14832061", + "data": { + "inGameID": 37788 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37788, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "86ba4e7b572e6b0817b3268443f3d099fda691e7", + "data": { + "inGameID": 37788 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37788, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "71aa3e9635758b19b98fa1087b3992b644d2775f", + "data": { + "inGameID": 37788 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37788, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "362699cf2c2a9b1b44b926b563cedc4a5391984d", + "data": { + "inGameID": 37788 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37788, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2a72d6dd4d90dc5aba79e6b304135d5e3de9cba0", + "data": { + "inGameID": 37789 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37789, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "23fd3f5a60099ccde5ed9b539d01fbfe54bfa6e7", + "data": { + "inGameID": 37789 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37789, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d9ae46f2722eb048b85cea90530203b3f42a66c4", + "data": { + "inGameID": 37789 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37789, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dc1b4b3b6caa79910711bb9eb371adf0e3799b09", + "data": { + "inGameID": 37789 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 37789, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce0f0ba5650213b7d64e72105e374d5c3a832641", + "data": { + "inGameID": 37789 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37789, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e0e6078dddfeb9934256847b70711be583d2bda8", + "data": { + "inGameID": 37789 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37789, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "16d988bc001e5448c60e9ffd68699fc2beb8ea4e", + "data": { + "inGameID": 37789 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37789, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f61ae2d629dcc5a94a70af2f3322ae79a199d6c", + "data": { + "inGameID": 37789 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37789, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "759df2cea8bfd82055e055868e8270c79a85ed61", + "data": { + "inGameID": 37789 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 37789, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b59e9cef07c2f0b15020bcd3350e04c69a14ebed", + "data": { + "inGameID": 37793 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37793, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f9911f4b57dbc9b907ae63fa6093dec6eaf1a673", + "data": { + "inGameID": 37793 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37793, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6d346f5b60d875e0ac12c940ed3dc18d6cd768b1", + "data": { + "inGameID": 37793 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37793, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b64206e571b86d0990b16cf52657ba5bd867c999", + "data": { + "inGameID": 37793 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37793, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "575d1cdb422fd31204912cfdc5e6a66b75bbd296", + "data": { + "inGameID": 37793 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37793, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2c711bd1f9e24b5960ea55c2a3c52aa53e718421", + "data": { + "inGameID": 37793 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37793, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "23e3bd1125e5a7f351d931506a2e09d91d7dbf84", + "data": { + "inGameID": 37793 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37793, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "82ef07206f71adafb9f670093bc018e328bb2c01", + "data": { + "inGameID": 37794 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37794, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4ca61404c6f7b04cce2f11520abcc674d2b2cbd7", + "data": { + "inGameID": 37794 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37794, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ef70960b133879220ea75325dea0a1b5cf284929", + "data": { + "inGameID": 37794 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37794, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "704b1bcbfac03aa70242edee6b63df4b86dd5e6d", + "data": { + "inGameID": 37794 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37794, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "16013202813c9ffd4a8cbc48d50864f5c6da5b52", + "data": { + "inGameID": 37794 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37794, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ecb2424727fddda0f96aedb6f029852ff8ae59b7", + "data": { + "inGameID": 37794 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37794, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "17c927adbb5289cb204258adaad44f18a86ab01f", + "data": { + "inGameID": 37794 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37794, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "70791b4431122c3c1d7ac929b6b172c30216c10d", + "data": { + "inGameID": 37794 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37794, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c3e824902b55d9195fdde751d8cc32ea1ef63fff", + "data": { + "inGameID": 37794 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37794, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "09689a1bde0ebd49c34752a234f64cf7a04e2f09", + "data": { + "inGameID": 37795 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37795, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a5428cfc1da4e0e88c32af3855ebd52607fd9340", + "data": { + "inGameID": 37795 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37795, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f37e6812737c042490728fbaae553814b64bc45c", + "data": { + "inGameID": 37795 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37795, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "70caf7a8135c0abe64aa34888b8d027b94fe0124", + "data": { + "inGameID": 37795 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37795, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7cd876a410640efaa544b646fa6e4e73ee0cb558", + "data": { + "inGameID": 37795 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37795, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "50d681390b92667884621c803db70a4fd073f490", + "data": { + "inGameID": 37795 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37795, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "704de842b95781db2299e34f3330f8fe379deede", + "data": { + "inGameID": 37795 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37795, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "23174c980dafc1f0282d0eb2f42d5defbe55baa8", + "data": { + "inGameID": 37795 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37795, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d13ca01bfd350e63172f0763ed9134889590057", + "data": { + "inGameID": 37795 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37795, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "beac12fc8c7664de98752e0e76ce7be42a51624e", + "data": { + "inGameID": 37796 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37796, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "55ce1ebe24165ab19df8648555c94c9b37bfdcee", + "data": { + "inGameID": 37796 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37796, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bca04bbdf7229ff5add5c1be5012746df41a8648", + "data": { + "inGameID": 37796 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37796, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dcdb3006240d44493a4e59b5f4ff8569ed1d74c9", + "data": { + "inGameID": 37796 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37796, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "75cf5f1664aae4a0c9e4d804d3ba462049b4be2c", + "data": { + "inGameID": 37796 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37796, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0662efeb0cef1f725b8e965fe7114517be1b23b5", + "data": { + "inGameID": 37796 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37796, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "736a7c462781e10f6ee0ad2ad195de7df3fe053d", + "data": { + "inGameID": 37796 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37796, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2369e90fe05e02339efd1f8c96b664761e79c7ef", + "data": { + "inGameID": 37797 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37797, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ffef550390c9e10de98548e04d7723aed2f46d3a", + "data": { + "inGameID": 37797 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37797, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5336eb068600027bb3d3d0046700969e7848c890", + "data": { + "inGameID": 37797 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37797, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "433578107883a15b558372e2b118dabcf70e07f3", + "data": { + "inGameID": 37797 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37797, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2df46a8fd1e5d969a4bf50ee4d01fcac80820140", + "data": { + "inGameID": 37797 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37797, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "58f2ba6b03deec44c6963a981022511af59e3377", + "data": { + "inGameID": 37797 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37797, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0048ce6d5b609a4f7c6bc50d4c9ccd74e433709e", + "data": { + "inGameID": 37797 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37797, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "20c5fc2499dd02a4ffef198363bab6bbd9a1a04c", + "data": { + "inGameID": 37798 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 37798, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "86417e95285d20d99c0c41b892df0d3a52215109", + "data": { + "inGameID": 37798 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37798, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "806c1140d7e82256c83e74e0b72f8dd47e5092c3", + "data": { + "inGameID": 37798 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37798, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f3314e7e27ba1f9522af1940629b1b5f45f43805", + "data": { + "inGameID": 37798 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37798, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "528736c75e31bec87b2620bd346ac38e1fac100f", + "data": { + "inGameID": 37798 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37798, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "18eb8276b1ed4f7bc9f385025db921ffb4d3dbc5", + "data": { + "inGameID": 37798 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37798, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c7dd6c037bcbc2186241325f029ff1b98c06cf12", + "data": { + "inGameID": 37798 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37798, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "57f7acdb0a77de2ada62eeb257ff5d864fedc83f", + "data": { + "inGameID": 37799 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37799, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "656c738dbb631bd0cc6da7c79ff550a14d587049", + "data": { + "inGameID": 37799 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37799, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce72102b54ec0902f31b913354d44d9906c3eedc", + "data": { + "inGameID": 37799 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37799, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fcd822ae755f1abfa195a65dd36c8d95e58ff691", + "data": { + "inGameID": 37799 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37799, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "caacc52ac07c5f8dde5c182a0bd344f0744c35c6", + "data": { + "inGameID": 37799 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37799, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dab5fcc08de9c4dcda62361375258dcc34fb6a2d", + "data": { + "inGameID": 37799 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37799, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8b6f08da66c6f294e28f04b74d8ec6d394ef7011", + "data": { + "inGameID": 37799 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37799, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "30c2337ce4385681ed7c4b81c34118d0fd7da498", + "data": { + "inGameID": 37799 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37799, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a1643dcc61722f2d55098abf153f191a2d633aa5", + "data": { + "inGameID": 37799 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37799, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5a15823eb6d339f45dccdd2e2bcd12ae0183e9ae", + "data": { + "inGameID": 37800 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37800, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "edf49ecc2eb7724143d9c44dfd1b8f17f03ffc8e", + "data": { + "inGameID": 37800 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37800, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a3324c7adcc87eb4d33ceaa5f2d00b8445f8daaf", + "data": { + "inGameID": 37800 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37800, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4c0840309c7a0ca9b475fb6290bd60f99dfe4c34", + "data": { + "inGameID": 37800 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37800, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b88ffe4b8e7772ff6ded4809df7a0274356a1ac1", + "data": { + "inGameID": 37800 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37800, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b04a47a99dfc9d439e83861163885de02f88ca84", + "data": { + "inGameID": 37800 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37800, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b9ce91d4b31f9ea3c259560ff42e6d2b98a796eb", + "data": { + "inGameID": 37800 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37800, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1905707e9438c7c186282dcf16864eff88be4a92", + "data": { + "inGameID": 37800 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37800, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "545fb23e47bf651a11dca437b7c737a1720490da", + "data": { + "inGameID": 37800 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37800, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c75ef6a28150f9aa02c23d02902f73017409ae75", + "data": { + "inGameID": 37801 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37801, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "170ad0000d215ccb8415b10a8ed3915e41c55b6b", + "data": { + "inGameID": 37801 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37801, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5756fb08270319176f1bcd5567f61fcc81c34bb4", + "data": { + "inGameID": 37801 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37801, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b6d2eff11c8b01eb6b1a4e472a7b6d81f27e0f88", + "data": { + "inGameID": 37801 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37801, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4033539e476f2bb68a8af6889f8018291e8f4412", + "data": { + "inGameID": 37801 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37801, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "43742d064c2f862a78df336ed71c976b11c9c54c", + "data": { + "inGameID": 37801 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37801, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0c4e5dcb90db1587ee7c984d8fc96add02c086ff", + "data": { + "inGameID": 37801 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37801, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eab73fedc34cd99e675e779547fbad4572ac5bab", + "data": { + "inGameID": 37801 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37801, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b98d730a58ef4a4ca3c1d83abc14a256fe24cf01", + "data": { + "inGameID": 37801 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37801, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b973df2fb76c79c52037003726ffa60d52c42033", + "data": { + "inGameID": 37802 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37802, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "39493c03b0759d3fc074fa051f66bb4a2c79d678", + "data": { + "inGameID": 37802 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37802, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7f98589c41399ff22fbb26d63f5c354cd5ce3ce6", + "data": { + "inGameID": 37802 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37802, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4813d7d2e96020fa1d31dcbec34c16cb2aabff60", + "data": { + "inGameID": 37802 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37802, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "51cc424c9769f2d00ee00e7a53e62c428037b88c", + "data": { + "inGameID": 37802 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37802, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "afdf797dd775237ae1ff6c0ca8baeedf5d7d98e4", + "data": { + "inGameID": 37802 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37802, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8c477e94582b73606ef672a3b120c1e91a70121", + "data": { + "inGameID": 37802 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37802, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5ada1ee4ee4a5d3cf4848758f01575d1a8aede53", + "data": { + "inGameID": 37803 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37803, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1566c13d3c252e64880994cc437ce0b4145dc272", + "data": { + "inGameID": 37803 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37803, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4a30dc2d9b6ac4b225d05a3708c345b44a53ab69", + "data": { + "inGameID": 37803 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37803, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5687c91a028df04aa06f6d1989b83c1b37313278", + "data": { + "inGameID": 37803 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37803, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "686c52ef361119a9bccf4b69750091030421b640", + "data": { + "inGameID": 37803 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37803, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c68348ba6218b10963b2acc542299a7b26a85b7b", + "data": { + "inGameID": 37803 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37803, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ac964bf217f257e2f1c0f36ba5ba2ec74a98df8e", + "data": { + "inGameID": 37803 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37803, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bf3c719edd7e3cf8ebb9701f10c537c0edb25fea", + "data": { + "inGameID": 37803 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37803, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "01aef91bcd4e70f5fbd7b076eeb0bae59f4a3eb4", + "data": { + "inGameID": 37803 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37803, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b0c9233dbb67bb118d3ebb2b3bbdb6e95a02ee95", + "data": { + "inGameID": 37805 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37805, + "versions": [ + "konaste" + ] + }, + { + "chartID": "8b9cbcab80ef23a76ba94822fa90b7b30d1a17af", + "data": { + "inGameID": 37805 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37805, + "versions": [ + "konaste" + ] + }, + { + "chartID": "db2de1c7a18d5f2876e9260238c59183076ab650", + "data": { + "inGameID": 37805 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37805, + "versions": [ + "konaste" + ] + }, + { + "chartID": "5a39facefb0f188c9b0ffac8fc10258d03a25f2c", + "data": { + "inGameID": 37805 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37805, + "versions": [ + "konaste" + ] + }, + { + "chartID": "d56ae697bdbceccb953b2387e53f909d0dcbe665", + "data": { + "inGameID": 37805 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37805, + "versions": [ + "konaste" + ] + }, + { + "chartID": "637833e6954151f8c041b5c9ff8405e66c82c0ea", + "data": { + "inGameID": 37805 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37805, + "versions": [ + "konaste" + ] + }, + { + "chartID": "11aacecdecfd10a9621134c8375b1c4663d84ce4", + "data": { + "inGameID": 37805 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37805, + "versions": [ + "konaste" + ] + }, + { + "chartID": "6839a6c32b1c61bb9f833615badbc5e84e98b953", + "data": { + "inGameID": 37805 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37805, + "versions": [ + "konaste" + ] + }, + { + "chartID": "013ae66de8851a5736e40f4b1a35ce0fd28840f2", + "data": { + "inGameID": 37805 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37805, + "versions": [ + "konaste" + ] + }, + { + "chartID": "e2bd91e738b1d12957eebf5742c6ad04a8046595", + "data": { + "inGameID": 37810 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37810, + "versions": [ + "a3" + ] + }, + { + "chartID": "2d343fd54841f62481e16ad596cedb7a819aeb79", + "data": { + "inGameID": 37810 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37810, + "versions": [ + "a3" + ] + }, + { + "chartID": "5e4d4e2d8e06dd9c04d85f945076768fb86d0520", + "data": { + "inGameID": 37810 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37810, + "versions": [ + "a3" + ] + }, + { + "chartID": "9e49a883aa4d6a0743ee9042c8cb7c9cf2266e00", + "data": { + "inGameID": 37810 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37810, + "versions": [ + "a3" + ] + }, + { + "chartID": "cb9eb2b713a4001555520f7f1ade22b1fa804291", + "data": { + "inGameID": 37810 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37810, + "versions": [ + "a3" + ] + }, + { + "chartID": "9ed7ca59fa052a882a27933d3f72599137619885", + "data": { + "inGameID": 37810 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37810, + "versions": [ + "a3" + ] + }, + { + "chartID": "26c434b798cd4cb8b5af3b05b6b3dc730aa35c19", + "data": { + "inGameID": 37810 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37810, + "versions": [ + "a3" + ] + }, + { + "chartID": "826e6ab24de521506f734a090516cbf5ed1382bd", + "data": { + "inGameID": 37810 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37810, + "versions": [ + "a3" + ] + }, + { + "chartID": "d2d75eda1bbda9a934480072daf71755b154bd0d", + "data": { + "inGameID": 37810 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37810, + "versions": [ + "a3" + ] + }, + { + "chartID": "61d7420864597c0a740d01580e28e8435a202edc", + "data": { + "inGameID": 37811 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37811, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "780c22511a2eb22ec2852328ddc676d5b2abb198", + "data": { + "inGameID": 37811 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37811, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "031b161bc7316884825bc5aa9eb7028fb5a97f35", + "data": { + "inGameID": 37811 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37811, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "83c42c1014f2480326e743d152ffbeb15f769ebd", + "data": { + "inGameID": 37811 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37811, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a2cb3eb925628359fa7f2f09a9dbb7f7408f5c9d", + "data": { + "inGameID": 37811 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37811, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9abc97ca14722c3df2d8c66b46ffd7776d5fb917", + "data": { + "inGameID": 37811 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37811, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dfbcd95e4a57093aece6d7a08937d0107c41d8d0", + "data": { + "inGameID": 37811 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37811, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6906a493fc7d370d3b0dd11cb02e3b3f9a8c8517", + "data": { + "inGameID": 37812 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37812, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "57519cd8363e4fa775e7d08fbbbdb045f5ba2d25", + "data": { + "inGameID": 37812 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37812, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3f3eca826ac30d02519e073f9ed8c9ebdb8081c2", + "data": { + "inGameID": 37812 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37812, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f1ad7bdb35778a716f08c44b91da7515ccdab71", + "data": { + "inGameID": 37812 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37812, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d08c7950b7f0f9d775e208af370887ddfbdbbe37", + "data": { + "inGameID": 37812 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37812, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "70bc55e6d62b9120bae8039127f0c8bdad5ad0a0", + "data": { + "inGameID": 37812 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37812, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d8164f5d1d6574f1ad481a35fc1295c48c23670d", + "data": { + "inGameID": 37812 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37812, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e9ca677fdac98ed761ede0f6b735bcfc8af85baa", + "data": { + "inGameID": 37813 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37813, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d3396443a10bbf3f89c5394f0615c7c16016b2fb", + "data": { + "inGameID": 37813 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37813, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "876f60c06698a1d213521eb446bacce213e97c99", + "data": { + "inGameID": 37813 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37813, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3024dded1bb4a94c0da08c88cfad15e2cf62ddab", + "data": { + "inGameID": 37813 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37813, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0a9a2423bdfe676b232d913de57ce252f6b0b920", + "data": { + "inGameID": 37813 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37813, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "831b5c478b9c57733ddc6cc869e77601ffc5a29c", + "data": { + "inGameID": 37813 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37813, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "45b09e09a99b853685aaf4a163bfa7b81f47ac70", + "data": { + "inGameID": 37813 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37813, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e1d87c779bd5c9c0bd1a56e5e8bc244fe95a8c3c", + "data": { + "inGameID": 37814 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37814, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "280dc62a3461c39aa1a22db269ab871cc076301c", + "data": { + "inGameID": 37814 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37814, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5924b5d1be71d3a0ca01f885738ba0c66b36926b", + "data": { + "inGameID": 37814 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37814, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d720417791cfacc75e46e824cd93b808020d796", + "data": { + "inGameID": 37814 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37814, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8a7291251d9f68bc122903cd6003bb17448d1d65", + "data": { + "inGameID": 37814 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37814, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c81b8b06bd7357dba9f23892a494ed0f37480b42", + "data": { + "inGameID": 37814 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37814, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b1710c00ae6ada6abf0cb9b62331eaaba594f8a6", + "data": { + "inGameID": 37814 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37814, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e618f760d857df31ab79ec01e20e02d3331a5aa4", + "data": { + "inGameID": 37815 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37815, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "870b37c2d081ec31ab1708fb9f849bb32ac73bd9", + "data": { + "inGameID": 37815 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37815, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8f69cfb398a45b11f09ad978e17ded6d359e3ce", + "data": { + "inGameID": 37815 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37815, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3747ff7d6465a440093b3d0a513601fb738ac4a4", + "data": { + "inGameID": 37815 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37815, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f8f977b6a042ccd167c8f1192b92a8feb48ddeee", + "data": { + "inGameID": 37815 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37815, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6b456c201acfff2675dac7c1167e5c9cdb6503ff", + "data": { + "inGameID": 37815 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37815, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3073ea52c9bba6f0f442ff6d179d9c9d018f4cbb", + "data": { + "inGameID": 37815 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37815, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "37c8a0f8e74a454ff3ac8234cceba26a1e6084d5", + "data": { + "inGameID": 37816 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37816, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0ed05f8538b15a8aad15e746d48f48683bd07537", + "data": { + "inGameID": 37816 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37816, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6924aa083c701ae565d7824011028f819635d49c", + "data": { + "inGameID": 37816 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37816, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7b0082b7b60f4a6881f1df9da02c8686faa2df13", + "data": { + "inGameID": 37816 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37816, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "64b29724e07bd85261ab22463f86bb1daca31003", + "data": { + "inGameID": 37816 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37816, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cb72ae6a9de82c287cb698ddbe8d5bcafe17724f", + "data": { + "inGameID": 37816 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37816, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8b0ce7dc19e0dbcba08ac9ccc42744ab49a38220", + "data": { + "inGameID": 37816 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37816, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "32ff4cd8118621ade817d18278f6fb83d74c9f08", + "data": { + "inGameID": 37827 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37827, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6a612f99a526e27ef601c6dd4e144bb074ea84b0", + "data": { + "inGameID": 37827 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37827, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "40e73361836fdb22f09d2c81da2206ef474c3c10", + "data": { + "inGameID": 37827 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37827, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4da4f06bc3d59ba498812d5bd5f4b15cf4c05e1e", + "data": { + "inGameID": 37827 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37827, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8aac1b508512ccf959860b7934f82c70410c62f7", + "data": { + "inGameID": 37827 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37827, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e62cefe63efa3043e32baea773a3f55a358035e1", + "data": { + "inGameID": 37827 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37827, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "18e2ef061a1ca08f73b699f66cac95c25741f53a", + "data": { + "inGameID": 37827 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37827, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d554a8e3de8f7fad8cb1ea10f35b3985809af0b", + "data": { + "inGameID": 37828 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37828, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5179115d341a704bf279ff8a407400f20c1d7c10", + "data": { + "inGameID": 37828 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37828, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bcb4f4d6b2106a34778249d6d48fd150432abcbd", + "data": { + "inGameID": 37828 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37828, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "76883b37470fbaf048bcdd9e764744d8b285959a", + "data": { + "inGameID": 37828 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37828, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c7bc1f36a101129696efe6bdcbac736c563151b9", + "data": { + "inGameID": 37828 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37828, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d8cb5f749ec63b159457f7943cace35f227ce669", + "data": { + "inGameID": 37828 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37828, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f52454df5ece89402f82b0013bfaaa8f3915320", + "data": { + "inGameID": 37828 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37828, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6167316ec634b890fc4eeebf38a733e99a66615c", + "data": { + "inGameID": 37828 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37828, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "10e2e509020ea2bc7ec823cd8e59e1a988868f54", + "data": { + "inGameID": 37828 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37828, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "83345fba2323504393410c8cc64958001492f826", + "data": { + "inGameID": 37829 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37829, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fc7132b6754259915be9ff696b74242d87d81aad", + "data": { + "inGameID": 37829 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37829, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "13260cef3a6b40fcbfaef730b1a1a1f64761f55b", + "data": { + "inGameID": 37829 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37829, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1bccd81daf6fdbeeb98b8d003760f0e84c6bd74b", + "data": { + "inGameID": 37829 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37829, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "009fc62f623bf054389b848d64e1c149655598dc", + "data": { + "inGameID": 37829 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37829, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c8dc945997ff399238571c3e4027863c2daf6c44", + "data": { + "inGameID": 37829 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37829, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e111c0105bd9768bd01cf687a8d67e703ee39c14", + "data": { + "inGameID": 37829 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37829, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b5f0c505e00b3fc236df2fa392a277cefbb8dab1", + "data": { + "inGameID": 37829 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37829, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "54e0d27ec1fa199c9cb9fa86a944fe5864697ac1", + "data": { + "inGameID": 37829 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37829, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1384b3ebdec6a754482e171bf380ea5835374dad", + "data": { + "inGameID": 37834 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37834, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c0d44fcadc9cb645c941759cee50849a6f5f7c7e", + "data": { + "inGameID": 37834 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37834, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff83be8be9cf1f4b54c028281721be8b5153f34a", + "data": { + "inGameID": 37834 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37834, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f7dd92cf03e8e40817c034b2ad09a64e05ff00dd", + "data": { + "inGameID": 37834 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37834, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "87fa45b096bf9862e0b16be6bea0430ace775757", + "data": { + "inGameID": 37834 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37834, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "24c8f14fdc2e6c32ae7a0b909ed61461350d3f7f", + "data": { + "inGameID": 37834 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37834, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "335a38e867d592737b2ae9fc596de08813bd1ab6", + "data": { + "inGameID": 37834 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37834, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d30820e06677de414c78dbab1b400550f6c94568", + "data": { + "inGameID": 37834 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37834, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9d0a4f69fca4b4257f9e171b2496d0dd870f1f11", + "data": { + "inGameID": 37834 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37834, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ac71586789f4d7f0e2d6aa7d9e5887c2cc664375", + "data": { + "inGameID": 37836 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37836, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cb392cd7bab45f9896785b5e47d9dd498913793d", + "data": { + "inGameID": 37836 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37836, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "074e164369097a85cb4a85da2a27582ecb2f154a", + "data": { + "inGameID": 37836 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37836, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "960c8f83a44e1985419db98dc15dccd8de96709c", + "data": { + "inGameID": 37836 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37836, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2cf116e1b242fd78b375f5eb5384473e1792018e", + "data": { + "inGameID": 37836 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37836, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f696b8b2245ad9080aa7093b9f9fe92be6bc270b", + "data": { + "inGameID": 37836 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37836, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "71398bfd78537e27ee65134f398c8e6735b4f908", + "data": { + "inGameID": 37836 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37836, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "968ab4e46e5598e0e80839e528cb2a0a741ba057", + "data": { + "inGameID": 37840 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37840, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "393ffc2e3b176c454fac3970b591e04fb781f3d4", + "data": { + "inGameID": 37840 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37840, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "feb317b4ffb013309589aca09c933d26105e856d", + "data": { + "inGameID": 37840 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37840, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "55dffd615e11214121793df54a0af673328f1a1b", + "data": { + "inGameID": 37840 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37840, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6e8b91a1b04b615b8cda73da2059cd6deecaa230", + "data": { + "inGameID": 37840 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37840, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "073f8ec07ffb6f4e44ea69daa5af2e7f5718eb62", + "data": { + "inGameID": 37840 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37840, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4f2a36e1fbdabbe55f1803117e05eb0b9c72ff00", + "data": { + "inGameID": 37840 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37840, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "690beae2608edbe371414104d92ba101e4fd176f", + "data": { + "inGameID": 37840 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37840, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c8f3d3338ef2892e1610648090ee23e06a7da8d2", + "data": { + "inGameID": 37840 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37840, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "82b45465a557f8144c981edf4b860d49405b1b77", + "data": { + "inGameID": 37859 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37859, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ec066bbc42a0c36e224b91ae65d8205bb38aadcc", + "data": { + "inGameID": 37859 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37859, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5c647fb22edfe045e8e25a5d5f482749de5d1204", + "data": { + "inGameID": 37859 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37859, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b33996135bc43caf79f07ae71764939686df723f", + "data": { + "inGameID": 37859 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37859, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0a0cdc8075b1b15a9a1a88857c2bc6752d433b9d", + "data": { + "inGameID": 37859 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37859, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "599d876510f999619311f6b9a84c9e970759f465", + "data": { + "inGameID": 37859 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37859, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f41e7ca19cc2fae1a27e7fb5e953a28106eb291", + "data": { + "inGameID": 37859 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37859, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "23acd59ba71db0c208cbb79ab6145f97a6bc6e4b", + "data": { + "inGameID": 37859 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37859, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a8f728584b0fbacaf2602ca6d553896978e2ce3f", + "data": { + "inGameID": 37859 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37859, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a5a47748b900f4a2bffdbbebc9ff5f91ea902c86", + "data": { + "inGameID": 37860 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37860, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5b1f9d53f5a3c2a23e39ed631805248747fd7c2a", + "data": { + "inGameID": 37860 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37860, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8d48bfd084e59f9441a914be563645e7b02979e1", + "data": { + "inGameID": 37860 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37860, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "19a5f710a63d28e5836d047ccdfed0b0a6897936", + "data": { + "inGameID": 37860 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37860, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "58991ddf8432eb9341fa61e38b7655ecadeadc82", + "data": { + "inGameID": 37860 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37860, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b0946cd4103ba35d693a597ef33538aa252224d0", + "data": { + "inGameID": 37860 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37860, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c5c580af87ec99d8a4296128ee11e1753e79de16", + "data": { + "inGameID": 37860 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37860, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a47c2e1f8c236fbf077221c9c9542b69261a9884", + "data": { + "inGameID": 37860 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37860, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "922491ef5d25e3ad5419790e352727fc36a8b32b", + "data": { + "inGameID": 37860 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37860, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "722a6e70cd00e4b1c897337889873c999d3d323a", + "data": { + "inGameID": 37861 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37861, + "versions": [ + "a3" + ] + }, + { + "chartID": "a4927f914be892becefbe4eab8fbe1abb12ea5ed", + "data": { + "inGameID": 37861 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37861, + "versions": [ + "a3" + ] + }, + { + "chartID": "fe537611d55b2d72193437f4e9c5526936e422cf", + "data": { + "inGameID": 37861 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37861, + "versions": [ + "a3" + ] + }, + { + "chartID": "b8f5c174759f8f8a0937a8f466263d71c5dff6d6", + "data": { + "inGameID": 37861 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37861, + "versions": [ + "a3" + ] + }, + { + "chartID": "59e47e5448d98f9a3113373b008377a8b323293b", + "data": { + "inGameID": 37861 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37861, + "versions": [ + "a3" + ] + }, + { + "chartID": "141e15f97eee35890db795d7418957d8a19d9669", + "data": { + "inGameID": 37861 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37861, + "versions": [ + "a3" + ] + }, + { + "chartID": "b395f8c864c9de291d3ba3826dfc6277e2d1a3ed", + "data": { + "inGameID": 37861 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37861, + "versions": [ + "a3" + ] + }, + { + "chartID": "4fa91644c290b3e7bc42b983ccf97ec9ef6996b1", + "data": { + "inGameID": 37862 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37862, + "versions": [ + "a3" + ] + }, + { + "chartID": "f0035d3728b16bcea00cb10388951ad553211843", + "data": { + "inGameID": 37862 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37862, + "versions": [ + "a3" + ] + }, + { + "chartID": "2bf022cc7bd82a9b5a94c8513a19de709165938f", + "data": { + "inGameID": 37862 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37862, + "versions": [ + "a3" + ] + }, + { + "chartID": "a686e21dc82182550a5fc860b673982fd8286962", + "data": { + "inGameID": 37862 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37862, + "versions": [ + "a3" + ] + }, + { + "chartID": "4d582af3b1229c8561178bdab95eeaf9759bbee5", + "data": { + "inGameID": 37862 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 37862, + "versions": [ + "a3" + ] + }, + { + "chartID": "2a16cddc402b22d7901300efc971927adf448a41", + "data": { + "inGameID": 37862 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37862, + "versions": [ + "a3" + ] + }, + { + "chartID": "8839744d81bd8c095a3a51b475f3d97b86062c65", + "data": { + "inGameID": 37862 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37862, + "versions": [ + "a3" + ] + }, + { + "chartID": "d93a7004b42c336b52e1d31a928d348a6216bf5f", + "data": { + "inGameID": 37863 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37863, + "versions": [ + "a3" + ] + }, + { + "chartID": "0570c8f67989c07610ea59e01c100b6b880dd6e4", + "data": { + "inGameID": 37863 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37863, + "versions": [ + "a3" + ] + }, + { + "chartID": "796b0edae8c319ac815a2a2013a07c0cd446b843", + "data": { + "inGameID": 37863 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37863, + "versions": [ + "a3" + ] + }, + { + "chartID": "174f3e5c954af8e0ccedd26c8752d17fe7a9ebd4", + "data": { + "inGameID": 37863 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37863, + "versions": [ + "a3" + ] + }, + { + "chartID": "a5af76113c057e43637b245dcbf1da6cf35fa915", + "data": { + "inGameID": 37863 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37863, + "versions": [ + "a3" + ] + }, + { + "chartID": "604f7ca687a8e56e3509f4c6acfe4fd5bbc9416d", + "data": { + "inGameID": 37863 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37863, + "versions": [ + "a3" + ] + }, + { + "chartID": "a3e061c88cf46bdbcdca6d1d830aa36196ebf3ef", + "data": { + "inGameID": 37863 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37863, + "versions": [ + "a3" + ] + }, + { + "chartID": "3a12e6e90470d23f00c6a03962fc668152d5204e", + "data": { + "inGameID": 37864 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37864, + "versions": [ + "a3" + ] + }, + { + "chartID": "2f47b635a2e94a021d25602d49b1a8fd6f193c4e", + "data": { + "inGameID": 37864 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37864, + "versions": [ + "a3" + ] + }, + { + "chartID": "4a30bfafd6e6adf0e253ca02482fb2db3d91ba66", + "data": { + "inGameID": 37864 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37864, + "versions": [ + "a3" + ] + }, + { + "chartID": "2e2d86a69ea60bce194da2f7e18bec11ee0b6d59", + "data": { + "inGameID": 37864 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37864, + "versions": [ + "a3" + ] + }, + { + "chartID": "7afb46a9aaf13210298879040a377fa355d13d05", + "data": { + "inGameID": 37864 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37864, + "versions": [ + "a3" + ] + }, + { + "chartID": "71390b11f2d4f2e7085fb64bbdbbea76dc77c85b", + "data": { + "inGameID": 37864 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37864, + "versions": [ + "a3" + ] + }, + { + "chartID": "ca6678c7a9887f007772ced79ec700c7a90c817c", + "data": { + "inGameID": 37864 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37864, + "versions": [ + "a3" + ] + }, + { + "chartID": "a8b601d848d803be7f712a4d98c5ef693558850d", + "data": { + "inGameID": 37865 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37865, + "versions": [ + "a3" + ] + }, + { + "chartID": "fa255fef4ec6294ff6111717525df6abcdcf7f55", + "data": { + "inGameID": 37865 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37865, + "versions": [ + "a3" + ] + }, + { + "chartID": "8f62fdcb6ac3d0136c2ac2280a98f91eabe7e64e", + "data": { + "inGameID": 37865 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 37865, + "versions": [ + "a3" + ] + }, + { + "chartID": "00df0a24cbbedd1ac0fd34f7c09ff017456ce5e9", + "data": { + "inGameID": 37865 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37865, + "versions": [ + "a3" + ] + }, + { + "chartID": "5e7733d2de6063d6ab4a5a02c7b2bc6f6d1e4811", + "data": { + "inGameID": 37865 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37865, + "versions": [ + "a3" + ] + }, + { + "chartID": "4109b45e54000549100f6b08fc464dce6d35953f", + "data": { + "inGameID": 37865 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37865, + "versions": [ + "a3" + ] + }, + { + "chartID": "9179be68df51b27346dc0946343226e0521de619", + "data": { + "inGameID": 37865 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 37865, + "versions": [ + "a3" + ] + }, + { + "chartID": "bfbff2a57f0ee8d20b61d5721b592b08ab7ea5ae", + "data": { + "inGameID": 37866 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37866, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9fffbdd69b90573eeca479686ac802ba910a2cad", + "data": { + "inGameID": 37866 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37866, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c7b0bbe69317872666eb2d6c392694b16bb50ad8", + "data": { + "inGameID": 37866 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37866, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7e0fbf2b10e7f65d7742b46b4793a856b8436263", + "data": { + "inGameID": 37866 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37866, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a757d82af1cc5a1939ec9f86090374bf182cba63", + "data": { + "inGameID": 37866 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37866, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "db8371312f059668b23361b22444eb10f76827f1", + "data": { + "inGameID": 37866 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37866, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "47d25bacbf2cf60d8c497a722aa3a2035565dbe2", + "data": { + "inGameID": 37866 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37866, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "841b8bfefeac761f0ff8728125eb1f85da0c95ad", + "data": { + "inGameID": 37866 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37866, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b61881ea2a5158100a40d4fd50154ef65bf4e49a", + "data": { + "inGameID": 37866 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37866, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5c50f0d8552c3c6c27028685f0f03711c029ecce", + "data": { + "inGameID": 37867 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37867, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6eb3b09c621e8299fc4800f7a5af00cb29644de6", + "data": { + "inGameID": 37867 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37867, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "47dee1855cb0ad64916e77b291f45686623b9ffa", + "data": { + "inGameID": 37867 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37867, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a079fd99ee10369310c8b5a067d8f9c6c2068e42", + "data": { + "inGameID": 37867 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37867, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "274aac0d63fbbaeee398715697b0a581bc16b172", + "data": { + "inGameID": 37867 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37867, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "577dc1051eb91fc1e6295a1baf14e932de7803e5", + "data": { + "inGameID": 37867 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37867, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "40ca704ad49c2c74ac9f4293991fff11c07bbfbe", + "data": { + "inGameID": 37867 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37867, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "550781e4201fa0103da55daeb5c9527dec5418d6", + "data": { + "inGameID": 37867 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37867, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f5c4e1fc59966c42c59362ebfcdd12a2d1c2191f", + "data": { + "inGameID": 37867 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37867, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ef7270b93cb75f48d0f2d59c7459447ba79a8429", + "data": { + "inGameID": 37868 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37868, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "688a2b3a7255cca998a3e36868abd6eda684f6ac", + "data": { + "inGameID": 37868 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37868, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9cfa97e63a2258dd042d983b2701fdd1134c2cf2", + "data": { + "inGameID": 37868 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37868, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b593d5a81d6ae687d999748e8839cc81ed050360", + "data": { + "inGameID": 37868 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37868, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0d0a75bd1c09a4c96859e90199ef4d2ac35ce1a1", + "data": { + "inGameID": 37868 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37868, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "35ce8b576e90d0b1d483b9d1e09e79aa4ae5e40d", + "data": { + "inGameID": 37868 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37868, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fc0d5d63ed4de73e7f080bb9fef095797528f84d", + "data": { + "inGameID": 37868 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37868, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a52a0d0a1c3f56488c8fb2c0ef8f77bedc0b85d1", + "data": { + "inGameID": 37868 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37868, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "be7c71e753a1ab470aeb49508feafdf500e2e4c2", + "data": { + "inGameID": 37868 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37868, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "edd07ee7789cdf406ffccde92ab8ce6652ce4ef5", + "data": { + "inGameID": 37869 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37869, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f7a34a716e11d296c90aad714f3655d9095d5dac", + "data": { + "inGameID": 37869 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37869, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a060959cc98347117d6eacd45cbdcc2c578ce546", + "data": { + "inGameID": 37869 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37869, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9a3d0e4f91272008fbcb964a4395f0141d3fb238", + "data": { + "inGameID": 37869 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37869, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ed777bb88b05533dbd6e006caede52b613ad0b99", + "data": { + "inGameID": 37869 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37869, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f7ea83aad7ff83b411bf62699779b63f2bc8039", + "data": { + "inGameID": 37869 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37869, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c211121483de67e16f30c8a4039a1c03e99e128b", + "data": { + "inGameID": 37869 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37869, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f345bb70176ed9c0d5b2c681aa525d75eb052b2c", + "data": { + "inGameID": 37870 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37870, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e949c5609b9318f946b020e8afec164573e59db2", + "data": { + "inGameID": 37870 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37870, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ed4b46cbd74851e48f716edc0e844f8c895f9c8", + "data": { + "inGameID": 37870 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37870, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "854ee119654b83e651836409ada017a365d37470", + "data": { + "inGameID": 37870 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37870, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2dc4ce6897bb9a06740f1211566454596e98c832", + "data": { + "inGameID": 37870 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37870, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "066069011067e20da55dbbfbcfa678f103927e9f", + "data": { + "inGameID": 37870 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37870, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "615cfb503246e1cec175e05623f99e62e8ce3061", + "data": { + "inGameID": 37870 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37870, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "93e7f7b94c194b2b12e04e499aa030cbaf9ea351", + "data": { + "inGameID": 37870 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37870, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3793342ad06798220e0853620a23d5520588c2e9", + "data": { + "inGameID": 37870 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37870, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "402cb4992377613464343a9423eb0184747a0495", + "data": { + "inGameID": 37871 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37871, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b24a58979ffca211086ba5e332c62ad76e922e69", + "data": { + "inGameID": 37871 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37871, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "94e737c0a330346f36e4f9252562af120a01c0cd", + "data": { + "inGameID": 37871 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37871, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9a94551fa51c81b73effc0e63c0ca50a06f6afea", + "data": { + "inGameID": 37871 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37871, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3a3f3040fe8bf50516a2c7dfb485894c887674cc", + "data": { + "inGameID": 37871 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37871, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a154dec9c6d4225b91ffc6ccc9b347ef45ba6b8f", + "data": { + "inGameID": 37871 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37871, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "adf675addb0eedc2a79959487df28eaa2ea0f256", + "data": { + "inGameID": 37871 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37871, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "008c838c9f93a9f4b0a928ab34e247612882931d", + "data": { + "inGameID": 37871 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37871, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "539190e8ea0dca6e8a0f35ae1009c9777cd1cf47", + "data": { + "inGameID": 37871 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37871, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2b453566822abc5f9705c6809a3e7a26d99c944a", + "data": { + "inGameID": 37881 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37881, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9cc8f7d2a0dc8d93fa76c579a5809d363fb7f87f", + "data": { + "inGameID": 37881 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37881, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ced3b0a821c1a3ca99190958bc99a0fee682bb8a", + "data": { + "inGameID": 37881 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37881, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d7c0e23d4a487a02184315a72e19805d45e786a7", + "data": { + "inGameID": 37881 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37881, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eb02e8ec2455b6b55c2e0689d6e2adcf22125ee0", + "data": { + "inGameID": 37881 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37881, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2655e742eb821bb5e188452801307347e1beba85", + "data": { + "inGameID": 37881 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37881, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "60e738508fbdf6e299c7c529ef342e6d2f6901ac", + "data": { + "inGameID": 37881 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37881, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2c8ce519d763efc4d7d6f99d16c235515f10c934", + "data": { + "inGameID": 37881 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37881, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b0d64318f98176d7d42c307802fe477169ee3801", + "data": { + "inGameID": 37881 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37881, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fa53e0b1ee9ed5459be85af6ac63beec34c12006", + "data": { + "inGameID": 37882 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37882, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7f3b69bb62c511cba03c7441d6a4806b0af4db6e", + "data": { + "inGameID": 37882 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37882, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9edbb34cb47a3f4417ca13d8f4fd2fa2c2e21614", + "data": { + "inGameID": 37882 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37882, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "baf61ddcd4a2718ed44211cd5c2c32df229b3d64", + "data": { + "inGameID": 37882 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37882, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fdf91f1de4e987bd26cd99af3c5cc12a5eda8879", + "data": { + "inGameID": 37882 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37882, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5b730adf1f1275ee5df6c5b922dc4e0f29ea3c4b", + "data": { + "inGameID": 37882 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37882, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ca58b89f63ff3865b885ef656cc251be765ee2ca", + "data": { + "inGameID": 37882 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37882, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aa230f9ea9ea607239d3aa8b6dfe47f3f0484a2f", + "data": { + "inGameID": 37882 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37882, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cb755adaeb9aae15ce30af3b179c7a9a1a62c400", + "data": { + "inGameID": 37882 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37882, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e781bf8abee4fe5a9b8a5c93e2bae3aae260d4f3", + "data": { + "inGameID": 37883 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37883, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "db608e486187ac03fd8aa3b6bba916b11948c94f", + "data": { + "inGameID": 37883 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37883, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "019f86c0ec749357c362969488aafe9d346c0acf", + "data": { + "inGameID": 37883 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37883, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9185ac16f90769ae35a761e0d0843ef378ff7b04", + "data": { + "inGameID": 37883 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37883, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b222473a26164c49e4f1e0922910b0677d04eac9", + "data": { + "inGameID": 37883 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37883, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "db1301fb04bcfb972ab82ca0a8669df934d3f3c7", + "data": { + "inGameID": 37883 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37883, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "da1bef16f00ea4b6c27f8ced02eb500c867d9a8c", + "data": { + "inGameID": 37883 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37883, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2b914d3b1da976dfe5bea82fac95adf7cb3ebd6a", + "data": { + "inGameID": 37883 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37883, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b6d4339f786d0a40de42ab51ac91993a6315658a", + "data": { + "inGameID": 37883 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37883, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "12dfa6ccf9e25587a899ff10793da6b72db71403", + "data": { + "inGameID": 37884 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37884, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0cf96520df7793dae064b7146b0f94c4c6010b11", + "data": { + "inGameID": 37884 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37884, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "069e7cb92486ae46f58fee76102901a18d0a1e00", + "data": { + "inGameID": 37884 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37884, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3a4e616292ff2546d9eca43990b0d4b4daacee8a", + "data": { + "inGameID": 37884 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37884, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "18dd8fbfddf76881b2b8fc1f29a788e5ccc10171", + "data": { + "inGameID": 37884 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37884, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "19e4353413f685ee22c795635fce8ce3a05510ab", + "data": { + "inGameID": 37884 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37884, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c1b4e29f2ef48f5fd565e00a96c38107c89eee37", + "data": { + "inGameID": 37884 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37884, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "11351a8b7b8e9c69dc532f8f74aa846e64d68c2c", + "data": { + "inGameID": 37884 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37884, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "47794504d89b9c1a2c5cae3cf8839ac6a6758860", + "data": { + "inGameID": 37884 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37884, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "64086e95390fa6e661b1ec5db49d2abd62397a66", + "data": { + "inGameID": 37885 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37885, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bd9e1a452ce8547f6523b6d75f484af2f314ecac", + "data": { + "inGameID": 37885 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37885, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "409e0f69a670d60b395ca19e26f686de4e2f12aa", + "data": { + "inGameID": 37885 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37885, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4d776093cf2e167d63572f77a41b96f74195b9b1", + "data": { + "inGameID": 37885 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37885, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "073ac011ba11bf54baa39d0e9ac615610aec9c36", + "data": { + "inGameID": 37885 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37885, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "db98b9f5d977289af7a1c59bd16aa56819f02b52", + "data": { + "inGameID": 37885 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37885, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8729c47c8177743cac350cdf7fbcb63e4cc270f7", + "data": { + "inGameID": 37885 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37885, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cd7b91a869476fc9aa5eec6651906dd58dcdb237", + "data": { + "inGameID": 37885 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37885, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "95fc662524398d81bda04c44206886d633e469b7", + "data": { + "inGameID": 37885 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37885, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2d4a975467304a6427d5ad92bea21e9a98fa6d48", + "data": { + "inGameID": 37886 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37886, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8d05a234a2bdc46e7d6f1d065ee70acbbdacca3d", + "data": { + "inGameID": 37886 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 37886, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "55eb8874b817629a1fa4c0db8084857292cb42b2", + "data": { + "inGameID": 37886 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37886, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8bed905ce4f52ca4d76f168f64031a59a7486669", + "data": { + "inGameID": 37886 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37886, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cbd1cdecbb4122bcd9ba35872be2d635d395c11c", + "data": { + "inGameID": 37886 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37886, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "06f64a4a90933045eae114ddc345dbf7ca0a9382", + "data": { + "inGameID": 37886 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37886, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f660ed0ddadc87e3d614c1891796f2bbf4808dc5", + "data": { + "inGameID": 37886 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37886, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4bae75d87b23a3d794250e3004951403d28216b9", + "data": { + "inGameID": 37886 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37886, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "34a3b775aa33ef80201b0839f43bc744afe5886b", + "data": { + "inGameID": 37886 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37886, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "41d129aaecdb3789e6b47797a6cc9f09a0b973c2", + "data": { + "inGameID": 37887 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37887, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9cd2648312bf77d0ea86c58f200e5a85d4bc5840", + "data": { + "inGameID": 37887 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37887, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "353c5435197107a360b36cc24dfab1c628b04d19", + "data": { + "inGameID": 37887 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37887, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "39231b755776d4a5dd77304ce9e1b1ae6cd7ccda", + "data": { + "inGameID": 37887 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37887, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a0e0f3ac4d3a239a29b6589bf6801d0d9836a347", + "data": { + "inGameID": 37887 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37887, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "75164835e1fab092233b0b3bd3fba3e695684c9c", + "data": { + "inGameID": 37887 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37887, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "095521648506f64161125e45c02f316c17e287ab", + "data": { + "inGameID": 37887 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37887, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "33320cf8762c07ecca63dd1ab609270c6c8f9308", + "data": { + "inGameID": 37887 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37887, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "603972f8e638e96d19539329d98ada92d5950b24", + "data": { + "inGameID": 37887 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37887, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b364665d7ea81a6d56b909ca22ce831a59463ba4", + "data": { + "inGameID": 37889 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37889, + "versions": [ + "a3" + ] + }, + { + "chartID": "b2cbf99ece8dda68b2022806f4edc5169763c173", + "data": { + "inGameID": 37889 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37889, + "versions": [ + "a3" + ] + }, + { + "chartID": "f5e27d4d5e2e8600a3362d680cbe9038e8bcce3b", + "data": { + "inGameID": 37889 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37889, + "versions": [ + "a3" + ] + }, + { + "chartID": "a43fdcb0242b8f2fcdb433d9d59c642a7ac15dce", + "data": { + "inGameID": 37889 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37889, + "versions": [ + "a3" + ] + }, + { + "chartID": "183292f5d0bcb1aadf9cae6cb280472b98e1d948", + "data": { + "inGameID": 37889 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37889, + "versions": [ + "a3" + ] + }, + { + "chartID": "e5802cfb89b50db9cd9cfcafbe9481afdc32765d", + "data": { + "inGameID": 37889 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 37889, + "versions": [ + "a3" + ] + }, + { + "chartID": "3d340f024613034f5e5a9e5433b9fd5962c0e181", + "data": { + "inGameID": 37889 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37889, + "versions": [ + "a3" + ] + }, + { + "chartID": "296905ed475536c852a5684b8dc4ecaa5adbcb14", + "data": { + "inGameID": 37889 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37889, + "versions": [ + "a3" + ] + }, + { + "chartID": "ea7807dfb5c605caf16107521e44e3562eae632a", + "data": { + "inGameID": 37889 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37889, + "versions": [ + "a3" + ] + }, + { + "chartID": "a6a4f98bbd1e8f9108901cef33d56ff89d7fe56c", + "data": { + "inGameID": 37891 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37891, + "versions": [ + "konaste" + ] + }, + { + "chartID": "1053be545b02effa35d64974afa395c9e67c9a93", + "data": { + "inGameID": 37891 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37891, + "versions": [ + "konaste" + ] + }, + { + "chartID": "2cf62b12d1a71af6c8e19d2f471ab329dd0a4573", + "data": { + "inGameID": 37891 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37891, + "versions": [ + "konaste" + ] + }, + { + "chartID": "8bf4029a3f7104bc6415c4f89cede7b0a6365de1", + "data": { + "inGameID": 37891 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37891, + "versions": [ + "konaste" + ] + }, + { + "chartID": "95424d39d0a8c9974d4b923c541bbb1ce71fc398", + "data": { + "inGameID": 37891 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37891, + "versions": [ + "konaste" + ] + }, + { + "chartID": "542041563e12f3de99e6a3a873309e9b6d0a93b2", + "data": { + "inGameID": 37891 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 37891, + "versions": [ + "konaste" + ] + }, + { + "chartID": "9c8933c369e15d6d1b31b7314d763613d48156b2", + "data": { + "inGameID": 37891 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37891, + "versions": [ + "konaste" + ] + }, + { + "chartID": "3c8071129c1d3d3bc30f79160cfaaa63256baf20", + "data": { + "inGameID": 37891 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37891, + "versions": [ + "konaste" + ] + }, + { + "chartID": "5aab826d55fc91d329c941c93259e5a3d75eee28", + "data": { + "inGameID": 37891 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37891, + "versions": [ + "konaste" + ] + }, + { + "chartID": "5d88923996521def70b41f818dd285273a880234", + "data": { + "inGameID": 37892 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37892, + "versions": [ + "konaste" + ] + }, + { + "chartID": "bdf0e8cb6e5ef3d8c801862686376c9c36764888", + "data": { + "inGameID": 37892 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37892, + "versions": [ + "konaste" + ] + }, + { + "chartID": "09508f7c133861e596ce898383b313c8fcc9f1b1", + "data": { + "inGameID": 37892 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37892, + "versions": [ + "konaste" + ] + }, + { + "chartID": "1ea7d2acde726f5090bbf5ce733543a0af9bbb33", + "data": { + "inGameID": 37892 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37892, + "versions": [ + "konaste" + ] + }, + { + "chartID": "67cc1d556bf7566f07d6a7a6b9195c20e8134b28", + "data": { + "inGameID": 37892 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37892, + "versions": [ + "konaste" + ] + }, + { + "chartID": "dd6247c6df61b993faea7b2bcc564965d8bb46fa", + "data": { + "inGameID": 37892 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37892, + "versions": [ + "konaste" + ] + }, + { + "chartID": "4a0c4adc30b3a1c655c2fe159268d00320da4396", + "data": { + "inGameID": 37892 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37892, + "versions": [ + "konaste" + ] + }, + { + "chartID": "6406d1a865a1ba065b5230e55bd1e8bd8e02f825", + "data": { + "inGameID": 37892 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37892, + "versions": [ + "konaste" + ] + }, + { + "chartID": "424807b4c15bd8b69461187a51857b135d1b2cce", + "data": { + "inGameID": 37892 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37892, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f31980669d6a3a1d98f3756c8e7782296a9cbd39", + "data": { + "inGameID": 37893 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37893, + "versions": [ + "a3" + ] + }, + { + "chartID": "4a39fe67326ceafc49f3c2f1d7ad4412117d5bd9", + "data": { + "inGameID": 37893 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37893, + "versions": [ + "a3" + ] + }, + { + "chartID": "b2274e4848d40343868f7262667f05817cdea581", + "data": { + "inGameID": 37893 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37893, + "versions": [ + "a3" + ] + }, + { + "chartID": "554df5daa710d8d8dba538298eac624fa0ea1521", + "data": { + "inGameID": 37893 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37893, + "versions": [ + "a3" + ] + }, + { + "chartID": "96f5071cd97d5c1a4f6210ce78743e85607f9373", + "data": { + "inGameID": 37893 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37893, + "versions": [ + "a3" + ] + }, + { + "chartID": "cfb943c6247dcde9216e7380464cf4b0bb97e9a1", + "data": { + "inGameID": 37893 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37893, + "versions": [ + "a3" + ] + }, + { + "chartID": "a6699124398e363f263ccaa3b19c02ff1bbd6ad4", + "data": { + "inGameID": 37893 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 37893, + "versions": [ + "a3" + ] + }, + { + "chartID": "68ae579f3bb7c4413813caa7a9093c7659d72b5f", + "data": { + "inGameID": 37893 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37893, + "versions": [ + "a3" + ] + }, + { + "chartID": "2674c1a829ea0254ba8588dbf89f80566c1f8b8b", + "data": { + "inGameID": 37893 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37893, + "versions": [ + "a3" + ] + }, + { + "chartID": "e64ea8c85834ffad8bf6014e464df5c8e2e18896", + "data": { + "inGameID": 37894 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37894, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8571a4337a81568323a193bd866a6ee627013515", + "data": { + "inGameID": 37894 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37894, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c9d85b22207bf1d4777989a44eed553c6bc0561f", + "data": { + "inGameID": 37894 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37894, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9c31c996cae01eb4f02f5495b6305544a54a8d0a", + "data": { + "inGameID": 37894 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37894, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "097c9386412edad403c29eb7c818d28c3b9ec9d9", + "data": { + "inGameID": 37894 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37894, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "41f2dc4178618b1cc45f8a24c738768bbde963b0", + "data": { + "inGameID": 37894 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37894, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "81e8027e777a16f5f64c7a360c6814d1b5d45fcb", + "data": { + "inGameID": 37894 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37894, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b62addc42c7b3d5603a1571533e1d123757e53b7", + "data": { + "inGameID": 37894 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37894, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "03eeb880d8ee9917567d3dd5f98b52880cca225c", + "data": { + "inGameID": 37894 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37894, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2e8b3ced63fa00b5939669d279fad793478dac5b", + "data": { + "inGameID": 37895 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37895, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4cce160ec5071ab61af4e5da20c72ed851bca8da", + "data": { + "inGameID": 37895 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37895, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0176d0830cffffee6786c464dd6d6ca569b6b8f2", + "data": { + "inGameID": 37895 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37895, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7b1250cfa58a80f5760b7746cbcb769939f751c5", + "data": { + "inGameID": 37895 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37895, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7aeeaae93b93414ed97b076d16d1fdf2b417986f", + "data": { + "inGameID": 37895 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37895, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f1e7f95a42ec669e04f50a018689ed90356d9048", + "data": { + "inGameID": 37895 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37895, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b56ccdec28c297c422411051d12e37965436817b", + "data": { + "inGameID": 37895 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37895, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dc3a91c02231acf3b39bbe74c80230311c59241a", + "data": { + "inGameID": 37895 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37895, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6f9ffdebdb72cdeb0b24fc40ab0e053f8337688b", + "data": { + "inGameID": 37895 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37895, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8cd773b39754fa7af1a7b7351ac17afe04afdd5b", + "data": { + "inGameID": 37896 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37896, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8aef3580703240fe9dd151a5b6d567cb60c88d3a", + "data": { + "inGameID": 37896 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37896, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "97254fec9f56f5494992e7a0485d228da736580f", + "data": { + "inGameID": 37896 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37896, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "56aefbda646e31d00daf3e0041d5212bbe4bea49", + "data": { + "inGameID": 37896 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37896, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "21f146de9e24ec78904c8a7fec2d8768e91b0337", + "data": { + "inGameID": 37896 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37896, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ae9f4ec970a8a268e740447b046aa0b1f2f5cb3d", + "data": { + "inGameID": 37896 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37896, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8966bf7461edb52dbfd4d6867f0a718c59d22e37", + "data": { + "inGameID": 37896 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37896, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bad46808dc2f93609c7fb8fc216cafe989889c41", + "data": { + "inGameID": 37896 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37896, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a4631d2c84255602e7e214d3b9c95754ee8ee7f8", + "data": { + "inGameID": 37896 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37896, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "865bd036591c5f8c28198d758b2375d57b7be7c6", + "data": { + "inGameID": 37897 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37897, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce68705d3c016444f16dd179153a3541f83d3dce", + "data": { + "inGameID": 37897 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37897, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d7e59a2e3cbd19788903dc4fabd4d33cef1a4792", + "data": { + "inGameID": 37897 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37897, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1b88a575b9de466bb678f5e3f8dbf502efbcd4d0", + "data": { + "inGameID": 37897 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37897, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f24828b939d6545601fe66baae45a802e5dfd724", + "data": { + "inGameID": 37897 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37897, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2685c1c4b087d8a027a3d03abb2bd4da2a0e51d3", + "data": { + "inGameID": 37897 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37897, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b080bff06999cf3f03b1a732cfdd0aa861f3c7a8", + "data": { + "inGameID": 37897 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37897, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "051a0e9d3c92cc450861516114986741f5e8f540", + "data": { + "inGameID": 37897 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37897, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c90d30fd4be67bccf29240f04f4d9fa0066b7707", + "data": { + "inGameID": 37897 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37897, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4a74f4706e78631fb4221c24771e909a4986d9eb", + "data": { + "inGameID": 37898 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37898, + "versions": [ + "konaste" + ] + }, + { + "chartID": "2add2baa229ebb3deb60c83876dca7b2a73ebd0a", + "data": { + "inGameID": 37898 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37898, + "versions": [ + "konaste" + ] + }, + { + "chartID": "1d83f6f53ff47d00319f0e62ee86e6500c28a69f", + "data": { + "inGameID": 37898 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37898, + "versions": [ + "konaste" + ] + }, + { + "chartID": "47f7298e966c948074451d0106bc13623834147c", + "data": { + "inGameID": 37898 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37898, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f12a4f250d05d8525ebeb3f9c085ec6d4ce1141d", + "data": { + "inGameID": 37898 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 37898, + "versions": [ + "konaste" + ] + }, + { + "chartID": "1e4df8cbe83e7172523de4ac31e5491c21e06c7d", + "data": { + "inGameID": 37898 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37898, + "versions": [ + "konaste" + ] + }, + { + "chartID": "1011d80c9ec0e966feaad1249d6adfd73a448eb6", + "data": { + "inGameID": 37898 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37898, + "versions": [ + "konaste" + ] + }, + { + "chartID": "25e9f29a0a9b59b196a39762882a924cd48ac97e", + "data": { + "inGameID": 37900 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37900, + "versions": [ + "a3" + ] + }, + { + "chartID": "6def326fe3a41ea57254e79a2a7f8c83e19aadcf", + "data": { + "inGameID": 37900 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37900, + "versions": [ + "a3" + ] + }, + { + "chartID": "db226ebd0dae89748defe63342392b2aae608d26", + "data": { + "inGameID": 37900 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37900, + "versions": [ + "a3" + ] + }, + { + "chartID": "46e655a39132e25264d70159d88f33bf9dbf32cf", + "data": { + "inGameID": 37900 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37900, + "versions": [ + "a3" + ] + }, + { + "chartID": "ce232f804a672b01b47e8d8c5d50d342a1cdae63", + "data": { + "inGameID": 37900 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37900, + "versions": [ + "a3" + ] + }, + { + "chartID": "e399a1795126f65c00b8e2ead8100b74ffbdc72c", + "data": { + "inGameID": 37900 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37900, + "versions": [ + "a3" + ] + }, + { + "chartID": "cdca04496058ef9d02d82eb14f2c65516f42b5bf", + "data": { + "inGameID": 37900 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37900, + "versions": [ + "a3" + ] + }, + { + "chartID": "6bdcb50a93baff409ea49fc1424fb51a33e2d498", + "data": { + "inGameID": 37900 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37900, + "versions": [ + "a3" + ] + }, + { + "chartID": "d2e3685ba8a7c87037e0cc820245ebe83505d057", + "data": { + "inGameID": 37900 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37900, + "versions": [ + "a3" + ] + }, + { + "chartID": "27f7cc206350b4feb06440f4c460639359b7f4ab", + "data": { + "inGameID": 37901 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37901, + "versions": [ + "a3" + ] + }, + { + "chartID": "aaa04182f00fc480d5cff557f8332a69f2763e5a", + "data": { + "inGameID": 37901 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37901, + "versions": [ + "a3" + ] + }, + { + "chartID": "30d346674b0a343654969cd273c5b1e89790bfc6", + "data": { + "inGameID": 37901 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37901, + "versions": [ + "a3" + ] + }, + { + "chartID": "a786ad33deb2ff39f4197dec51ca8b752a0c3954", + "data": { + "inGameID": 37901 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37901, + "versions": [ + "a3" + ] + }, + { + "chartID": "d6b21ff8237aae51353854305eccfc11b8f399dc", + "data": { + "inGameID": 37901 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37901, + "versions": [ + "a3" + ] + }, + { + "chartID": "fb535286ea0339ed4573320e82ec3459414909bc", + "data": { + "inGameID": 37901 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37901, + "versions": [ + "a3" + ] + }, + { + "chartID": "c914baaca131fb568d4eb1e36a218a49c9b16099", + "data": { + "inGameID": 37901 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37901, + "versions": [ + "a3" + ] + }, + { + "chartID": "1a64fb9be88ca7c021c65d0ffeeb05060ea8df31", + "data": { + "inGameID": 37901 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37901, + "versions": [ + "a3" + ] + }, + { + "chartID": "c5ef103b482e2b9d8e83d67b7908ed2f6c00d64a", + "data": { + "inGameID": 37901 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37901, + "versions": [ + "a3" + ] + }, + { + "chartID": "25a36eb608bc9583f94b7914c609cf2611532f7b", + "data": { + "inGameID": 37902 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37902, + "versions": [ + "a3" + ] + }, + { + "chartID": "59fe418d647d47baf6ee91a36f06ba460e9c6cd3", + "data": { + "inGameID": 37902 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37902, + "versions": [ + "a3" + ] + }, + { + "chartID": "080b680cf94cafe45fbd7ac9738dd5125841c7bb", + "data": { + "inGameID": 37902 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37902, + "versions": [ + "a3" + ] + }, + { + "chartID": "87fff4bb36abc2143d57371d28ba57b690b74e91", + "data": { + "inGameID": 37902 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37902, + "versions": [ + "a3" + ] + }, + { + "chartID": "00c783222336c13015d31d6e2b2aad41b5bacc42", + "data": { + "inGameID": 37902 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37902, + "versions": [ + "a3" + ] + }, + { + "chartID": "c94c1f7c3ded0078a833af741eb818e50a167da4", + "data": { + "inGameID": 37902 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37902, + "versions": [ + "a3" + ] + }, + { + "chartID": "91a9d0c38e61cd3ff139383fbb82dc349c41bb8d", + "data": { + "inGameID": 37902 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37902, + "versions": [ + "a3" + ] + }, + { + "chartID": "64cb01e0b5091499305cdca4e52e5864fe401d49", + "data": { + "inGameID": 37902 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37902, + "versions": [ + "a3" + ] + }, + { + "chartID": "c279afab2d1f1c8581c4cf1f8459d0b417dacc1e", + "data": { + "inGameID": 37902 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37902, + "versions": [ + "a3" + ] + }, + { + "chartID": "7d92b14005c2b4b7a15a8c941731f640b21f30ce", + "data": { + "inGameID": 37903 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37903, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f77033ede1988795e180488c667a2cb045b7af2a", + "data": { + "inGameID": 37903 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37903, + "versions": [ + "konaste" + ] + }, + { + "chartID": "0547e1b4868b73130920500965c4fe2009c04c5c", + "data": { + "inGameID": 37903 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37903, + "versions": [ + "konaste" + ] + }, + { + "chartID": "50b68c00f62a638d3217a0e8c1ca217604d295bf", + "data": { + "inGameID": 37903 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37903, + "versions": [ + "konaste" + ] + }, + { + "chartID": "254501f73d23a023ac9c7a4d7f81ec9cccb75308", + "data": { + "inGameID": 37903 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37903, + "versions": [ + "konaste" + ] + }, + { + "chartID": "6bc22c0aebac65f8e62049bcc7b7a828d45607fe", + "data": { + "inGameID": 37903 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37903, + "versions": [ + "konaste" + ] + }, + { + "chartID": "b9894cdbe0879f6b7f18324c0bc1d2af1d352bc6", + "data": { + "inGameID": 37903 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37903, + "versions": [ + "konaste" + ] + }, + { + "chartID": "2935d386bce07477611aa82c70583c001f15c9e7", + "data": { + "inGameID": 37905 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37905, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "be70266cf73ed5e7ba8c2cd639e88fa5ae9902ce", + "data": { + "inGameID": 37905 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37905, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "df91e621b2caa0ece33b8ee98ec633f067c72c5c", + "data": { + "inGameID": 37905 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37905, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f3d096c1cd8a6346d1dcaeaaca4d82d32ec6d58b", + "data": { + "inGameID": 37905 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37905, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "737bc4d601ed35227b052007abcc7cfe5b6f10c9", + "data": { + "inGameID": 37905 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37905, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "050bac4a469d299f56fc348dfbcc7f9391f0fdd6", + "data": { + "inGameID": 37905 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37905, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cd34dde01386c3cafe2fd0636c507d1d5fab0439", + "data": { + "inGameID": 37905 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37905, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c010ce7cff9adf68d06d28542f50c7a795a01f50", + "data": { + "inGameID": 37906 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37906, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fe881eae92a20637fccb37b083459806b5334cd4", + "data": { + "inGameID": 37906 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37906, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "66f4fc869a66d682316470e2fabed3dce7ef8d41", + "data": { + "inGameID": 37906 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37906, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4f208ede519dc6509ecd18faf58bc68262d3cd60", + "data": { + "inGameID": 37906 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37906, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f062d92b947c286662a4c70709f729af42d15b9c", + "data": { + "inGameID": 37906 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37906, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aab57e6d598f4349818b01de5a94e1319cb66f8f", + "data": { + "inGameID": 37906 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37906, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "af50d9039b28f2900b9f947db6e4610654a45a98", + "data": { + "inGameID": 37906 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37906, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "32d42a250e7a1e39423028a0055a3120d4e4f55c", + "data": { + "inGameID": 37906 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37906, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7f4a5f69bf3e820ff0679203e0bd4d450bafb6bb", + "data": { + "inGameID": 37906 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37906, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "63cc7c99788de873b528c34fb405a3997fcdb380", + "data": { + "inGameID": 37907 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37907, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6bfd3ceaf83d8209796fe3f995050c0a5d4ea43f", + "data": { + "inGameID": 37907 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37907, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0f10010665c584338ea13a8a0dd696168455321a", + "data": { + "inGameID": 37907 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37907, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ec86a4c04d09c719d979f6163ff22b7c50eb4ab", + "data": { + "inGameID": 37907 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37907, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1580d8f71dbc39d5531c04a9f250a063705c22e3", + "data": { + "inGameID": 37907 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37907, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b535294112ce614498746a8bbaee8428814ca6ac", + "data": { + "inGameID": 37907 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37907, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8e2e60a1261b71a9243c851a747516f52c5bab1a", + "data": { + "inGameID": 37907 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37907, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f89af27c9ce953f6cc7697b314fea56c653ff484", + "data": { + "inGameID": 37907 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37907, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b01c5e281b6b14ebc6d1254a38d364cee96e1fa7", + "data": { + "inGameID": 37907 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37907, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4d1bfd0a1ca9be5eb659d2ebd55286ed59642a08", + "data": { + "inGameID": 37908 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37908, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "be4f8dd1606895bb0099a2ab03d1186f572b9e7c", + "data": { + "inGameID": 37908 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37908, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f7517717cffc3b49da52566a60f2bbd4c25402a6", + "data": { + "inGameID": 37908 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37908, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ed50676c779aba3c0066be1e3d37ca666007fff", + "data": { + "inGameID": 37908 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37908, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "034c2c503fdb64d2d892b52ee5a2968e7b34915b", + "data": { + "inGameID": 37908 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37908, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "300c10bf1c8c21c8708216d33648323ad64ed109", + "data": { + "inGameID": 37908 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37908, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f4f73b44dc604abaa2a5726adf785dc300779dd0", + "data": { + "inGameID": 37908 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37908, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dbae90cb7f76a28385a1ee778278983a808f7301", + "data": { + "inGameID": 37908 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37908, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aadd23544f548ff4115d4d721bd42641744c78ae", + "data": { + "inGameID": 37908 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37908, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "593f80f454b0be6920038671f322660bd9d342c5", + "data": { + "inGameID": 37910 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37910, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "51fa756b90c49eee88d575720b98d5e7d15863cd", + "data": { + "inGameID": 37910 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37910, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6acabae2a076d07fae482060e767fc31b8f5e393", + "data": { + "inGameID": 37910 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37910, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0dff3bfba13f1a104fcf4bc5d0b57c5a030e1103", + "data": { + "inGameID": 37910 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37910, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c6f6876ee34c9636f0fd56494fb27ec12e7ec7b9", + "data": { + "inGameID": 37910 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37910, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b396c1da9a94fcc05142705b0b7e8e4bb4e3a2a5", + "data": { + "inGameID": 37910 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37910, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d12631b7213334d2332ed9d155288f5fc8423e8b", + "data": { + "inGameID": 37910 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37910, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b4e2589ad83294e0eccc9fddf9d6844bff114cbf", + "data": { + "inGameID": 37910 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37910, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "429cb413aa06c9029184a8025f36e8df36539f7a", + "data": { + "inGameID": 37910 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37910, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "937f9ebef5ff22f162ee4d23e85b82d7be4a8139", + "data": { + "inGameID": 37912 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37912, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d64f9a970ddbeec8b6d39e2e179907e52c2d8626", + "data": { + "inGameID": 37912 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37912, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "840c4b3846a8ba5cb99385e86ed8240ac88ab6ee", + "data": { + "inGameID": 37912 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37912, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff04fdb243aa674ee78fc1a9d2e3252ddffe4989", + "data": { + "inGameID": 37912 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 37912, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6438e8bbed619cbf63f3b0808e2b14bff9efc7b6", + "data": { + "inGameID": 37912 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37912, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a8721fe8c8faea38db9136b5ac65a181d53e0e16", + "data": { + "inGameID": 37912 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37912, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "47348351478ab3644c29b0b2780630b679305f66", + "data": { + "inGameID": 37912 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37912, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6d3921dd3a08746c2d6b15e7781f3c3c3271ab68", + "data": { + "inGameID": 37912 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37912, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3facfa9122b5c9acaf111ef79b7dcdf8a7dcdd59", + "data": { + "inGameID": 37912 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 37912, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6b313cc0f3f62d428a1749853a8d49b64412072d", + "data": { + "inGameID": 37913 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37913, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2c98e031d8b0211a6d759408ca6dec5c2a855096", + "data": { + "inGameID": 37913 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37913, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5912da9bdb9dbe6c11a34456cc97e63d9151c41b", + "data": { + "inGameID": 37913 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37913, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "917c26e3f7a4ffc9e737dce1d953dcc0b28deb46", + "data": { + "inGameID": 37913 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37913, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "526af80c51eb57772cd6242e61d6b0ceb8cc9547", + "data": { + "inGameID": 37913 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37913, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "258b0224ca891a51f7adbc8a49ef2fcaacd6ca97", + "data": { + "inGameID": 37913 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37913, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "41bd98e23e07417518d0e086ea3a6a3a081558c2", + "data": { + "inGameID": 37913 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37913, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8d4815674dfe9b2c365c1dab94ff5624db376712", + "data": { + "inGameID": 37914 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37914, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "348a5c79cc9a2a5adb479823cd8d56cbc08ac120", + "data": { + "inGameID": 37914 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37914, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8cd991aaf0c04bb1174bee5d9bd401b12a08393a", + "data": { + "inGameID": 37914 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37914, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1074b28d498c2e0085e8c9f4baf1077384284ee1", + "data": { + "inGameID": 37914 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37914, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "16d378de3270e1956ffeabb01959871e08247fb6", + "data": { + "inGameID": 37914 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37914, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6a91286691b6db5296a48298e8dd86be097764c0", + "data": { + "inGameID": 37914 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37914, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f12a294dd0574bdf47acc0a0cdfd358210496fae", + "data": { + "inGameID": 37914 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37914, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "66e2336c37a171aa4ee7e0a5fa9a9651246d312d", + "data": { + "inGameID": 37915 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37915, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f24e27b65d0654fd400ddde1ec68dbcb1bb942b", + "data": { + "inGameID": 37915 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37915, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7f501d706205ede72b22b3e00ff310f86d4dde6a", + "data": { + "inGameID": 37915 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37915, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "973bd9c712454ffea3093609868bd896ebd8526a", + "data": { + "inGameID": 37915 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37915, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "60b670392793dbe8b89ebc92a600106b888090da", + "data": { + "inGameID": 37915 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37915, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "169ad38df7dd92e1dde2028e5b86b4e09c2b2b79", + "data": { + "inGameID": 37915 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37915, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4fc73932f0af0a7a1bb57d1c58d6e0a787be3d3c", + "data": { + "inGameID": 37915 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37915, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f7382cbdf0b27c07a2f2dd2f21386df324191c34", + "data": { + "inGameID": 37916 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37916, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bf53ec9424be2e3c36b0f9befeacd63e90ae9dba", + "data": { + "inGameID": 37916 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37916, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "436f3886dd2ccee899b842fdbd8faba95f9ea7f6", + "data": { + "inGameID": 37916 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37916, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5897898b96d8461dd4465879b011afa1ecf388f7", + "data": { + "inGameID": 37916 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37916, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fe12aca13b1a3f385da9068897ec385855131636", + "data": { + "inGameID": 37916 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37916, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "16866779bd1daa4dbfb54417e51cebf9858ad223", + "data": { + "inGameID": 37916 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37916, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5189bc9198b9b0e47937bfadf46ff8934b07ea3d", + "data": { + "inGameID": 37916 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37916, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2b85475721d5790a6a813d7cac14d00abca3d244", + "data": { + "inGameID": 37917 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37917, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c4c071d3406a9dad5af3ecfffde810a395aa81d7", + "data": { + "inGameID": 37917 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37917, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b9973f2e70c9cea07f1237eaf65abcdae416a176", + "data": { + "inGameID": 37917 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37917, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4798c413bae09a96a2d882a0904462a7c789f710", + "data": { + "inGameID": 37917 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37917, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c4202eb9a070ea42bb3b02bb21d6f34b2d3abba5", + "data": { + "inGameID": 37917 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37917, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d298a0ea73f6be7885ddbeefbf9b3df33fae9dc9", + "data": { + "inGameID": 37917 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37917, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5b074e073041e49d9c315c912921647534efb293", + "data": { + "inGameID": 37917 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37917, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f46f3f522af966894e113673962086d0147e749c", + "data": { + "inGameID": 37918 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37918, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f42404c54483788bdcc80ef0e9131561501895b", + "data": { + "inGameID": 37918 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37918, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "55d004566e6344db7b4184224ab645b1e899ed62", + "data": { + "inGameID": 37918 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37918, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "310c9dce0aa5d45e224ed5ae7351922d18901eab", + "data": { + "inGameID": 37918 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37918, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f84f01a765ee6ae4497686fae341aadcc021281d", + "data": { + "inGameID": 37918 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37918, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "91a34bdf0145c507c4719a124d5cad96363d00a3", + "data": { + "inGameID": 37918 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37918, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "22064cb96d3dd72f0f8cca705a39aa1c3fc20b2e", + "data": { + "inGameID": 37918 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37918, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "227a940872c98331425d4833b53b5e92dba178a4", + "data": { + "inGameID": 37919 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37919, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e801c3dff5e18cc3795b2f8fe0da9c8e407c7e05", + "data": { + "inGameID": 37919 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37919, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "022dc015ad44b4560183c4b7d0377a04efe32143", + "data": { + "inGameID": 37919 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37919, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d5726ce5a06ec51684d3e5f9cf29eed8bf01753f", + "data": { + "inGameID": 37919 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37919, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "72a7fbe6d680e0f6ea74a24d1bd24048721d4b59", + "data": { + "inGameID": 37919 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37919, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e2541c8cdb756432b17c50f7269c8b19e1c7d305", + "data": { + "inGameID": 37919 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37919, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b49854b8f84313604db3d923f6887a6598fd4bd5", + "data": { + "inGameID": 37919 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37919, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8919bf99741be820d55dc26e5fa0c4bee4cb7b49", + "data": { + "inGameID": 37920 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37920, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cc416f86414f87b073e438fd3a274bb9d66c100d", + "data": { + "inGameID": 37920 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37920, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a5d426d1bfa19ff223495c00f8ba9b25c8456571", + "data": { + "inGameID": 37920 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37920, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9c6615f7a522e4c20ecf9b8e7721e95e4e7513b7", + "data": { + "inGameID": 37920 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37920, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4c217464f1f4ccb93d868068c1a3a6775811fd4b", + "data": { + "inGameID": 37920 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37920, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "17ac2d0a5c5289096b0ed1f13ad5d65597009eff", + "data": { + "inGameID": 37920 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37920, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "34431a88ac04ffc8f25a0c649f7de60272da368a", + "data": { + "inGameID": 37920 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37920, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8c14cf20340a14a2bc1929c3791b91b0b8939dfb", + "data": { + "inGameID": 37921 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37921, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d04edaa8ed1fdb0079c65fe61d716249bcd9f06d", + "data": { + "inGameID": 37921 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37921, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fd66eac81a178d4af56d4d38bf447f1260d00793", + "data": { + "inGameID": 37921 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37921, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0f0c30da68d54cc9362bd7fd70548e081dc56365", + "data": { + "inGameID": 37921 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37921, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6d29e182ea4136395bbbf021519d20cde9ecc2bc", + "data": { + "inGameID": 37921 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37921, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f12538a1e6ceb50d6b9a07b67f54034db436702c", + "data": { + "inGameID": 37921 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37921, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "21d7a999ee3ba2bac9c548af5f5c57ff517a2c0c", + "data": { + "inGameID": 37921 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37921, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "69bb7367a92acccbb57d37405492b160dff19ce5", + "data": { + "inGameID": 37922 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37922, + "versions": [ + "konaste" + ] + }, + { + "chartID": "71a409f9660e264a3af9f5e521c81be376ea503a", + "data": { + "inGameID": 37922 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37922, + "versions": [ + "konaste" + ] + }, + { + "chartID": "074efc35dca0b5a787e632d89302f689cfa036b4", + "data": { + "inGameID": 37922 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37922, + "versions": [ + "konaste" + ] + }, + { + "chartID": "796d2ee0c0a78eb548ec61df687a1c54bb97ee5d", + "data": { + "inGameID": 37922 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37922, + "versions": [ + "konaste" + ] + }, + { + "chartID": "2730986fa007225c7e41b1eb010b57bbcdca8602", + "data": { + "inGameID": 37922 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37922, + "versions": [ + "konaste" + ] + }, + { + "chartID": "e09cb2f1d6d3ea49efd901cc05a96b06413238f0", + "data": { + "inGameID": 37922 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37922, + "versions": [ + "konaste" + ] + }, + { + "chartID": "29ffaebd50805165d8ad5c222a0c461ad5fb2b32", + "data": { + "inGameID": 37922 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37922, + "versions": [ + "konaste" + ] + }, + { + "chartID": "56d9477cbbca7ba875a535888b32a2c483c464b8", + "data": { + "inGameID": 37923 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37923, + "versions": [ + "konaste" + ] + }, + { + "chartID": "c619a857284f1573e446a2247ae5993998d121aa", + "data": { + "inGameID": 37923 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37923, + "versions": [ + "konaste" + ] + }, + { + "chartID": "dc4c2fd909ae0c0d038cc95f44481f3ebf18e660", + "data": { + "inGameID": 37923 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37923, + "versions": [ + "konaste" + ] + }, + { + "chartID": "68b3bac8a2714aa16b87691692043b2ec44db997", + "data": { + "inGameID": 37923 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37923, + "versions": [ + "konaste" + ] + }, + { + "chartID": "3ab73bc7654e31c3a5cb196a39af051fe67cfe7c", + "data": { + "inGameID": 37923 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37923, + "versions": [ + "konaste" + ] + }, + { + "chartID": "8bc3c1f19f30c4706ca394b5c6a2624be2887b58", + "data": { + "inGameID": 37923 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37923, + "versions": [ + "konaste" + ] + }, + { + "chartID": "fea54fb7568a981adae9274c1d454239ce6590c5", + "data": { + "inGameID": 37923 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37923, + "versions": [ + "konaste" + ] + }, + { + "chartID": "405c726e7de9f1a5776334bac9c126a9943f6f05", + "data": { + "inGameID": 37926 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37926, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b7483d4a06b193bf913c9b5a8eee9dd07ce5739b", + "data": { + "inGameID": 37926 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37926, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7d09f0180231fbb1890e23b45e1bfd6fc6eb6710", + "data": { + "inGameID": 37926 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37926, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "20f8541ac11b08f6fb080aa3c981e6b876f60079", + "data": { + "inGameID": 37926 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37926, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9c36fe9859bbaf37f333d449023ea6f8a9255523", + "data": { + "inGameID": 37926 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37926, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c101253fb0ee199fa37f10caacdb6a93e77173d7", + "data": { + "inGameID": 37926 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37926, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8d1ce3c0faca41b30a9b9cac173f35e376afa0e", + "data": { + "inGameID": 37926 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37926, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "75cf3079d06c4cfb90dfa0828809a7d907df112c", + "data": { + "inGameID": 37926 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37926, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eea62a12e8ac96c25a83e96b69f89ca4d155bd38", + "data": { + "inGameID": 37926 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37926, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9325a98eec25316935cc00cb8679081130d63b8c", + "data": { + "inGameID": 37927 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37927, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ecfd4c812c9f14a4cc2c1d77737221671029764", + "data": { + "inGameID": 37927 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37927, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bd6eef0fd70b30fcfe9b576944db1411739fa21a", + "data": { + "inGameID": 37927 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37927, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c8ae4520c950d1f8f72950bcabf65e18b49d67dc", + "data": { + "inGameID": 37927 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37927, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "76479a986f4740a1c0b171f551435e33745ed8c4", + "data": { + "inGameID": 37927 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37927, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4ab4d01fbd05cc87a6c18753dae393e7ef51d64e", + "data": { + "inGameID": 37927 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37927, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0a2306719a26ae2aae78c7bcba54b1f6917780fc", + "data": { + "inGameID": 37927 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37927, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0e92807ef21614de0515b02bc236adbbe7214ff6", + "data": { + "inGameID": 37928 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37928, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8c26745d6fcfb7f9af7f8f985a63fc3bc3da6689", + "data": { + "inGameID": 37928 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37928, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "02f071b3eebf2b4ba2c2f487e2e904eefe3b8226", + "data": { + "inGameID": 37928 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37928, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dc7c26e3c5006f64c93d47548a4584e1890367c5", + "data": { + "inGameID": 37928 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37928, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0d5bd3522ec519cb749ece0d08dd82b75ed2c1ec", + "data": { + "inGameID": 37928 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37928, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9877892de8e620608d958d0e8fb9b75f08775185", + "data": { + "inGameID": 37928 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37928, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bbe2ed123926f67b4135463901621bf7fe282adf", + "data": { + "inGameID": 37928 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37928, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d63af6c3c496341c6efd2a8e4046f7b04801f211", + "data": { + "inGameID": 37929 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37929, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "095578fd8cf13724ec876332ee5836cdc6b1d8d7", + "data": { + "inGameID": 37929 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37929, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f8b9cfbad27cea525aa3014c108cc88e878d3371", + "data": { + "inGameID": 37929 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37929, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "61314244d56ece8e9f3f05e224cb7d39fbc22c0f", + "data": { + "inGameID": 37929 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37929, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9dcad3ca54793eb4c82cb64f0c7c5f06c43562a8", + "data": { + "inGameID": 37929 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37929, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4e4bc4718493eb6ae77b37df7cb14431d1a227fc", + "data": { + "inGameID": 37929 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37929, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d531b046828e06eb488ca314b500f9822a84c71e", + "data": { + "inGameID": 37929 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37929, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e4c725590b6ec9bd1ba4f6073fcf85ade9e0df68", + "data": { + "inGameID": 37930 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37930, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4dbbd27907e5c1f29b2cdb577d77068ef82425b9", + "data": { + "inGameID": 37930 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37930, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ee43a55aabdf6db5cadf88571a40fb6d62976ea1", + "data": { + "inGameID": 37930 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37930, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f6510dc10a6a466112b799da3059df3ea42c9d5", + "data": { + "inGameID": 37930 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37930, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2facb3e8692bb86e2848ce1ad673af1044b647de", + "data": { + "inGameID": 37930 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37930, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ea75a84880fc0a24351a26a5d5556037a72c66d", + "data": { + "inGameID": 37930 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37930, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2c592171f5e26bded70d4980b7490bb989d7e97e", + "data": { + "inGameID": 37930 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37930, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "513203c569c28e539f91a63910ed39572e54d25f", + "data": { + "inGameID": 37930 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37930, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8b43c5dcfb6a6e6e578ea0e45bdb6e46206e0019", + "data": { + "inGameID": 37930 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37930, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "af723cbfc4463b671089134496f414c1baf81ec6", + "data": { + "inGameID": 37931 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37931, + "versions": [ + "a3" + ] + }, + { + "chartID": "39b02e2d69801d09e254f4ae4890f91e161df62d", + "data": { + "inGameID": 37931 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 37931, + "versions": [ + "a3" + ] + }, + { + "chartID": "cb9f231f10595d8d614c0849fde1b087c9090dd0", + "data": { + "inGameID": 37931 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37931, + "versions": [ + "a3" + ] + }, + { + "chartID": "b8aba30cedc4458ebed37896be048515ad301e26", + "data": { + "inGameID": 37931 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37931, + "versions": [ + "a3" + ] + }, + { + "chartID": "7b20f985e760aa7d9895a43da85eac9427632385", + "data": { + "inGameID": 37931 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37931, + "versions": [ + "a3" + ] + }, + { + "chartID": "d87c49c39c467f3a256bd1252adc4c886c0bac94", + "data": { + "inGameID": 37931 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37931, + "versions": [ + "a3" + ] + }, + { + "chartID": "8c6b3f72660a35c41065d7f212a0549f6e821741", + "data": { + "inGameID": 37931 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 37931, + "versions": [ + "a3" + ] + }, + { + "chartID": "bf3fdf865b6bd0c5e54c0539e8f0612e665e6fff", + "data": { + "inGameID": 37931 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37931, + "versions": [ + "a3" + ] + }, + { + "chartID": "ecbef8421efbe9dc4893ab21beea411b458d30eb", + "data": { + "inGameID": 37931 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37931, + "versions": [ + "a3" + ] + }, + { + "chartID": "8c77b39b13e4cee41717f4473803e22c4e7614e0", + "data": { + "inGameID": 37932 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37932, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "16fadb1dcccfdbe30b56c1dab29b8796c23ee4a7", + "data": { + "inGameID": 37932 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37932, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5a363b9697f32940854bdbaf351de672c87764f5", + "data": { + "inGameID": 37932 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37932, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "38a96f027b404beccba1a27ebf8c8e939d6b2e11", + "data": { + "inGameID": 37932 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37932, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "480a165581a5a5811f001db77e13f58f6292864a", + "data": { + "inGameID": 37932 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37932, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ebfb79a1d9bb75a2f477db4c8135515f7c06c43a", + "data": { + "inGameID": 37932 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37932, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "16a3e14ffc08b14386ba5e1e4ea3b9f639bfe1fa", + "data": { + "inGameID": 37932 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37932, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "25e06fecc27a27f30174e49cef985c6c14bb1aed", + "data": { + "inGameID": 37932 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37932, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d25580ed8392d6b18a82421056a699c677985ca", + "data": { + "inGameID": 37932 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37932, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2d5008d9087818afd4d6f7dffdcc456b0faf9de2", + "data": { + "inGameID": 37933 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37933, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "de02d103351b5accdf419ab17168ff96570bf677", + "data": { + "inGameID": 37933 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37933, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0342c3ef12d2ec9730eef9011302cdbac07b69ed", + "data": { + "inGameID": 37933 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37933, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "42cbd4398904c6d946cbcab04ae94fb034c5b7ed", + "data": { + "inGameID": 37933 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37933, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e2a32469308d49755bc68478edac247451dd2324", + "data": { + "inGameID": 37933 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37933, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f643be97c20d82a9e6f5bfdc576b8477a8a64580", + "data": { + "inGameID": 37933 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37933, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8fcc933122a7fc6dadf0bed38c841406de455d75", + "data": { + "inGameID": 37933 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37933, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9026304e776b22a0aaf8fdddb7da52004f730b40", + "data": { + "inGameID": 37933 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37933, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "17be4ffeeb566b7bc5c117a48fe0456ac83751d0", + "data": { + "inGameID": 37933 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37933, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "16b3f10b531c487841ea2caa0589056ec749e781", + "data": { + "inGameID": 37934 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37934, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "edbe9f205d57e1a34d3567c5203aefa7c0d6af57", + "data": { + "inGameID": 37934 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37934, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4f529641cfcca45cc2c4c85aee49d020240ef70a", + "data": { + "inGameID": 37934 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37934, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "acb765ccae59956a3a2b51d9d3489d4bae333f9a", + "data": { + "inGameID": 37934 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37934, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7956b83f1d9d8c0c1b024b61338fad70dfe9d75f", + "data": { + "inGameID": 37934 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37934, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ec4988106479eac3c2015aecceec857d98d4dc00", + "data": { + "inGameID": 37934 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37934, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9d68c41600e2e5ca325363615f8e14299db096d3", + "data": { + "inGameID": 37934 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37934, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b6530a13ef5d1e010a0c6a9d5ece3385d2b4e2ca", + "data": { + "inGameID": 37935 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37935, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "132d516c3096bcae7ecd44f924c8dfcde2f55466", + "data": { + "inGameID": 37935 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37935, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "accf2839b4572cc5f4d35f6aa93b00e4d5a0a3f2", + "data": { + "inGameID": 37935 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37935, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "85b9b646ebe87232c14f9ea57b028c3156c35afc", + "data": { + "inGameID": 37935 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37935, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5a6c388b01fda4f761bc3b54251df2ead2c000c5", + "data": { + "inGameID": 37935 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37935, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aad1841f9f03cbd261235a5509808696de5ac860", + "data": { + "inGameID": 37935 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37935, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8fe41a80fd8c8851308410b3af2e1a75da176070", + "data": { + "inGameID": 37935 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37935, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1d75fef4a60ab76691dfb5abc6711d1a839c0090", + "data": { + "inGameID": 37936 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37936, + "versions": [ + "a3" + ] + }, + { + "chartID": "67e239b218e724379910f99d871fc45f50856fd9", + "data": { + "inGameID": 37936 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 37936, + "versions": [ + "a3" + ] + }, + { + "chartID": "3b230d5da8a266239e7b200d42cb83cdeee09f69", + "data": { + "inGameID": 37936 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37936, + "versions": [ + "a3" + ] + }, + { + "chartID": "213b418c256fb9a3bde0135f4acac4e0c74c09a1", + "data": { + "inGameID": 37936 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37936, + "versions": [ + "a3" + ] + }, + { + "chartID": "ab2040dac221b21def5b9678aaec4f9ca52150f3", + "data": { + "inGameID": 37936 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37936, + "versions": [ + "a3" + ] + }, + { + "chartID": "bd04fda0f3ce4f6fa47cf570781da91775e01a85", + "data": { + "inGameID": 37936 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37936, + "versions": [ + "a3" + ] + }, + { + "chartID": "99d3376b30bd0a2e4f1bd9a63c0413f21a1c360f", + "data": { + "inGameID": 37936 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 37936, + "versions": [ + "a3" + ] + }, + { + "chartID": "a7d0dd1883895fdebeab21eb3e536bf0967dd4b8", + "data": { + "inGameID": 37936 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37936, + "versions": [ + "a3" + ] + }, + { + "chartID": "b646229d600165308d3963c9d1f90c2793b9cf1a", + "data": { + "inGameID": 37936 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37936, + "versions": [ + "a3" + ] + }, + { + "chartID": "80f87906a4f3d2323bfa21505d196806c4845655", + "data": { + "inGameID": 37937 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37937, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4c344cbdd5ea8381091216bda2d6ffefb410f73b", + "data": { + "inGameID": 37937 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37937, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "61791f25932050ad38bfbf498d8e1ba52d27a0cb", + "data": { + "inGameID": 37937 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37937, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a4a600315b3246c4932e14edac504c753b6ee450", + "data": { + "inGameID": 37937 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37937, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "86079b0b9580976805652b6986b01864a89280a1", + "data": { + "inGameID": 37937 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37937, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3992eb3e8d5c609eefcd18e7ce5be8db6e1e8df2", + "data": { + "inGameID": 37937 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37937, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "87d81eb92bc37780604bad5e7843ff7e93882c65", + "data": { + "inGameID": 37937 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37937, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ed03d6ee0c74ac02c510d6bff2456bb6964d5dfc", + "data": { + "inGameID": 37938 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37938, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5e39136cb700550c07387e19329e1c59fcc5bfa8", + "data": { + "inGameID": 37938 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37938, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7145693f16287af7f0805640fabb909d9e0d6006", + "data": { + "inGameID": 37938 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37938, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "acd3d7e72f0acc4f8623682d72822b4d5f88598e", + "data": { + "inGameID": 37938 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37938, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b0382e6d0f7db24f019d6e7374fb213db169408b", + "data": { + "inGameID": 37938 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37938, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b835d46d4af675b0bf4b21fd1240ba9f39b2cac8", + "data": { + "inGameID": 37938 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37938, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "78627b2760a0cb28fd152f66b42a8954ad1991ee", + "data": { + "inGameID": 37938 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37938, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "259ac5f84b0f83af75027c8a4079cacab39920f2", + "data": { + "inGameID": 37939 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37939, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eb2dbe302e236ca93e636f0acaf62f0fdf3b1ddc", + "data": { + "inGameID": 37939 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37939, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "814d71b92f646ae9cea14efc800ace0a98f2e80a", + "data": { + "inGameID": 37939 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37939, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4d514e7a1b4fde5c24a1d197dd5756fb9e8755a0", + "data": { + "inGameID": 37939 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 37939, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "56f7d4e2a0664fb6bc28cd4a144f8e751231400d", + "data": { + "inGameID": 37939 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37939, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "99b445d197c28b62a5d7be2c1cecd16a92298cd1", + "data": { + "inGameID": 37939 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37939, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "008c77fdce6eb56a461752ae5ff966f4aa2ced49", + "data": { + "inGameID": 37939 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37939, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "61c6dddce100397f8c2c8fe2e2409dd88ad5d860", + "data": { + "inGameID": 37939 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37939, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8c30da056a127b8f15a67a15080e8a5b7fd84354", + "data": { + "inGameID": 37939 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37939, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3168469bece3db22a16803ac10e22dc47e820d6b", + "data": { + "inGameID": 37940 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37940, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "24829086f018fa7bfdee62babdfc05a69a315c50", + "data": { + "inGameID": 37940 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37940, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "96cee72befe14977059f91017d0268f868ea6759", + "data": { + "inGameID": 37940 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37940, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7a771769af05bac0ed71728f2eabc937d69ce751", + "data": { + "inGameID": 37940 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37940, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a22d1a90af8dc68a6ced5ef7041fccc3fb7ab809", + "data": { + "inGameID": 37940 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37940, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "da38099abaa971dcd1e53ebaaa7c45e0b37ab1fd", + "data": { + "inGameID": 37940 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37940, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0df28b407830d476d19755e84fb4d4f5aeec3e1e", + "data": { + "inGameID": 37940 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37940, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b7269fddc882b23a6b91e0eabee838a2ceaf6590", + "data": { + "inGameID": 37940 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37940, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ff13bdcacdee67561d17a95a647c8054c5d7ca4", + "data": { + "inGameID": 37940 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37940, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "792ac99bfd8cf26712f1936ad5644c0089c25d60", + "data": { + "inGameID": 37941 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37941, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e2ef5fe45365db04af7261c3c7bda63ab428640c", + "data": { + "inGameID": 37941 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37941, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f7ad706bb8a890ad7e53fb36b073c50db307c352", + "data": { + "inGameID": 37941 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37941, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c86a1afb3730507bc668676f059971b92d554704", + "data": { + "inGameID": 37941 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37941, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9ebfa23e4e6269705c5234245a7a9341c7dd7cf3", + "data": { + "inGameID": 37941 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37941, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "84716993daab1949a1e9908dadd7d4eb69d385ea", + "data": { + "inGameID": 37941 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37941, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "30049a3aa1d8600fa385dcf893179c6c100d52fa", + "data": { + "inGameID": 37941 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37941, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6d5e6f3e5b56e6ba0a8385bc89267a25325801e9", + "data": { + "inGameID": 37942 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37942, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "945f4b750e56ce7343b9c7d34c7fc564e95747cb", + "data": { + "inGameID": 37942 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37942, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2c10e6c34e16daee3a79155fc35b3898f2eff71f", + "data": { + "inGameID": 37942 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37942, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff80d68d2543c1f696bc36e2908b5d29416709c9", + "data": { + "inGameID": 37942 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37942, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "edd32e8c154a17e8948e27c5583aa2bccbb02082", + "data": { + "inGameID": 37942 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37942, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "123f1d85b34004f43b82ba3f0739abfe3108497f", + "data": { + "inGameID": 37942 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37942, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d068cf643fd6e8ad5f4b8bd108bb698846081a95", + "data": { + "inGameID": 37942 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37942, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b4ef95dce729e06f5a8c28a35924d137f5d9a11d", + "data": { + "inGameID": 37942 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37942, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4173f5809f16bde6a6b5aa9f1fde2b5f29f6d2d6", + "data": { + "inGameID": 37942 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37942, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8fed3ed89afae56e301fdf8b038186706e0a4bd6", + "data": { + "inGameID": 37943 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37943, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce257128b69ac96ee72686c924ba321e8ce7dff8", + "data": { + "inGameID": 37943 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37943, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "028e681858068a5e1cfd824dbce179660c896cf2", + "data": { + "inGameID": 37943 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37943, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "13412f613d0d78610596e9debcc43b0de78e9506", + "data": { + "inGameID": 37943 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37943, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cd127be88ff9310ef203b31df43028dc1d372f2a", + "data": { + "inGameID": 37943 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37943, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8fa60a12eb96c118828d63530c91cfce6b2f1b8d", + "data": { + "inGameID": 37943 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37943, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "71aee150600e698249b89070288f3dddbf3d327a", + "data": { + "inGameID": 37943 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37943, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f3452e56206ec91fdeb3fdde656479a61404e4f2", + "data": { + "inGameID": 37944 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37944, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "47efb9e1ad901a996ef49258048fc9d364b311a5", + "data": { + "inGameID": 37944 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37944, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d5b89dd9048d8b5821ef8f54ba50eff3b9d35d1e", + "data": { + "inGameID": 37944 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37944, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e774257217a993abcb04aeb829c8154368e4d8a7", + "data": { + "inGameID": 37944 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37944, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "30108acb3734f6e10b3ddef12340d884e0c4a2cd", + "data": { + "inGameID": 37944 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37944, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a1961f9f3004815335e2ce1d9726330077da1e01", + "data": { + "inGameID": 37944 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37944, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0b9b14e33d308458f6827d074e2c7c9460fd8597", + "data": { + "inGameID": 37944 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37944, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1a4efe14ed9e44e92150295c55a58e091773c0c1", + "data": { + "inGameID": 37946 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37946, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0405530034ddfce4f87fdc68fc2c9534ff357462", + "data": { + "inGameID": 37946 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37946, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7e698bab4b0a71429786cf93b36f5125472c7fdb", + "data": { + "inGameID": 37946 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37946, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b68e0b5cb281178c90716d8c6cdae1876a44aa07", + "data": { + "inGameID": 37946 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37946, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1feb71fe4fa8d26272329378f548fcfe051fb348", + "data": { + "inGameID": 37946 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37946, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8c2785ed0b2b54c9738304ffef97a9ab163a736", + "data": { + "inGameID": 37946 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37946, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f0aca192a3fab717f588be319f32a3c81c348b1", + "data": { + "inGameID": 37946 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37946, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6acca79a9c2b88c8ef5c22c77a968023c9c5060b", + "data": { + "inGameID": 37947 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37947, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a3278a54f58605e46f8d0eb3ba24d75f098407c1", + "data": { + "inGameID": 37947 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37947, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3433901fc415f27040c4e50178d7f1d3f614aac8", + "data": { + "inGameID": 37947 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37947, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "91c64067cd1cc96fb5668d8099e6a175a422b80a", + "data": { + "inGameID": 37947 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37947, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "09315ab8f5c477a23e1aa89447c0384f7acc0fe2", + "data": { + "inGameID": 37947 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37947, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dadcad886e6e163922a0455f21f442575f2f5e99", + "data": { + "inGameID": 37947 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37947, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c2e66a33574a9063cdad9a31955b2157c28e09e1", + "data": { + "inGameID": 37947 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37947, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e3d76d91730313a99f686e44662ea0f30674a9f9", + "data": { + "inGameID": 37948 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37948, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d4124ea68ddc65ea47151d0e9ef5f61bebf60041", + "data": { + "inGameID": 37948 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37948, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c0e59dcebf2ac0e4cd9c40921bb1cc28113893ec", + "data": { + "inGameID": 37948 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37948, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ec6aca7503bbe9e5083e4e3550aecceb8719d07b", + "data": { + "inGameID": 37948 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37948, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "192e4192a2b980949c5857443fa4abf806d6b155", + "data": { + "inGameID": 37948 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37948, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6917f5102e4dda98f6c5450ee4748aeff79e669c", + "data": { + "inGameID": 37948 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37948, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "382dcc1e0885787a8ecf01a5ef75dab2581d1636", + "data": { + "inGameID": 37948 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37948, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c976cd3efc6b71b373de075165adfcf666d650fc", + "data": { + "inGameID": 37949 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37949, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5c7eeabab3e0b624601f4076d59552232f47619c", + "data": { + "inGameID": 37949 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37949, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bf5f2a91217c87d2d2498cc458fc881acbf5bcaa", + "data": { + "inGameID": 37949 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37949, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6567f81628edb1abb5579f98d5a6b96dc66125bd", + "data": { + "inGameID": 37949 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37949, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "da451fcfc08c2efbffe7426cef9651501fd566c9", + "data": { + "inGameID": 37949 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37949, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cde664a7c62519f76aa650eafa7d327ed8ccb760", + "data": { + "inGameID": 37949 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37949, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0c53f0136ef3ba9fdd4de769db731a898835599e", + "data": { + "inGameID": 37949 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37949, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "225a366d96e7ff302cb0c6ae3e1931912ef474a5", + "data": { + "inGameID": 37950 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37950, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d738191f48cbd326c6f4fbfbc6708d5e4fc3c55b", + "data": { + "inGameID": 37950 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37950, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b41f0a218c7b60274fbd742f5d62b359a813614c", + "data": { + "inGameID": 37950 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37950, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ef23886949fa6e21953c0eee71a128929f7f5308", + "data": { + "inGameID": 37950 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37950, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "019a0952e2df7d32c950b9f338066e049065e7e2", + "data": { + "inGameID": 37950 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37950, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "58541703f2ae0f773b777b1158618b9605f41c60", + "data": { + "inGameID": 37950 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37950, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ea5946d995ebe7886987af17cab26cd81910ce19", + "data": { + "inGameID": 37950 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37950, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "96c79868489bdf9083c2c3786304f5583f6eae48", + "data": { + "inGameID": 37951 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37951, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6471a9b7714f3fc151589cc30cb615cc8a6c9bc5", + "data": { + "inGameID": 37951 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37951, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "547dd9beb6998461c87e3a5e570fd237b9c47a72", + "data": { + "inGameID": 37951 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37951, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4a0e7108444a5b07d21040732bb4b62b5d991a39", + "data": { + "inGameID": 37951 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37951, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bc397009b737f6eb58cf6e15ec1b9682416ce35b", + "data": { + "inGameID": 37951 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37951, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f33c7f3b96dec487b90b2835e7e8dad6a2c2d304", + "data": { + "inGameID": 37951 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37951, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6c7e2ff55b8503ba72e22ae74d8e8bb0868999fb", + "data": { + "inGameID": 37951 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37951, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "41cab84ea19bb26e62dfba15197a6ab2421cdc38", + "data": { + "inGameID": 37952 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37952, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff5b4b66703b6e0e1062e064670ef5d7cc102390", + "data": { + "inGameID": 37952 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37952, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6f99855d90561eb28bb3505cad056c5e50a21231", + "data": { + "inGameID": 37952 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37952, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f09f090ccdf6f71a06fcf2d97f1ad0e373e2fd04", + "data": { + "inGameID": 37952 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37952, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eba14a5cfe51849742323b3a905edb1a90752326", + "data": { + "inGameID": 37952 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37952, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2378ede00a9158b92939784199ab604252f15792", + "data": { + "inGameID": 37952 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37952, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0fbc59437b4c3723839592d3e7c1a4d507831ab3", + "data": { + "inGameID": 37952 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37952, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7e6c82ac1e608d191940cf93e7a382c4c44e8845", + "data": { + "inGameID": 37953 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37953, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2c767a72b862aced4855097fede03203ae300a1e", + "data": { + "inGameID": 37953 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37953, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9e63a199dba865489fabaab4358c56952297c08d", + "data": { + "inGameID": 37953 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37953, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e6b6e5c89bd2db73e992c0064fe1c2431c016422", + "data": { + "inGameID": 37953 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37953, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e39898a0f1aec29d9b58e342ddd61328412992d1", + "data": { + "inGameID": 37953 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37953, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "49514bf9127c8b4a8e5ca0a9b8899b26baf51eb9", + "data": { + "inGameID": 37953 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37953, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ea4e999ee74ad5ee34af582adde094238daf5612", + "data": { + "inGameID": 37953 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37953, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d062eba69642a5f4949fc8824290ca9a4935820f", + "data": { + "inGameID": 37954 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37954, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d9647a41fa0186645e8ed251e5688fbe99337a41", + "data": { + "inGameID": 37954 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37954, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "977491a5cb77f840bfe32e53be638b1ea01a503b", + "data": { + "inGameID": 37954 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37954, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "97448e78f00162454adcd0b5dc322dd4ea9d4f98", + "data": { + "inGameID": 37954 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37954, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "38230d1a6f4b06cd3c51591d2f7ba2645bcfa06f", + "data": { + "inGameID": 37954 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37954, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "597ac1d2c2ff1b52c5c9442c2d3221b1e0e92b9a", + "data": { + "inGameID": 37954 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37954, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f642eb4c41a739eec7a4004b1348f38d76485973", + "data": { + "inGameID": 37954 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37954, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3f2bbd6e1540362abdda6646365594a0bfbdeb2b", + "data": { + "inGameID": 37955 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37955, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "76ca8ee46ca1b0b42efb83a532b5174455ed04aa", + "data": { + "inGameID": 37955 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37955, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7f44141042e6fcd08730e48d4d86faad20044f40", + "data": { + "inGameID": 37955 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37955, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "94cd8522b7fbc3795f64a2ab58d0193eda49e10a", + "data": { + "inGameID": 37955 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37955, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "557d1ba23d0128eb168e88026bf1d9d3caeaeb15", + "data": { + "inGameID": 37955 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37955, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b1a5a7021b7f63eada8dec60b5bdb77d007f1d00", + "data": { + "inGameID": 37955 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37955, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f43efe7a8906c23e8161a960f9270760517b469", + "data": { + "inGameID": 37955 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37955, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9a1cf7cf1e5b2e9bde5b66f6efc22b0de0f6583b", + "data": { + "inGameID": 37956 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37956, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f678a220cc81bbba9a2e2a0dad7f8b744bcf6e71", + "data": { + "inGameID": 37956 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37956, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "df6bd8943c40d73a2fca0ac4c2e878a8845c1862", + "data": { + "inGameID": 37956 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37956, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "058411bd7191c02a59d432e4a4dc33aec17fb96c", + "data": { + "inGameID": 37956 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37956, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b97c0481b4efd6402145900678b670ac11c814f3", + "data": { + "inGameID": 37956 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37956, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8d029bef2b1858effe07d7ea4e8ac9b89dc4583c", + "data": { + "inGameID": 37956 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37956, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "23aac7a772a4ba1b22dbadb59681af5b2298c670", + "data": { + "inGameID": 37956 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37956, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dec9d39f9608c1ecb15dac752e6ffce3ff341b5f", + "data": { + "inGameID": 37957 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37957, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "862f9a08ef8cd487b2900945cf245c891613b0fe", + "data": { + "inGameID": 37957 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37957, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "934715c953cd8bb2549a3a9c5eed3bfee98323a8", + "data": { + "inGameID": 37957 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37957, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "08f32efbe114041d1f2db07960b77b74ede62440", + "data": { + "inGameID": 37957 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37957, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f013d8febefd1ac4b29613b3c44412530891cc2", + "data": { + "inGameID": 37957 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37957, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "60af7ee2a23ccba0061110468a0aabb99d120911", + "data": { + "inGameID": 37957 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37957, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "97bc1ce5140d63800b000873e3e7cf3e6945de1c", + "data": { + "inGameID": 37957 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37957, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ee2c59b8f0142477d08229c765cf12bf60d0a799", + "data": { + "inGameID": 37958 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37958, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5d9137665458f2607ea834d08c49fbd8351e845c", + "data": { + "inGameID": 37958 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 37958, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "40ac677257bfdf8b390175b952bc2186b98ee397", + "data": { + "inGameID": 37958 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37958, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff21fcb8db5351bc6d92cef94e15b2632e04f665", + "data": { + "inGameID": 37958 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 37958, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "998f153e02d2dd49307bff0ea06ae359cae6ee99", + "data": { + "inGameID": 37958 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37958, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "be5fa09fc51343976cfb2c35c08e95fe917fc7f1", + "data": { + "inGameID": 37958 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37958, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5a4bea90a5d023ca74ae51da3234ab92808fe81b", + "data": { + "inGameID": 37958 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37958, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b46fd7cf49a1759c7727d7ffa432895d19db60a8", + "data": { + "inGameID": 37958 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37958, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "97f78d3e6bdf56bbe68d16e64a133d0170f9e2e8", + "data": { + "inGameID": 37958 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 37958, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "97aa77d124bdd53304452d876a787130961eda36", + "data": { + "inGameID": 37959 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37959, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7ef76784959a1c89f4529175b87764b2ad9f671a", + "data": { + "inGameID": 37959 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37959, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cad012c91b4214527d8b86d6fac158c4058d6002", + "data": { + "inGameID": 37959 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37959, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1a130815aaf2659e88f68898c3e02a576bfd806c", + "data": { + "inGameID": 37959 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37959, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b04f1b5635e9a06db6508cc0385705cacc816163", + "data": { + "inGameID": 37959 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37959, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e35b7d2e315701f9a77fe8c3a09ae0120dbc163d", + "data": { + "inGameID": 37959 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37959, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cce83482301639f1927fea6a64a20bbaf23a1d89", + "data": { + "inGameID": 37959 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37959, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "777f08e573548aed82bef5a37da74c799cdacc66", + "data": { + "inGameID": 37960 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37960, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "695a5b65f107fa3149548d0a7da148642a7a16f5", + "data": { + "inGameID": 37960 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37960, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f8d6b2aeaffa482ea6657480ab613ea89b964103", + "data": { + "inGameID": 37960 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37960, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "950685390a2a412ebad3702b7befabb276f3b149", + "data": { + "inGameID": 37960 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37960, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "489bbd7b5f040fc20c7ae22d7233e2875e8fa413", + "data": { + "inGameID": 37960 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37960, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5fa8d01cea9bc6782c666846f5b9c2ff0811f042", + "data": { + "inGameID": 37960 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37960, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b26cab075ad8aa61a31baca96211c15459621c8b", + "data": { + "inGameID": 37960 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37960, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6c35a7921177080ef075cb33465231f3d45723cf", + "data": { + "inGameID": 37961 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37961, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c09ff366f5b999baca5d67051d6cc1de6bdef755", + "data": { + "inGameID": 37961 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37961, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1f060612f4da21d72ea9d35807a1d8e828789f81", + "data": { + "inGameID": 37961 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37961, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a5d2d15d0b20d2664e072c8af17f84d805dbc454", + "data": { + "inGameID": 37961 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37961, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "467c99ec1b9ba4076bafdd29437a9067502852a3", + "data": { + "inGameID": 37961 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37961, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "29ee4e27adf938a3a84a42d85ad450ef45865b81", + "data": { + "inGameID": 37961 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37961, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e3a66dc29ff967348fbb2f13de0eed8bc054164e", + "data": { + "inGameID": 37961 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37961, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fb7d995ce183a0892b0b95404c58e2873ac72cf3", + "data": { + "inGameID": 37962 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37962, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "16e9ce628ac8452ea269f2be88bb70dd2a9f0f85", + "data": { + "inGameID": 37962 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37962, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d38f31269e37f08cf60c6efea177794bae194040", + "data": { + "inGameID": 37962 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37962, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "03d70a258abf32c954b12584408538e9907ba06a", + "data": { + "inGameID": 37962 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37962, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fb3bea0158f8f5b364018b6812c1970d380c0e6b", + "data": { + "inGameID": 37962 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37962, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9ea1eabdbab750491d9b23fe362acdc18e03c8a2", + "data": { + "inGameID": 37962 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37962, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d2657d5b9aa63f5fd872753d1ed9a9eb09c549d", + "data": { + "inGameID": 37962 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37962, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2ecc6687da0ffc522ffa419be80a4e4cc0adde69", + "data": { + "inGameID": 37963 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37963, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "df5a2404341f5169690e6d621f82eb70286cda8f", + "data": { + "inGameID": 37963 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37963, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dc70610095573d250d63e4f6f900abe73cbdbeba", + "data": { + "inGameID": 37963 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37963, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9848fb09c35eb10ebee46ea35d8194ca1e9c772e", + "data": { + "inGameID": 37963 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37963, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1d2f9ac6c950814fa3eb44e32b6d2bd3be759a55", + "data": { + "inGameID": 37963 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37963, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e4a4c01fffbfcb56e550faeb1f56fabde7e7ace7", + "data": { + "inGameID": 37963 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37963, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "50c4211af9eb1013f246ef9f2a77fffc97da9f72", + "data": { + "inGameID": 37963 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37963, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "649a11125793c1f6f936b0ec66de779d67826825", + "data": { + "inGameID": 37964 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37964, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2947ca4106d62674fff942a68c9330f4cc8fcbeb", + "data": { + "inGameID": 37964 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37964, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6cca5f312dd55592043a945dc8a3a0db315ca7b7", + "data": { + "inGameID": 37964 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 37964, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "af3f56e43607f0179a3414980832277f31f67781", + "data": { + "inGameID": 37964 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37964, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d431a408da43be7607551d6d5485d1ef71049195", + "data": { + "inGameID": 37964 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37964, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d6d4440a4651c01b2d48997962498b65092e6566", + "data": { + "inGameID": 37964 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37964, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "511b09df4f1181280a45b3d4ac061b5ab1823c5d", + "data": { + "inGameID": 37964 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 37964, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d54c29e1573c4edc8eeeb3a7c4d9c72fbb621818", + "data": { + "inGameID": 37965 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37965, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7d9a47467dd0e30da079dd262bde17f299387ff7", + "data": { + "inGameID": 37965 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37965, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c50ed3bf70d629da85628cabee8c3eef5ff944eb", + "data": { + "inGameID": 37965 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37965, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1fe7c39dc710ee156801e877f6c15275381388c3", + "data": { + "inGameID": 37965 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37965, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e8ea76e9f033305c0ab67182e3d8ed0eb21fbca5", + "data": { + "inGameID": 37965 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37965, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9486c5d793fcd238ba5422b21bd9d83328a8b7b9", + "data": { + "inGameID": 37965 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37965, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7ad595b08e8949084316dd922c9f026b6110f41c", + "data": { + "inGameID": 37965 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37965, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d6715d5627877d38567d9bb9d4c9e2acf2694957", + "data": { + "inGameID": 37982 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37982, + "versions": [ + "a3" + ] + }, + { + "chartID": "56283c06c395cc1c9a6e0b23ac38db24698bc59c", + "data": { + "inGameID": 37982 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37982, + "versions": [ + "a3" + ] + }, + { + "chartID": "c0c25bd07cb7fd49cab2c3c2ce6b3fd60183c610", + "data": { + "inGameID": 37982 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37982, + "versions": [ + "a3" + ] + }, + { + "chartID": "44a0a1badcb4cd8ac40c6ebbf77a15a179052753", + "data": { + "inGameID": 37982 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37982, + "versions": [ + "a3" + ] + }, + { + "chartID": "fa746d2df475ed57dce3817dd171cee3b456796f", + "data": { + "inGameID": 37982 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37982, + "versions": [ + "a3" + ] + }, + { + "chartID": "cab928a68250afbe60c206348f467d279e8fc0b8", + "data": { + "inGameID": 37982 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37982, + "versions": [ + "a3" + ] + }, + { + "chartID": "66e66d79f06d1e0288424996dfd80362d20e3d29", + "data": { + "inGameID": 37982 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37982, + "versions": [ + "a3" + ] + }, + { + "chartID": "a21f353a67fa22323b09cd3f5e6cf2a9fb71b3e5", + "data": { + "inGameID": 37986 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37986, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b23e65b00a9ae77cfad6e486e4d5a20519bb78c8", + "data": { + "inGameID": 37986 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37986, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8595c7c16df136600978e99a624801817ca540d9", + "data": { + "inGameID": 37986 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37986, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a3373f0a6312c630c162640ce9448574c8f800f9", + "data": { + "inGameID": 37986 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37986, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "52a4b3108442aaefb6eec4c1f97ea1481cff07ad", + "data": { + "inGameID": 37986 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37986, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c1bfd13c86527d1bfb3e5d78cf6af431075159ed", + "data": { + "inGameID": 37986 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37986, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "383ef869455956cbc4d15e62d83521c0b4a8fd14", + "data": { + "inGameID": 37986 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37986, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "82480118805fe93660d8b9c732d438e32e6bd969", + "data": { + "inGameID": 37987 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37987, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ad2851855ee29a93e1dd3c81b16b29a22b13c526", + "data": { + "inGameID": 37987 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37987, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "02c93149ebb67f3f548e200700ad2f95434e1855", + "data": { + "inGameID": 37987 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37987, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d7e647a44c9424fd8791b758eaa877d602d3e26e", + "data": { + "inGameID": 37987 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37987, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d4d50a3bd7166d395fccb2f20749897926bbb9cb", + "data": { + "inGameID": 37987 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37987, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "adda592ad43a573a2017664ebabe36781398dd40", + "data": { + "inGameID": 37987 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37987, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f5aaea197152d704d356aca427f340c0b96533a8", + "data": { + "inGameID": 37987 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37987, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a51f32f056cf0125333b226729af28ad825f85c0", + "data": { + "inGameID": 37988 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 37988, + "versions": [ + "a3" + ] + }, + { + "chartID": "657da86b4a8cab46db9f83b7afb83a2da3c64a0f", + "data": { + "inGameID": 37988 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37988, + "versions": [ + "a3" + ] + }, + { + "chartID": "e618a22e3616c86d8e76953226b545dbdb0de3be", + "data": { + "inGameID": 37988 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37988, + "versions": [ + "a3" + ] + }, + { + "chartID": "10246fe52add58ec847f23e62ab5727a1afc1205", + "data": { + "inGameID": 37988 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37988, + "versions": [ + "a3" + ] + }, + { + "chartID": "7fc404d1c3602ef75e0c14e9504357bb1e8eba92", + "data": { + "inGameID": 37988 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 37988, + "versions": [ + "a3" + ] + }, + { + "chartID": "93f4ff1e4d78873a5d0b0bbee886b7bab628213f", + "data": { + "inGameID": 37988 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37988, + "versions": [ + "a3" + ] + }, + { + "chartID": "6e8a9666c29f5390302621cbc9d5a34d464c3e79", + "data": { + "inGameID": 37988 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37988, + "versions": [ + "a3" + ] + }, + { + "chartID": "0c48e32deed243f77ec6175f020ae55807191c63", + "data": { + "inGameID": 37989 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37989, + "versions": [ + "a3" + ] + }, + { + "chartID": "0f66c611a1a4a6e3a9752272ca1d45d55606ec37", + "data": { + "inGameID": 37989 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37989, + "versions": [ + "a3" + ] + }, + { + "chartID": "83a102e158425693e2f0452ae1d09f918730865e", + "data": { + "inGameID": 37989 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37989, + "versions": [ + "a3" + ] + }, + { + "chartID": "e34eafd1b034b710501bb4bfbd07272539ac2f7b", + "data": { + "inGameID": 37989 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37989, + "versions": [ + "a3" + ] + }, + { + "chartID": "c6de401cbbecd8411d28711e80b9dd4924b853d6", + "data": { + "inGameID": 37989 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37989, + "versions": [ + "a3" + ] + }, + { + "chartID": "367450e77b31493f0b7fe28e28f772f620446425", + "data": { + "inGameID": 37989 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37989, + "versions": [ + "a3" + ] + }, + { + "chartID": "8ac64999e7d8777ede25e0b16396f0e6b8fbabb5", + "data": { + "inGameID": 37989 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37989, + "versions": [ + "a3" + ] + }, + { + "chartID": "e0cc7b00a8bfebff6aa860a58eba9471da77fdb3", + "data": { + "inGameID": 37989 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 37989, + "versions": [ + "a3" + ] + }, + { + "chartID": "38317e1c294eb5d8af0623aa5e5842c9f82130a4", + "data": { + "inGameID": 37989 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 37989, + "versions": [ + "a3" + ] + }, + { + "chartID": "6eac2f00056fee86ed067dfa03b468bbbfdf837f", + "data": { + "inGameID": 37990 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37990, + "versions": [ + "a3" + ] + }, + { + "chartID": "ed564970dd62a34a5b6cae8f66203e39212959e3", + "data": { + "inGameID": 37990 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 37990, + "versions": [ + "a3" + ] + }, + { + "chartID": "4387885850c24f1215259d1ef9c5345473d2ad19", + "data": { + "inGameID": 37990 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37990, + "versions": [ + "a3" + ] + }, + { + "chartID": "d5eda448dbb1564435997d578b07a74de8185679", + "data": { + "inGameID": 37990 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37990, + "versions": [ + "a3" + ] + }, + { + "chartID": "76e997e39c597ca9d3c2ffe3cb6aa778e740aabe", + "data": { + "inGameID": 37990 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37990, + "versions": [ + "a3" + ] + }, + { + "chartID": "0c6e6435cc830a81ded1bf7b44dc35f15b2506e2", + "data": { + "inGameID": 37990 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37990, + "versions": [ + "a3" + ] + }, + { + "chartID": "212fb2e7e9f2afcf7527d9fe4dceb15632286355", + "data": { + "inGameID": 37990 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 37990, + "versions": [ + "a3" + ] + }, + { + "chartID": "57c4960b051cbfaf5a5476b9e969328d83eb4f1b", + "data": { + "inGameID": 37990 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37990, + "versions": [ + "a3" + ] + }, + { + "chartID": "13060715738dfaad6aa519233f7d2ae1440e6d6f", + "data": { + "inGameID": 37990 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37990, + "versions": [ + "a3" + ] + }, + { + "chartID": "45da0c2eb1ccb43f8bc675e405aa688a905c7ef3", + "data": { + "inGameID": 37991 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37991, + "versions": [ + "a3" + ] + }, + { + "chartID": "72301dea86417c0ad729ca1bdef872d9983228a1", + "data": { + "inGameID": 37991 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 37991, + "versions": [ + "a3" + ] + }, + { + "chartID": "504c888a06e39ce283f996a5e889659c305114c0", + "data": { + "inGameID": 37991 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 37991, + "versions": [ + "a3" + ] + }, + { + "chartID": "a4212550fd7eff1a3573f3f11c024ae14afaf6c4", + "data": { + "inGameID": 37991 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37991, + "versions": [ + "a3" + ] + }, + { + "chartID": "b91f037346a4a7f4cab00efab0c2fd8497b7b231", + "data": { + "inGameID": 37991 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37991, + "versions": [ + "a3" + ] + }, + { + "chartID": "31766220a5837247388d421582d04fa6a527edd5", + "data": { + "inGameID": 37991 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37991, + "versions": [ + "a3" + ] + }, + { + "chartID": "0aba0a7c2ac3a5497ee947fea6efb4f81600ea24", + "data": { + "inGameID": 37991 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37991, + "versions": [ + "a3" + ] + }, + { + "chartID": "1c0960a75894eac21a4dc0bb94f0ca51d04e1b84", + "data": { + "inGameID": 37992 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37992, + "versions": [ + "a3" + ] + }, + { + "chartID": "2fb88251ebab561aac89bd46238544736ceeb995", + "data": { + "inGameID": 37992 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 37992, + "versions": [ + "a3" + ] + }, + { + "chartID": "9a0da83924a7db31c0e0c04e818dc5a92a0ba33b", + "data": { + "inGameID": 37992 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37992, + "versions": [ + "a3" + ] + }, + { + "chartID": "ca652b2558c16b32e49654ce9b0682a04bef65fb", + "data": { + "inGameID": 37992 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 37992, + "versions": [ + "a3" + ] + }, + { + "chartID": "1d24ef4a4ebaf2b0b2e9b41f68b8f28cce4336f1", + "data": { + "inGameID": 37992 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37992, + "versions": [ + "a3" + ] + }, + { + "chartID": "ec81675bc0f0fe9fe52e4d8e6b2e21a8620975e4", + "data": { + "inGameID": 37992 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37992, + "versions": [ + "a3" + ] + }, + { + "chartID": "1b483c6b08e8fb49eb2851f9feddb25c8e73bc61", + "data": { + "inGameID": 37992 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 37992, + "versions": [ + "a3" + ] + }, + { + "chartID": "12136cdb080966188ce5b344f6b04d49c8b86237", + "data": { + "inGameID": 37992 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37992, + "versions": [ + "a3" + ] + }, + { + "chartID": "354803f6f131d51a026e927d10dabe4a246f6bf9", + "data": { + "inGameID": 37992 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37992, + "versions": [ + "a3" + ] + }, + { + "chartID": "9dcda5972adca8b9a4dc3427fe1eb214f0f6b2e3", + "data": { + "inGameID": 37993 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37993, + "versions": [ + "a3" + ] + }, + { + "chartID": "a4ddec1b1ded9aca25e905c36b6ae07b1c493f77", + "data": { + "inGameID": 37993 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37993, + "versions": [ + "a3" + ] + }, + { + "chartID": "fb904023d43f519aa4f9a9a40cc5743e02232325", + "data": { + "inGameID": 37993 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37993, + "versions": [ + "a3" + ] + }, + { + "chartID": "20dd67d8f51ec3975ad727602d6e4d0fcdefdc63", + "data": { + "inGameID": 37993 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37993, + "versions": [ + "a3" + ] + }, + { + "chartID": "eb0e7e49c8c0577ed4bc4c1c2eb6562a371bd727", + "data": { + "inGameID": 37993 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37993, + "versions": [ + "a3" + ] + }, + { + "chartID": "759e96c9118b047a769542c8f3e0ae05b5afd5d6", + "data": { + "inGameID": 37993 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37993, + "versions": [ + "a3" + ] + }, + { + "chartID": "0d489d5c875213e575910656284a910a7e86fea0", + "data": { + "inGameID": 37993 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37993, + "versions": [ + "a3" + ] + }, + { + "chartID": "1a6b4e8099aa5cba980b89aa6e8b689650b42123", + "data": { + "inGameID": 37995 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 37995, + "versions": [ + "a3" + ] + }, + { + "chartID": "8a1e7346ef53810cec97ad0d3b07bab5e5d95be8", + "data": { + "inGameID": 37995 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 37995, + "versions": [ + "a3" + ] + }, + { + "chartID": "6827f92efa92a9323a10b241b78235423591f136", + "data": { + "inGameID": 37995 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37995, + "versions": [ + "a3" + ] + }, + { + "chartID": "8668583f0a371fd21dd63b17327d41bcf19b5309", + "data": { + "inGameID": 37995 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 37995, + "versions": [ + "a3" + ] + }, + { + "chartID": "e38277ecd2a62c3d5679ca6e5385af5daee771f5", + "data": { + "inGameID": 37995 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37995, + "versions": [ + "a3" + ] + }, + { + "chartID": "6adfa3d05320ca241834c753a4621ccf5e2b8914", + "data": { + "inGameID": 37995 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 37995, + "versions": [ + "a3" + ] + }, + { + "chartID": "839dc8b3babbd2fc6c225238b1c3c289f1b5757c", + "data": { + "inGameID": 37995 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37995, + "versions": [ + "a3" + ] + }, + { + "chartID": "8b4a7b379f3c45d472b08f7415ffeb436a3003a5", + "data": { + "inGameID": 37996 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37996, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "498cd9baca370871d2a99b76555377d2e79114b5", + "data": { + "inGameID": 37996 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37996, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8d2c10d69830e2eb2ca0ed81e4818ee039058d9", + "data": { + "inGameID": 37996 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37996, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aa2b8d91a9b3ba20ca982b927018021d7387abe6", + "data": { + "inGameID": 37996 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37996, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2dc7060026369d2269f64a2ee62b070137352ab7", + "data": { + "inGameID": 37996 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37996, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "01651d72dc5c9bdc83703d8143e17d50ada759fd", + "data": { + "inGameID": 37996 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37996, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0cd0893d3d67b098e71cb0e0cde5b9e89ab12696", + "data": { + "inGameID": 37996 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37996, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "624afa8edd0b113e054b8f7a749713a77ae85b1b", + "data": { + "inGameID": 37997 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37997, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3f79d90f2f3f215170788e223df30d434fdc5e29", + "data": { + "inGameID": 37997 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37997, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "158cd5502327ca63e5484e7ddd47711c449f4433", + "data": { + "inGameID": 37997 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37997, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ede8d263b7b98bfe2f1d494b015eb3efd24bf565", + "data": { + "inGameID": 37997 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37997, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d0575e71d6ad69bca7c3c9bf3a880342a8d40d0c", + "data": { + "inGameID": 37997 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 37997, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3273517bcd75dacd3a716c20846541087d18f315", + "data": { + "inGameID": 37997 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 37997, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "47c50a75b78ced46e98bacf7bc2594749eca64b7", + "data": { + "inGameID": 37997 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 37997, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fcd18e3dbc62f64ca05427a5113896137f554915", + "data": { + "inGameID": 37998 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 37998, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3573e7fdd4270c0691dc066bcd52fe1b226ab4c1", + "data": { + "inGameID": 37998 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 37998, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c942d5b149e3ee034cc9b612388bbd721d9b4e22", + "data": { + "inGameID": 37998 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 37998, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ecf372c5c5f111b38d81ac3f759e854ce7a6bf25", + "data": { + "inGameID": 37998 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 37998, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aa09f5f5e264bfe4a190a07433d293aa03f05818", + "data": { + "inGameID": 37998 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 37998, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3818ddc899a28f4379032b1309ea600d48ec2800", + "data": { + "inGameID": 37998 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37998, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b09b7c66a61ec03fd3432ca54323cb2ec75d78b4", + "data": { + "inGameID": 37998 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 37998, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dda441ef4fab90b4e61887b81e5198cd88260f1b", + "data": { + "inGameID": 37999 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 37999, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "78188c63d9285d6f0d553f46b5d38dbd901668ce", + "data": { + "inGameID": 37999 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 37999, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d781273162c27fa52b0cc74e6ac981111648901c", + "data": { + "inGameID": 37999 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 37999, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bd17931f57b7d46d300777059569cec179d8102a", + "data": { + "inGameID": 37999 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 37999, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5a0027118e62b40723cafb8ee3c33d2a4abb04aa", + "data": { + "inGameID": 37999 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 37999, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "46907e5669f2c5a92c1102ad377b1bac8b0fc20e", + "data": { + "inGameID": 37999 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 37999, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ddeda120f9a32fba6ac1ce94d181b72a0634e473", + "data": { + "inGameID": 37999 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 37999, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "53b51a494720ca9b98bc639c2d4accbadf8fe58f", + "data": { + "inGameID": 37999 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 37999, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d7b735277dc575cd403bde099a5e9c9986ff9722", + "data": { + "inGameID": 37999 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 37999, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3dcd9eacb384651847936ae8726a37bd65cff3dd", + "data": { + "inGameID": 38000 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38000, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "de5214552e5025deb9c9e127ce580aeb225f76e1", + "data": { + "inGameID": 38000 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38000, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a9b21afe9303160978036b50387faf5c60fbc95f", + "data": { + "inGameID": 38000 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38000, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6c0dbe9b1ae4a412f1561d2b52fa1a6e83fdedb4", + "data": { + "inGameID": 38000 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38000, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1c25eadb356e32ca474956a3a1b1c4056e8b488f", + "data": { + "inGameID": 38000 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38000, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9ae525bfbf40cca2327113020223c6653950c10b", + "data": { + "inGameID": 38000 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38000, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d7f8ade0c2acd8084cdcb9dd61a1d58f9b4a2898", + "data": { + "inGameID": 38000 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38000, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "af91d8727fee84aef4f6729ff121e42574996683", + "data": { + "inGameID": 38001 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38001, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e3cd8a761341949776717b6c5faaac91e7ad7832", + "data": { + "inGameID": 38001 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38001, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0f7cebe3e325440b9aa99b09c04b1a94909e57a7", + "data": { + "inGameID": 38001 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38001, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2a5e5b363fcc5dedcdd1747d75bcf4575fe8418e", + "data": { + "inGameID": 38001 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38001, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7f0b3112b65d4364f3f710446f4f733843ee9b7c", + "data": { + "inGameID": 38001 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38001, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8cc075335d52c2a7cd3b38caed1ce6dd47579ccb", + "data": { + "inGameID": 38001 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38001, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b95adc819bd2bcbe5a6329624a4f224975bdb70a", + "data": { + "inGameID": 38001 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38001, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7663895bf045682510aa716f54295e2e8cc6f390", + "data": { + "inGameID": 38002 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38002, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2d0a73449d6d56266d45e11bb4904128526c4d01", + "data": { + "inGameID": 38002 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38002, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bde7d48269c9082de25995077111a34b85a27e83", + "data": { + "inGameID": 38002 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38002, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "82fd1073e5b34728af5c5beffa90644a1e15b27a", + "data": { + "inGameID": 38002 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38002, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c09638ad0044e1482edd431540eba2d7b2d6d6a8", + "data": { + "inGameID": 38002 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38002, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f2a81ae64201f3eb75f1c83c7cc9f85c1570478e", + "data": { + "inGameID": 38002 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38002, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e0ac4dd261c94ea0d01b6e5825f621eae5e1d3eb", + "data": { + "inGameID": 38002 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38002, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b72201508f1f26df36eff2f60dc6fef07ac1afea", + "data": { + "inGameID": 38003 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38003, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7b36f13b480cb76ab80f3ca5b7b96adff64afc51", + "data": { + "inGameID": 38003 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38003, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "21d1588c271071000a88f9f9b0a037d2672296c0", + "data": { + "inGameID": 38003 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38003, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "49851fa1163daa83f1faee2044ea6557e13f0e65", + "data": { + "inGameID": 38003 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38003, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7a487806406797a985c7f5bde98212db71681c37", + "data": { + "inGameID": 38003 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38003, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5cd3864f8794847d99000dc4e0027839ec13141a", + "data": { + "inGameID": 38003 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38003, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2e4e76c7bfad8b791749b907aa9cb6ace006c18c", + "data": { + "inGameID": 38003 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38003, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "49f4a98deb9a5e6eff529f053718e41f523b7cce", + "data": { + "inGameID": 38003 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38003, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3359dbb7b8da77333f1b07cde20d5660aa2d8379", + "data": { + "inGameID": 38003 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38003, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a07c67cf927e986639c4bc3db2f14a16fac59f30", + "data": { + "inGameID": 38004 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38004, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dd3daea54812087a7a703149c4f36d65fe5af561", + "data": { + "inGameID": 38004 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38004, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "60286d7bbcd8c54c37accad474cd49be5b2a2c16", + "data": { + "inGameID": 38004 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38004, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d3b2636c73754567e8a2c9da4aaf00a6e2736aca", + "data": { + "inGameID": 38004 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38004, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1b12965309efe7e1e0dbc9df7df78ab2c800ac98", + "data": { + "inGameID": 38004 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38004, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "45be0ed0b4ef12b815f19988a9b95df196df48db", + "data": { + "inGameID": 38004 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38004, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c0180eda6b85c812e3833071bb5276664bf90829", + "data": { + "inGameID": 38004 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38004, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e79eea2cb29cc5bf1b6f97c0d898c488773f7bf8", + "data": { + "inGameID": 38004 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38004, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e822a1a000eddcd29d6e487491f90f9aaa965b84", + "data": { + "inGameID": 38004 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38004, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "581d1181a59ca15bbf226783b597e4ae59d3f4cc", + "data": { + "inGameID": 38010 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38010, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "01e988be3f8142d1c00179949b5c847a59835f65", + "data": { + "inGameID": 38010 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38010, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "91109ad7ba23f3b8d896abab645ebee36730c6f5", + "data": { + "inGameID": 38010 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38010, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d130eaba559bc0a3f31563ca72d9d4f01218d7f2", + "data": { + "inGameID": 38010 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38010, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a5361385e5a5998519a3f361674041ca41d9f948", + "data": { + "inGameID": 38010 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38010, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "731ea2cf6572cc17a1b7da155f2e644b5fc7d8ef", + "data": { + "inGameID": 38010 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38010, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ba47bc31d1055746807ffccc106c1f7b9e4d407b", + "data": { + "inGameID": 38010 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38010, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5f5d4986643388ee8c0ce3dd6fdf8f80469109c3", + "data": { + "inGameID": 38010 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38010, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b3fd98d827bb5d0d9785ffd54a9bbc035db049e3", + "data": { + "inGameID": 38010 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38010, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff4cfa7fa291495e50289266ebc043c04a9ef0e5", + "data": { + "inGameID": 38011 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38011, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a6bccbbc07528c08f34c47dc2d6fcbadc947e4b6", + "data": { + "inGameID": 38011 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38011, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cc745469af48960c6225950a20a5415538f39c82", + "data": { + "inGameID": 38011 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38011, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c0316ed4eb784ad33af0f28e30cdc0343bea71fe", + "data": { + "inGameID": 38011 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38011, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "03a4578925210f680e1c0251d789c78ae6059c61", + "data": { + "inGameID": 38011 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38011, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0e4b19a260a457c101ef58db8528e23db9f62896", + "data": { + "inGameID": 38011 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38011, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "79f9a7048b0daf794cbc30b1a76807d45e50b6f0", + "data": { + "inGameID": 38011 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38011, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e82b3c8d258e7e614a33d6264653131d8ad5f03f", + "data": { + "inGameID": 38012 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38012, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "056ddf726b5d6db7bee7320ad254fd2f0fa451d5", + "data": { + "inGameID": 38012 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38012, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b0b8b69288ec0138d18757befc91ead5c67c10fb", + "data": { + "inGameID": 38012 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38012, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "98884d9043477ddabbe69ad8085f4dde3e650bbd", + "data": { + "inGameID": 38012 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38012, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "71eb0f5ecf998afdfd0ae813b58a9c1ead756bcb", + "data": { + "inGameID": 38012 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38012, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "87f5c17639f34ece37d646e4d9398cf23e954528", + "data": { + "inGameID": 38012 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38012, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "41ccde4ac03c091083f9773c53cb6f2c3c3ef1af", + "data": { + "inGameID": 38012 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38012, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c8b441b29409b15b5b65bcd4c8bca51967538443", + "data": { + "inGameID": 38013 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38013, + "versions": [ + "a3" + ] + }, + { + "chartID": "fcf03cf6425b56340c4756ebf38748a54c786632", + "data": { + "inGameID": 38013 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38013, + "versions": [ + "a3" + ] + }, + { + "chartID": "85f90e0b85e9c4fcdbf7359482a0d5f61ae3bfc7", + "data": { + "inGameID": 38013 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38013, + "versions": [ + "a3" + ] + }, + { + "chartID": "3df9c7499bce063f18f4436ac9a7dc436d532fbc", + "data": { + "inGameID": 38013 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38013, + "versions": [ + "a3" + ] + }, + { + "chartID": "65f33af037704f27a6b1a660fc9e55ebe9d93140", + "data": { + "inGameID": 38013 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38013, + "versions": [ + "a3" + ] + }, + { + "chartID": "2cfc01ae3de993439be6362a746a88b5df29897b", + "data": { + "inGameID": 38013 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38013, + "versions": [ + "a3" + ] + }, + { + "chartID": "bd753398256723360dba5e6c0d8ba32ed0bb3c2a", + "data": { + "inGameID": 38013 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38013, + "versions": [ + "a3" + ] + }, + { + "chartID": "53b0361efe7937db89e018a5081dbe0ce37dbef6", + "data": { + "inGameID": 38013 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38013, + "versions": [ + "a3" + ] + }, + { + "chartID": "a6824c36e6efcc7f3a3a1cc459d78a0bf30904c8", + "data": { + "inGameID": 38013 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38013, + "versions": [ + "a3" + ] + }, + { + "chartID": "862f4c032a50646cc36ee738de36b4866d3611e5", + "data": { + "inGameID": 38014 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38014, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e3edeafc08eda04e7ab38aca4819c802c7a41273", + "data": { + "inGameID": 38014 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38014, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6379d1f104f93226be9e9c3a768197cb38e124a7", + "data": { + "inGameID": 38014 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38014, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bbb62e34eb3da04891aa7763c0e55c36da3625d1", + "data": { + "inGameID": 38014 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38014, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2c578fb5487939e464f6c01f733f4950f9db710c", + "data": { + "inGameID": 38014 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38014, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f0ac4b4a771bfa0ba4d12b8e779cc689b60e9f2a", + "data": { + "inGameID": 38014 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38014, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "08643e15ebc6f8a99852575cf12db2587cb210b8", + "data": { + "inGameID": 38014 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38014, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8a0e538c58c2452dd8bc76accc539fce7e69aeb6", + "data": { + "inGameID": 38015 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38015, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e24b6976e3e42aa58c05af75d051e43d01851aed", + "data": { + "inGameID": 38015 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38015, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c47c4498dd1ab58fa21ce29443b1db94ee514235", + "data": { + "inGameID": 38015 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38015, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9e8489981baca3486542e3cbb4f215b803171dd8", + "data": { + "inGameID": 38015 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38015, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aa8f3ff3d95acb9c7191cfb84cb2b48182ab5452", + "data": { + "inGameID": 38015 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38015, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d1cec30dd78ace6483b1c70c479a412d0b6000aa", + "data": { + "inGameID": 38015 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38015, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "98a15331d3b73577dabdcafd6f8d34ee78c43391", + "data": { + "inGameID": 38015 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38015, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c7a838eec60cad6985ec3ff8df69485780e07b8e", + "data": { + "inGameID": 38016 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38016, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c6397beaa102ce527636b074dc3fd06efce092a1", + "data": { + "inGameID": 38016 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38016, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "09ff69feaa9919a2604ca0c570f12e51a8152d20", + "data": { + "inGameID": 38016 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38016, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "50c0ad2b90c7bce61c98cbb64cb95b0c767b9da7", + "data": { + "inGameID": 38016 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38016, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d74f68081934f1e214a1084eed760e73f2ff3461", + "data": { + "inGameID": 38016 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38016, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6e852b64392a2df9f154076cb4e8cf0c56a440ae", + "data": { + "inGameID": 38016 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38016, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "97b1d139e6ed44f424108c9c9a34bc46e99efc79", + "data": { + "inGameID": 38016 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38016, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2cdd73f176ac3b42bfba30cd6dfdb772049235cf", + "data": { + "inGameID": 38017 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38017, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "184168b8a1105ecd68361f1414f29e48fb94429b", + "data": { + "inGameID": 38017 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38017, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fb3269923427a80b6d4bc7409cf1d01eaf63a1e6", + "data": { + "inGameID": 38017 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38017, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0d6534cc977383635bd6556beedf8d518634e8e3", + "data": { + "inGameID": 38017 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38017, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "35ace8feff72355fc6d98e255301052524f19cc2", + "data": { + "inGameID": 38017 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38017, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4a98a8e09c474fea87a84c1057d7bd716e477fa5", + "data": { + "inGameID": 38017 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38017, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "68578f8d90ff81437f848b757c9eda5cb753bafc", + "data": { + "inGameID": 38017 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38017, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "964f5285e7c6c52bddc7c366c872f987c8ad2e27", + "data": { + "inGameID": 38017 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38017, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d8c25f7743998674fbecbdd0cf4c0347ac657dc6", + "data": { + "inGameID": 38017 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38017, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "618987fc14baa3bed2ff30a5de3b6ac2c70a174f", + "data": { + "inGameID": 38018 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38018, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce21d3cfced6309fc20a87c092dff2d24c856602", + "data": { + "inGameID": 38018 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38018, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a3519267f1d45dc30107d54a703cbdc83f6dbdb3", + "data": { + "inGameID": 38018 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38018, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d13121ff87fcbdd6a61f61a14251409bdb20f6ee", + "data": { + "inGameID": 38018 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38018, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8f8365c80dc94550e20496f09c6ffc7ecc4a827", + "data": { + "inGameID": 38018 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38018, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "226b7ffe74615220ad78fc02f66dee8178723ef4", + "data": { + "inGameID": 38018 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38018, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "08e26ad698d6da20964088d06b289f1ff2a4ce29", + "data": { + "inGameID": 38018 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38018, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d5d2f6e0f2481fac4f484a540bb5d6cc07cb841e", + "data": { + "inGameID": 38018 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38018, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "609425eff7656db5314f6c03d8c8e0b8568334f1", + "data": { + "inGameID": 38018 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38018, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "efa9002017353eaa8af6a0caee17f2ee01b74636", + "data": { + "inGameID": 38019 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38019, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7ae3b448869653d7d6d3e0f560eda4e540a67df9", + "data": { + "inGameID": 38019 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38019, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "11d32d5892e6864f6162cacf40da8a0b2d1ba353", + "data": { + "inGameID": 38019 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38019, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d21ccf2d98538c21c9d2867e5edcd4fdae834883", + "data": { + "inGameID": 38019 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38019, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9dd3c8fee73af0b9a33c0bfc293b3b6e4bac1683", + "data": { + "inGameID": 38019 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38019, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6b14dcdcbfb85f7e8d893e06794b8e1744c328b7", + "data": { + "inGameID": 38019 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38019, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "697b52beaea2564f957696de1498fd6349e0cda3", + "data": { + "inGameID": 38019 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38019, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d3d58e986ed4be065596dfc713e7d1e6c4ab1daf", + "data": { + "inGameID": 38020 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38020, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "80f90dac272eb4a8f4780cecb3aacc0583db4a76", + "data": { + "inGameID": 38020 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38020, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "631958f52d8e03d541218dabc28a30cb50883a3e", + "data": { + "inGameID": 38020 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38020, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fdbe4a89960d56be430c9b4f40c863b3a47601a9", + "data": { + "inGameID": 38020 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38020, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a4980de91a74f969106f2bc70f1738e87fa2a02a", + "data": { + "inGameID": 38020 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38020, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3fb34462ade84d91afc266878a34ba5826d494b1", + "data": { + "inGameID": 38020 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38020, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "12bf693f358725b111c520ffa4cfa2a68b414e73", + "data": { + "inGameID": 38020 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38020, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d6e3b722d0482a513da215980828333b649e03c6", + "data": { + "inGameID": 38020 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38020, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6a5664161290e7a51a9f91d24773bc02a1c7f4c5", + "data": { + "inGameID": 38020 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38020, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "89df36d1b2bc4c8225a21f4cffba4ff9d34cb2cd", + "data": { + "inGameID": 38021 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38021, + "versions": [ + "a3" + ] + }, + { + "chartID": "867e4ee94f692919a62bf020f934d352947f78b8", + "data": { + "inGameID": 38021 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38021, + "versions": [ + "a3" + ] + }, + { + "chartID": "76f30550efabdf033d6478170a0b9dc8f0b6d228", + "data": { + "inGameID": 38021 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38021, + "versions": [ + "a3" + ] + }, + { + "chartID": "ff597c2ea0f94e2272a6f322b6632ac3e0de1f93", + "data": { + "inGameID": 38021 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38021, + "versions": [ + "a3" + ] + }, + { + "chartID": "28b80e44342ca311ea4c128b15a54fe58f08f2b6", + "data": { + "inGameID": 38021 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38021, + "versions": [ + "a3" + ] + }, + { + "chartID": "4d4b15f6b5c5efb68d004e2cfe371a0e411030c2", + "data": { + "inGameID": 38021 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38021, + "versions": [ + "a3" + ] + }, + { + "chartID": "9b16402a8fb90f4d638dedea082c1b0fcf9a0fd0", + "data": { + "inGameID": 38021 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38021, + "versions": [ + "a3" + ] + }, + { + "chartID": "de69813cb2b4cf334d23fb81a99102d53b53abb7", + "data": { + "inGameID": 38021 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38021, + "versions": [ + "a3" + ] + }, + { + "chartID": "7525f62db0297b5ebe1be6520c51c8b41835fd7e", + "data": { + "inGameID": 38021 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38021, + "versions": [ + "a3" + ] + }, + { + "chartID": "239a1655256e274d973adceab940c6732d4a2ccf", + "data": { + "inGameID": 38022 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38022, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e2f3d1e9836f0646fad09bb836c5b518fcc6bb1a", + "data": { + "inGameID": 38022 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38022, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "980331b64c495c54ef22bac6f2d1284f90f313bc", + "data": { + "inGameID": 38022 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38022, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c81add85b895cc063bef938a4cc57e740a999eea", + "data": { + "inGameID": 38022 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38022, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2e51a5c11c34ae1f22165acfc9b2fa68205481c9", + "data": { + "inGameID": 38022 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38022, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "08283138d6edc5721694def9828d5b0c3cc66b44", + "data": { + "inGameID": 38022 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38022, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b9c28d662293bc0f091b291089f964ef39e956c8", + "data": { + "inGameID": 38022 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38022, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cf7bfb41a1cfd77469497122f840788c7a4c0c80", + "data": { + "inGameID": 38023 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38023, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7fb7df88fc97ea06dfd163257a109ac3cc6283db", + "data": { + "inGameID": 38023 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38023, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "44d08b75f46e7ffe857c51c76c8dee262748a9f7", + "data": { + "inGameID": 38023 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38023, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f8c1f45089ad487c9833ef3beae896adeaacaf82", + "data": { + "inGameID": 38023 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38023, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7c43838006bdc7b020afff6ea1c2b3e8dcade31c", + "data": { + "inGameID": 38023 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38023, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0f2a58159ff7f04d4cd01af6cc2cbe91d4cbb876", + "data": { + "inGameID": 38023 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38023, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1667674d04e4ad73200f3df07a840be4583330d3", + "data": { + "inGameID": 38023 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38023, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e2e57c7f61c111839719bbf9af8b8239b7cd2fab", + "data": { + "inGameID": 38024 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38024, + "versions": [ + "a3" + ] + }, + { + "chartID": "2b24dd30b886e0977793ff39311fa1ffa7fcb3bf", + "data": { + "inGameID": 38024 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38024, + "versions": [ + "a3" + ] + }, + { + "chartID": "556be38be2b44ee8fb5de9e3655d91ea6ebf17d6", + "data": { + "inGameID": 38024 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38024, + "versions": [ + "a3" + ] + }, + { + "chartID": "387fb25a5f03fc63e7f1b862349c56547b49d1b6", + "data": { + "inGameID": 38024 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38024, + "versions": [ + "a3" + ] + }, + { + "chartID": "b6bbb74c0d5bfd8944569b41bbe3f8eca1db625f", + "data": { + "inGameID": 38024 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38024, + "versions": [ + "a3" + ] + }, + { + "chartID": "7e8a466a60a1824684a2870bc3682930102b6f2e", + "data": { + "inGameID": 38024 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38024, + "versions": [ + "a3" + ] + }, + { + "chartID": "8068145f5c3bcde95e54b64dc70dd6f105ea4ff3", + "data": { + "inGameID": 38024 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38024, + "versions": [ + "a3" + ] + }, + { + "chartID": "6fee554d1180d093ee84b49616172e3e2e90ef23", + "data": { + "inGameID": 38025 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38025, + "versions": [ + "a3" + ] + }, + { + "chartID": "8884624466ceca63460fb58fe813c8e60a3f8dea", + "data": { + "inGameID": 38025 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38025, + "versions": [ + "a3" + ] + }, + { + "chartID": "ad7214987e47011efe72bd2bc8e931a13c547138", + "data": { + "inGameID": 38025 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38025, + "versions": [ + "a3" + ] + }, + { + "chartID": "0656ef0a5e9223bf2af2ac6383ceb8d2c93d7a80", + "data": { + "inGameID": 38025 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38025, + "versions": [ + "a3" + ] + }, + { + "chartID": "641c2a461e35a54f61f96a58ce6866d090a07927", + "data": { + "inGameID": 38025 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38025, + "versions": [ + "a3" + ] + }, + { + "chartID": "71e624cb92346244e21c024aa6d4efea6c5fbc00", + "data": { + "inGameID": 38025 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38025, + "versions": [ + "a3" + ] + }, + { + "chartID": "d6e5acd5966d3114bf2148cfeb2024a1f36b30d1", + "data": { + "inGameID": 38025 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38025, + "versions": [ + "a3" + ] + }, + { + "chartID": "c9e70204d40aa568169a942bd6deee78b1cbba6f", + "data": { + "inGameID": 38026 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38026, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "22d0ec71e073f000bcaf5534e5865fa781867969", + "data": { + "inGameID": 38026 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38026, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d04cc16e795a8f613e43e0b6cd56d51bdf7477bb", + "data": { + "inGameID": 38026 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38026, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a44ed41d51bf66c40296f5298a99949adeabebec", + "data": { + "inGameID": 38026 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38026, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aa690ef0ba3f56c292399ce77c0cd05274d0b75c", + "data": { + "inGameID": 38026 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38026, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bade6bb0cd11bbc85221e7a72c15d8a5f6d1ce11", + "data": { + "inGameID": 38026 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38026, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "294e51e8135d15c28ac180b7e9e4a9995ea60494", + "data": { + "inGameID": 38026 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38026, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eb1e9cb6dd5af809c70d5e01855e85e881fc8ead", + "data": { + "inGameID": 38027 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38027, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "590e0b3438471a0f1039af96b11d9361f701a5fb", + "data": { + "inGameID": 38027 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38027, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "752e04021ea9174fb7ef40e9a8a0da4c447203b2", + "data": { + "inGameID": 38027 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38027, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cdecb2ade83787ecafd642d032864c206df71e96", + "data": { + "inGameID": 38027 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38027, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ca79a540d9af741114034f55acf1b747d88da06a", + "data": { + "inGameID": 38027 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38027, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a632972bc61d3b44c77c7cf134c8542c8c7a7870", + "data": { + "inGameID": 38027 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38027, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a8879f432f0ee0a1ebac339119a75f791321cff3", + "data": { + "inGameID": 38027 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38027, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "51d393eb99703bf6d761471301576cc17c1095bb", + "data": { + "inGameID": 38028 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38028, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7538eae119b436bdea8282ddb6327d5093ca68ae", + "data": { + "inGameID": 38028 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38028, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "04a9af455233486a14257692e5bdfc08ecabec91", + "data": { + "inGameID": 38028 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38028, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "61caf7b75d675d419ea3fe7963a07ce786e94dbe", + "data": { + "inGameID": 38028 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38028, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "afd0d9bdeb06410d0350b6c4b1dc3d1394f52801", + "data": { + "inGameID": 38028 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38028, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3fb12ced3f90a0ae02cda751767fa7ec1d192f72", + "data": { + "inGameID": 38028 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38028, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "02302ae34d78d3468563439e3e9335c6628b0fda", + "data": { + "inGameID": 38028 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38028, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3da54e746877481e72b9703b52bd639337b645da", + "data": { + "inGameID": 38029 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38029, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b809c1a2b6038033d593649107bbe5e3c761f278", + "data": { + "inGameID": 38029 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38029, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ac8cf96dba39a670b0b5ab944c8cd70f530f962b", + "data": { + "inGameID": 38029 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38029, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c03233abd60765dedc0ad14e3529567fc2852bd0", + "data": { + "inGameID": 38029 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38029, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "60a2f6d6f1dfcbed41085759d96a79bbf2e8b9ec", + "data": { + "inGameID": 38029 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38029, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b7de4cf01496bb9bcc53d19e16770b198aa5777d", + "data": { + "inGameID": 38029 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38029, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e262d5ac7179b9f0718c056d37f74181b2104b89", + "data": { + "inGameID": 38029 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38029, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bb8984a59c1142c9c96345895fb909b4da87624a", + "data": { + "inGameID": 38030 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38030, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eb4a2e0ff5960665a6c209e18c6d9fe5c57a6c9c", + "data": { + "inGameID": 38030 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38030, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a9bdda024db29076a32b5e939102544589593314", + "data": { + "inGameID": 38030 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38030, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2de001b8f103131ee3019fb0cf91ad94633b52f6", + "data": { + "inGameID": 38030 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38030, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff35d0228518ab91bee41a77b319e7b10e8418a2", + "data": { + "inGameID": 38030 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38030, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a3d193d500339512e624781858c0726ebc48a4e8", + "data": { + "inGameID": 38030 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38030, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0b1f29759a7c101e30ee66aa1040396a15c9e712", + "data": { + "inGameID": 38030 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38030, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "396b627e93c5d754a084e80a7d504a8c749cf3fb", + "data": { + "inGameID": 38030 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38030, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cd26c516a82bd0aef8df363151dc0ed8216582b8", + "data": { + "inGameID": 38030 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38030, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cde431ed4af0daf4ad999b53267c1656c854103f", + "data": { + "inGameID": 38031 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38031, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7b6c90ab908e33496426c34542c3e80f358e2061", + "data": { + "inGameID": 38031 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "19", + "levelNum": 19, + "playtype": "DP", + "songID": 38031, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "84d2e5107d803520eafe8f0c88d9c25dca346eae", + "data": { + "inGameID": 38031 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38031, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "33b9ef2df11ece49082c740165c46d244523164b", + "data": { + "inGameID": 38031 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38031, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2b6d7bd84b32f122db0a802b8514b69a12e36044", + "data": { + "inGameID": 38031 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38031, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2fdb6a5a9fde954fc7f7de4b7d6a7ff92068adb2", + "data": { + "inGameID": 38031 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38031, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "96be6b3ce628679ce4ae4c1225f5e2f3b6b057b6", + "data": { + "inGameID": 38031 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "19", + "levelNum": 19, + "playtype": "SP", + "songID": 38031, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "74258d80dcd2ce4d73894a847ff58d8bb75489dd", + "data": { + "inGameID": 38031 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38031, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff2c1f4efa6edb01847da7116f1d938a3dde7767", + "data": { + "inGameID": 38031 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38031, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "17d16cbf1a802fe1e8b1a9cc594e290d5ee48888", + "data": { + "inGameID": 38032 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38032, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "68d48853caf72c80324c91c5b2c3ef207ecac2e5", + "data": { + "inGameID": 38032 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "19", + "levelNum": 19, + "playtype": "DP", + "songID": 38032, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d4ac34bc8d206e1a9a05a2f5eb031577df9c76d7", + "data": { + "inGameID": 38032 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38032, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "411ea1f5ba34b3c18879d57e98fcd9aefb08805b", + "data": { + "inGameID": 38032 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38032, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5f73c6f758e8978e342599cf63c31de8327f166f", + "data": { + "inGameID": 38032 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38032, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "35533c45e4e8902a071d8b2d44116d0fd9b07096", + "data": { + "inGameID": 38032 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38032, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "604ad87dc42e5b468b9821f492c4a0980c3705ed", + "data": { + "inGameID": 38032 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "19", + "levelNum": 19, + "playtype": "SP", + "songID": 38032, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "978d19cbe5b8102f34d62b9b696539a54a2b9664", + "data": { + "inGameID": 38032 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38032, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "71bbb2e0fdbd91dedf3dbb363b6c2af7295c67ba", + "data": { + "inGameID": 38032 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38032, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bf60da0a19d308f1887d8722e2f01cdd4d45d8e4", + "data": { + "inGameID": 38033 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38033, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5e62715f60ddb8dc1d43d47b602d58df3a30ed7a", + "data": { + "inGameID": 38033 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38033, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a2fbfec519dd105d9e0d3d5e5b36f5d138f8b41d", + "data": { + "inGameID": 38033 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38033, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1d697c4f83f00c6829d73752e9ea80a1bbfed301", + "data": { + "inGameID": 38033 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38033, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bc27ed2e20d82444dc9bbf25f00fa5601cf73869", + "data": { + "inGameID": 38033 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38033, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5ccaa9ef21cb12f5b0305eac9bfe1a06380c936f", + "data": { + "inGameID": 38033 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38033, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ca0144e4af6c08cdda06c683f8c5b9eb20a60da3", + "data": { + "inGameID": 38033 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38033, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9b5c99e8f83018545b0562e9aca457235d594c66", + "data": { + "inGameID": 38034 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38034, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f27056eae4aefd1e9f83e2acfe06579132b19aec", + "data": { + "inGameID": 38034 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38034, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d64c3d864d1d3da90c5c6f0b4885f4fbd3d70a2f", + "data": { + "inGameID": 38034 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38034, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ad8833e46875ba4fd09a73d390147a993c940b81", + "data": { + "inGameID": 38034 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38034, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce125ca5aa43e91e2a18f2e0358b6f35e57455f5", + "data": { + "inGameID": 38034 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38034, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3555586dc0694627e4b4dce21e3c93d5e4595e0a", + "data": { + "inGameID": 38034 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38034, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0b62487c81993e69a17958e3aabdadf0310c7be8", + "data": { + "inGameID": 38034 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38034, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8be8aa03ff394b9cef8fc42613f5222151161599", + "data": { + "inGameID": 38035 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38035, + "versions": [ + "a3" + ] + }, + { + "chartID": "a2b90f53f0ea32766c9825409475417bfabb9897", + "data": { + "inGameID": 38035 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38035, + "versions": [ + "a3" + ] + }, + { + "chartID": "e0ad0a3c71ed21ef8186b34f97e49e090bfe3399", + "data": { + "inGameID": 38035 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38035, + "versions": [ + "a3" + ] + }, + { + "chartID": "b5ba34641a2f28a004b86cc1733820e8656c9ec8", + "data": { + "inGameID": 38035 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38035, + "versions": [ + "a3" + ] + }, + { + "chartID": "0645980f4a9917f8061416898a71c05c6023cbd8", + "data": { + "inGameID": 38035 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38035, + "versions": [ + "a3" + ] + }, + { + "chartID": "52837fbcb3974aec225858626c2b51947f9fa31f", + "data": { + "inGameID": 38035 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38035, + "versions": [ + "a3" + ] + }, + { + "chartID": "a974f349be094e18ac56498fa49915ab3d217843", + "data": { + "inGameID": 38035 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38035, + "versions": [ + "a3" + ] + }, + { + "chartID": "3acc6b8a350b53010f30c476b0085b0310bda68d", + "data": { + "inGameID": 38036 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38036, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e5e8ac1f7315af48741be07731f4b6800c02872f", + "data": { + "inGameID": 38036 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38036, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d278aa741879af2abb80f36ab3a17dc68ad933a", + "data": { + "inGameID": 38036 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38036, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c5a8f52e7ba00c0c6afa29b7f6243133c5bb4929", + "data": { + "inGameID": 38036 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38036, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "673a253c28c459f95076583a48b1a32ba455e646", + "data": { + "inGameID": 38036 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38036, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f919684931b958eb89b838468858b244bf4bcb66", + "data": { + "inGameID": 38036 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38036, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6c01bf5a250d6812aed7191c45ce44870ff481f5", + "data": { + "inGameID": 38036 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38036, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4991dcc2efb3c22e7068735d006e296137c00d87", + "data": { + "inGameID": 38037 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38037, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ffe59f9ff4b279dc9f284ca41b435bc3cebd75a1", + "data": { + "inGameID": 38037 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38037, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4f48e702e8505e62660d56d3e82f3ab2c9b084bb", + "data": { + "inGameID": 38037 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38037, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dbd021d385732d635bec29473f7a2dec2cbec630", + "data": { + "inGameID": 38037 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38037, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cbff94d9530e58f890c09af0f06aca8d088ee076", + "data": { + "inGameID": 38037 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38037, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a49faad8d380aed5a4fb2678d6a0cb1ba4702f25", + "data": { + "inGameID": 38037 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38037, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9249ef442cba4c16a38a209f102dace96d9a11c0", + "data": { + "inGameID": 38037 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38037, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1b70c3fcdea9ca618db72ed895a48397c0650e0d", + "data": { + "inGameID": 38038 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38038, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "effddb06ec6f44f9096de981cbbc21b670b87509", + "data": { + "inGameID": 38038 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38038, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a22a624615b96dd47bb484c6351392e1ebbcb9b8", + "data": { + "inGameID": 38038 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38038, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e60866796dd913cb09c06f9f398d84334075fef5", + "data": { + "inGameID": 38038 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38038, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b484ac054c759224c4faa5f1ac1dd7fe259841d8", + "data": { + "inGameID": 38038 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38038, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f12eba4933d6bd8935e6af24d667b7d23a824689", + "data": { + "inGameID": 38038 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38038, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "24f76fad4eab5eb2cdfeb85a9f4951200fedbee2", + "data": { + "inGameID": 38038 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38038, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a8b770a6d5c19fb1905f49d6a8887f7a75b62512", + "data": { + "inGameID": 38039 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38039, + "versions": [ + "a3" + ] + }, + { + "chartID": "d66271eb24d2ef9a746d7ae56c4e0e15d645c7cc", + "data": { + "inGameID": 38039 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38039, + "versions": [ + "a3" + ] + }, + { + "chartID": "838ffd1da80c625ca652b500fba12c3c175d90e0", + "data": { + "inGameID": 38039 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38039, + "versions": [ + "a3" + ] + }, + { + "chartID": "73ff869f774fdd431165beead29d69081420502a", + "data": { + "inGameID": 38039 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38039, + "versions": [ + "a3" + ] + }, + { + "chartID": "a7f4fc1764b8b8f8cbbf9af3dffaf1252030188f", + "data": { + "inGameID": 38039 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38039, + "versions": [ + "a3" + ] + }, + { + "chartID": "fe87cd74c03e0006346a9502492c7af7056e3d4a", + "data": { + "inGameID": 38039 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38039, + "versions": [ + "a3" + ] + }, + { + "chartID": "f11fb7d7aff86288924a9eb35f91d86017b0601c", + "data": { + "inGameID": 38039 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38039, + "versions": [ + "a3" + ] + }, + { + "chartID": "467ead23851b1fddafe6847f2cbf43f9a814b8c2", + "data": { + "inGameID": 38040 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38040, + "versions": [ + "a3" + ] + }, + { + "chartID": "9ca1ccf0a3da67d8c586d8243cafb4c805b95cd5", + "data": { + "inGameID": 38040 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38040, + "versions": [ + "a3" + ] + }, + { + "chartID": "c6418e9ed77f6b947b736edcf5fe0140dd0c7c3f", + "data": { + "inGameID": 38040 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38040, + "versions": [ + "a3" + ] + }, + { + "chartID": "d3f62940c89d2c96d7ad8add48894e450a571ab8", + "data": { + "inGameID": 38040 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38040, + "versions": [ + "a3" + ] + }, + { + "chartID": "b44462831c308f80113d80abea2867c81a0c0523", + "data": { + "inGameID": 38040 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38040, + "versions": [ + "a3" + ] + }, + { + "chartID": "dbd52a16e1cfdd8343108bc5715d73ff67164aae", + "data": { + "inGameID": 38040 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38040, + "versions": [ + "a3" + ] + }, + { + "chartID": "ba935c22e11a9d21b263d55661bdd4e8a7e91a5e", + "data": { + "inGameID": 38040 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38040, + "versions": [ + "a3" + ] + }, + { + "chartID": "deddd89045b6da331223d7827fd1b072494121db", + "data": { + "inGameID": 38041 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38041, + "versions": [ + "a3" + ] + }, + { + "chartID": "1c2329738a57fe49c0915a2cfa3228a9f3b32fc0", + "data": { + "inGameID": 38041 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38041, + "versions": [ + "a3" + ] + }, + { + "chartID": "3b758fae8d93acb62626462d8ea3c9065ffaf7e7", + "data": { + "inGameID": 38041 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38041, + "versions": [ + "a3" + ] + }, + { + "chartID": "f78256169ebd2969c9e2064366614dce917baeba", + "data": { + "inGameID": 38041 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38041, + "versions": [ + "a3" + ] + }, + { + "chartID": "a86be00cb56abd1609023935f577f1094791e169", + "data": { + "inGameID": 38041 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38041, + "versions": [ + "a3" + ] + }, + { + "chartID": "8f0333ce5dd38fa9469902c2d71277846b8e2c21", + "data": { + "inGameID": 38041 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38041, + "versions": [ + "a3" + ] + }, + { + "chartID": "19545db45d71c64a973a46e6c314685748b9a6f9", + "data": { + "inGameID": 38041 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38041, + "versions": [ + "a3" + ] + }, + { + "chartID": "58ebeb6d5eaa50d58a4c170681af9e9f6ab89e8f", + "data": { + "inGameID": 38042 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38042, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "be7c608a68d1d5ff2530fdd9c842346cca46c99e", + "data": { + "inGameID": 38042 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38042, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "49d3ea384f72eeeb3d8e1882f79a492c5b88256b", + "data": { + "inGameID": 38042 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38042, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d9900496d12c08dcab9d8aff57b3cc137eca6a3e", + "data": { + "inGameID": 38042 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38042, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce221a083b24af4b2aa7b19f668bc5410f5defb2", + "data": { + "inGameID": 38042 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38042, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bdbe0c1b2f8c62e8f949060c983d7deaee93a115", + "data": { + "inGameID": 38042 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38042, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c1103c4539de61e4a145f6e30edd29f09be9fe4b", + "data": { + "inGameID": 38042 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38042, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "104142593772a20a8743470e97c93f7b5698470f", + "data": { + "inGameID": 38042 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38042, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cecfb7eed4df6bca831e8245d3819c18f609213f", + "data": { + "inGameID": 38042 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38042, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2018485935898e83c004f84820807fb2dc85a7e0", + "data": { + "inGameID": 38043 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38043, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7dc13e482afee84b3443fcc416c001d733a48634", + "data": { + "inGameID": 38043 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38043, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d1ea23205441d3ac216e053f31cbf6fe939c7194", + "data": { + "inGameID": 38043 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38043, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3ea3d6d6c6306b37c4a451c7ff50b6fe5bae6811", + "data": { + "inGameID": 38043 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38043, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "85f130e6f37b9d23a1ecf2d79f11896c9a8db3f1", + "data": { + "inGameID": 38043 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38043, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dd00f3e7773a515675378bcbc6d42699d8848b1a", + "data": { + "inGameID": 38043 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38043, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "652ca106835a9dc3168941ac1eba5ec5470c5f42", + "data": { + "inGameID": 38043 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38043, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fd257c137c08b588730cd5285f26a1106e022270", + "data": { + "inGameID": 38044 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38044, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a0616509857c38f669823d7a4e8f1ed968191286", + "data": { + "inGameID": 38044 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38044, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "55daf28e2d53b0962a2f4e30cf82404c4a79b5d8", + "data": { + "inGameID": 38044 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38044, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8372d025b397874a0fdfc796b60cf1ffc46bfac4", + "data": { + "inGameID": 38044 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38044, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "95f5775fa6117611fb34bc05b0b4bc9a1566517c", + "data": { + "inGameID": 38044 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38044, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "33652f33c9d043d982eaf671c99b53c0a49da0d1", + "data": { + "inGameID": 38044 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38044, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a49816bd85f4c39309542021cf475a626a0ba392", + "data": { + "inGameID": 38044 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38044, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2c1cda5bfb99a97eceff17b7e513f2b8c9d05a52", + "data": { + "inGameID": 38045 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38045, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cd8ce03c506669fe0cb1ee63a133bb453b7222fd", + "data": { + "inGameID": 38045 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38045, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "617c3d0c2222dc8f32b6f10b00c832d6cdef8b1c", + "data": { + "inGameID": 38045 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38045, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fef69b83ced1f66445a9eeeff23facb424bc040d", + "data": { + "inGameID": 38045 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38045, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "64829446e1a71af9f04a7014a5ba5cd7e3dee671", + "data": { + "inGameID": 38045 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38045, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7074928e1031c4e28a1cb5397493b24b63cfb87c", + "data": { + "inGameID": 38045 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38045, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3ab1a3e3673132d24857241f8bf34ecf547fbadf", + "data": { + "inGameID": 38045 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38045, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "73877ec6f8588a544b7faf874ace74f3ced927da", + "data": { + "inGameID": 38046 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38046, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f09b148182d9a56868a6584145cab9fe7b10d8e9", + "data": { + "inGameID": 38046 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38046, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "91c999a2536d0a85bec695c1252af452ba99779e", + "data": { + "inGameID": 38046 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38046, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "99d0a486a98a5790f53c187334d38524f4477a31", + "data": { + "inGameID": 38046 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38046, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7a598c490010e314f73a1ce3b6524d207f45fd02", + "data": { + "inGameID": 38046 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38046, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "01c0d1555665a6e56bde43e141491a4cad9b88be", + "data": { + "inGameID": 38046 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38046, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4e19f89a76dac9a7c2de8f78c3e0efc7914edd56", + "data": { + "inGameID": 38046 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38046, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f552a041681253b16b80e296d4afc7812dd3a3bb", + "data": { + "inGameID": 38047 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38047, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4a116e1750a37b4e66ec901a749749204d7a02c6", + "data": { + "inGameID": 38047 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38047, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f97ce14ccc64f96b9c21a3d4c2d9c49024398478", + "data": { + "inGameID": 38047 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38047, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3b9ddecfb177fc9533f5b930ec9c972d1b23ecc7", + "data": { + "inGameID": 38047 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38047, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "99aee332e6d1bbdb212167b94074c445e90194be", + "data": { + "inGameID": 38047 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38047, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2a615b81dca032cc82714780a9fa811268036f0c", + "data": { + "inGameID": 38047 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38047, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1004ac8d58283aaa322211f1a44856f4d1e17189", + "data": { + "inGameID": 38047 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38047, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4aa658c33931ee49cf8041041d02a3640d6bafd4", + "data": { + "inGameID": 38048 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38048, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b977715868438df1c6ccf78586df7328f468d4d8", + "data": { + "inGameID": 38048 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38048, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7f7fc31d4c1ba920f7080b3a491cd81bce6e9a9a", + "data": { + "inGameID": 38048 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38048, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e06da564b546e4237400e9013a4827ab90682994", + "data": { + "inGameID": 38048 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38048, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f31edb1f12e881748021b49b80c883b57ca52b6", + "data": { + "inGameID": 38048 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38048, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "90e68b72452697f42b64dc7b60fba1c1d1218b73", + "data": { + "inGameID": 38048 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38048, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "de334a39d565477c0ce522b76981298cedaf88a5", + "data": { + "inGameID": 38048 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38048, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "02498ce0877ccce16b5453f0bfde9af9cf8881bf", + "data": { + "inGameID": 38049 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38049, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e0bb20adf5a3bee1ad618d7abdbf92770407de14", + "data": { + "inGameID": 38049 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38049, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "59c44a1d955c7e9edc992ba04afe36cd8d4b541b", + "data": { + "inGameID": 38049 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38049, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fac060be9c7b87f7f2fb169ba8aa65bcabf52c71", + "data": { + "inGameID": 38049 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38049, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8bc579e642bb76f06c6f6b7ce45d700b04f7fce6", + "data": { + "inGameID": 38049 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38049, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1a9530d246c326fdb23ddbc441f9e25184ae7090", + "data": { + "inGameID": 38049 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38049, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0cd85a2a55d0570e8b777132cdb170d3d456de2f", + "data": { + "inGameID": 38049 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38049, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "030bcbe27fa4816ae6039cd0cb21793a189507f7", + "data": { + "inGameID": 38050 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38050, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c2daf8ac04db65fcdcd131c046f2b4019c2f52ec", + "data": { + "inGameID": 38050 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38050, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cf71e6f164129427e48ba9a147fde9d6238b0f4d", + "data": { + "inGameID": 38050 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38050, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8e811492e48359cda540ae6d3b9d0ea3833ba043", + "data": { + "inGameID": 38050 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38050, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "840bb462185ff9fb68f950b401d238e982a4421c", + "data": { + "inGameID": 38050 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38050, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "06f6c39d081ae9627ff29817a182f1af0ab0b985", + "data": { + "inGameID": 38050 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38050, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9155c3311cccbe7149be3bb92756191c304c1375", + "data": { + "inGameID": 38050 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38050, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c02057d2ffad238c88493d64f3d8c2836a70d19c", + "data": { + "inGameID": 38051 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38051, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "09bbbb72b9cb3bb2cea4bc4a2c1df55687dd95be", + "data": { + "inGameID": 38051 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38051, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "17d5f852ef4fb25e79220190bbc606f207e64f61", + "data": { + "inGameID": 38051 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38051, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d7071de78c53f9543030816e436d20ed948a0ad7", + "data": { + "inGameID": 38051 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38051, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c7776b982afd0ab0cedabc47963216045001503d", + "data": { + "inGameID": 38051 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38051, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "adcf707220bfa0c017d0d4d3f656b084b39b11f0", + "data": { + "inGameID": 38051 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38051, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "01804154947e677fc5e403ec69587e7e41bb3937", + "data": { + "inGameID": 38051 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38051, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "03aacc25bb9963d6b090211845e73342d824edae", + "data": { + "inGameID": 38052 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38052, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eda46053faef85ed7b2b9a0facc185b3cbb29f61", + "data": { + "inGameID": 38052 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38052, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c3729f64dcdc5a04558830dff16673a95083c5ad", + "data": { + "inGameID": 38052 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38052, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ac3fd17dce53262b81a7aee74b197afc11bed71c", + "data": { + "inGameID": 38052 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38052, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f9fbc7d16073ffcd05da315e4e0d46ea388c0843", + "data": { + "inGameID": 38052 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38052, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "429b28a5b7384155b48ab7866970487441f0ad38", + "data": { + "inGameID": 38052 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38052, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fa5494e5ea87e196a32092afbe4df0ff00ca18f9", + "data": { + "inGameID": 38052 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38052, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4a9523e566c9bf936b105cd4efdd226e6f9408d2", + "data": { + "inGameID": 38053 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38053, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bea2562cd79fd449101df2d86c94d38d4f79e303", + "data": { + "inGameID": 38053 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38053, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "72f446b19d21692b521ba44a6198aaec48439e45", + "data": { + "inGameID": 38053 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38053, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d29acb673b25c14f7594783a70b9b0548520ca6d", + "data": { + "inGameID": 38053 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38053, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e7adbf8bde3d7c63b8332b524ef3e9b321cf5b9e", + "data": { + "inGameID": 38053 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38053, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "202c96a1fdf0993119e39aa48521d7e1250a14d1", + "data": { + "inGameID": 38053 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38053, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ca83f38cda78e09f06cd24f5ac5c80bd041e91e6", + "data": { + "inGameID": 38053 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38053, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "724934262defe3785ee7be98a63e8e3db37573e7", + "data": { + "inGameID": 38054 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38054, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3ba3d60946e5e56d588bed1b1ff1edcb17bde9ca", + "data": { + "inGameID": 38054 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38054, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "28e2746f6b8fa3290c96a978e3c62090221c6a52", + "data": { + "inGameID": 38054 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38054, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "05d796d583f85e51dc16e5e59d708a4c938db226", + "data": { + "inGameID": 38054 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38054, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3df7e68a423cfc715c047cdcfd5d35d4c4d89f39", + "data": { + "inGameID": 38054 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38054, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "55412f76d5857be0bfeaebf0020099f845126444", + "data": { + "inGameID": 38054 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38054, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dae66bfb268a50476bd963f46e4ad817e06b7c23", + "data": { + "inGameID": 38054 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38054, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4c78403287e20c9fc2dc5c60718412ef1cce8dd1", + "data": { + "inGameID": 38055 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38055, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bd1c8a10444afdf963303e4d5265b628e75b3c93", + "data": { + "inGameID": 38055 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38055, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "06ba8a6bde586eaf1f8deffbe5e461127329dfb6", + "data": { + "inGameID": 38055 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38055, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cfacecf31e0fe026889b666bb7b4ff601fb03353", + "data": { + "inGameID": 38055 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38055, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c99a77ffc917f1139fe21c6a821d64f29496bebf", + "data": { + "inGameID": 38055 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38055, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fb1ccab65967ef5144d1425de5ae5120c5e9a232", + "data": { + "inGameID": 38055 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38055, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9741e9ec46fe0373238fc7e57d4c61b9cc30f4a0", + "data": { + "inGameID": 38055 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38055, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "628601e938427eb3a9c3e7edf774c36f989813cc", + "data": { + "inGameID": 38057 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38057, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "396b57f3eeddcc2f8a545e5b66c6c675b8c1da19", + "data": { + "inGameID": 38057 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38057, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "302873bb0f9c3f09ea57c54b4fa5e52c97741592", + "data": { + "inGameID": 38057 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38057, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e01fdb27f790ec2c0cdb6162905eb8b32ecc3178", + "data": { + "inGameID": 38057 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38057, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ec130a6aac7c5ffddd0df393b6f37c9fad42cf72", + "data": { + "inGameID": 38057 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38057, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ccb3d367e7f3bc64faf6b8dfbed8a5c70fe2c62c", + "data": { + "inGameID": 38057 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38057, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "577e8efc002e600e9ee8510ecd2d31906bebbb89", + "data": { + "inGameID": 38057 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38057, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "80969784d5d2c0acb5cd7f23a9341504d20e4bae", + "data": { + "inGameID": 38058 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38058, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a1190e53b8e731ef5d4128839220400a2ec1ffde", + "data": { + "inGameID": 38058 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38058, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ff916aa4cd9876a28ce6583bf56135e1448072b", + "data": { + "inGameID": 38058 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38058, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7202a7074f7fa231c0e4b1b344e1f3b70ec9ec34", + "data": { + "inGameID": 38058 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38058, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4afe0765360990fbea1d07068406e6376b44ebd2", + "data": { + "inGameID": 38058 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38058, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "de6c17e02bcd538676794e8e29316e34ce077950", + "data": { + "inGameID": 38058 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38058, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2e1edb344ccb8f3cc05b4e730ce56d86f72e6464", + "data": { + "inGameID": 38058 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38058, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d6ab2d1e2b1ce4b48ba61e6f723d0d4b2dd7edcc", + "data": { + "inGameID": 38059 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38059, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "78ee1c7d345ffa8993b5b232700133e2ffcdeba2", + "data": { + "inGameID": 38059 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38059, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "db7c29db17135040c3b24cfc9f1e180d634c67e9", + "data": { + "inGameID": 38059 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38059, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c138dadf5b57ee822d9fd9a1c3eabe90bcb0ff28", + "data": { + "inGameID": 38059 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38059, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9805418334c9b29e40dc291c28b2eaafb009271c", + "data": { + "inGameID": 38059 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38059, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "341bb8c0f62aba22c8ea6b5482f5507d8b86493e", + "data": { + "inGameID": 38059 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38059, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8100761241570e15f30e76f573f34fd77a464d68", + "data": { + "inGameID": 38059 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38059, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d27ac4471d47923eb6c6eeb98cd135bd962e24d9", + "data": { + "inGameID": 38060 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38060, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8d0b142f496e18d4ca2d9e6597630171d32f1aab", + "data": { + "inGameID": 38060 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38060, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ade1e2abfeded99a7500d676f0ee9e49fcd768f3", + "data": { + "inGameID": 38060 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38060, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8c5a584d1a7431d2587cf20d0cdd8840bc661a5a", + "data": { + "inGameID": 38060 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38060, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7ae85b40889b1f25e05277c01084ba51971f3732", + "data": { + "inGameID": 38060 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38060, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5ee1bf898de274f2e4e4ef05ebdb114255f0822f", + "data": { + "inGameID": 38060 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38060, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "37a7dd40fc9ede28918dffe4485d9285a1a7b40a", + "data": { + "inGameID": 38060 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38060, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7c5082c5c8baf8f3d6cd4fa4b3903a6a6147d014", + "data": { + "inGameID": 38061 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 38061, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9986afcad52a48710b26311cdca10e5047bd38c1", + "data": { + "inGameID": 38061 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38061, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d18f1f08d311632e2f4ba66bcf200bc2f34f9769", + "data": { + "inGameID": 38061 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38061, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9ad06b51ad2de925accb1cc71b11bd8c51f7d1b5", + "data": { + "inGameID": 38061 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38061, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b448496f778489d81185c664fdc485da7278bf40", + "data": { + "inGameID": 38061 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38061, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ba58217b1131f583d65e36fe8d7eced0f5cbeb96", + "data": { + "inGameID": 38061 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38061, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0b45a5a5459b1b8c26341c4e7a745d088b9d4f7f", + "data": { + "inGameID": 38061 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38061, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "85be1780bb681fa5928c2c0b8d7efe03fd888c8f", + "data": { + "inGameID": 38061 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38061, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5548108df1646a09e46d0f3d7ca7b7d7bc92f83d", + "data": { + "inGameID": 38061 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38061, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fdcba68196464d9e37b8d0bdf5c479a1b9b21888", + "data": { + "inGameID": 38062 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38062, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0b5e6c745c074700d643ff86e64d425bacd26c06", + "data": { + "inGameID": 38062 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38062, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4303f8c1596677bf8f4ee18d23fbb1ad7662d40b", + "data": { + "inGameID": 38062 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38062, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "df3bfd35fbd0396e356d111ec4da110f098ad281", + "data": { + "inGameID": 38062 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38062, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "95b82133431d5d4ec2f936e6a4415ca9097aff05", + "data": { + "inGameID": 38062 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38062, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "13d66726eea61f07b3e07a450bd1ffa9c31077b5", + "data": { + "inGameID": 38062 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38062, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5e4fc7eecc213b0dcd2e908fc3ec95f27be5b4d8", + "data": { + "inGameID": 38062 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38062, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8e24f2114ea9e20e0abeeaabec94762cf651880c", + "data": { + "inGameID": 38063 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38063, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "001ed98812c0d6e43153188e5f2744852dfdff4f", + "data": { + "inGameID": 38063 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38063, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5ebbfc29a392f7dd3a725bb3ec3d258a09a6686f", + "data": { + "inGameID": 38063 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38063, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c44f5dac69196064401b0d9c8d1050662b485cc9", + "data": { + "inGameID": 38063 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38063, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d05867be75440eb334e572dd9307057f2b7619b4", + "data": { + "inGameID": 38063 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38063, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fac5bb4bc9aa5ba69d8b038de2bf400e3300c4ed", + "data": { + "inGameID": 38063 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38063, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "08eff502894991c6250c334c1087efbcd412b341", + "data": { + "inGameID": 38063 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38063, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ec2949311817ed14699f3da02c6e858dcbf9da5f", + "data": { + "inGameID": 38064 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38064, + "versions": [ + "a3" + ] + }, + { + "chartID": "cde843200fbe595a3d0152b27e233773988ab831", + "data": { + "inGameID": 38064 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38064, + "versions": [ + "a3" + ] + }, + { + "chartID": "f66528994f517aec8275195c39418fe05f74b0fa", + "data": { + "inGameID": 38064 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38064, + "versions": [ + "a3" + ] + }, + { + "chartID": "ed1a2484ac8eb092d615b340eee8570141ce0af1", + "data": { + "inGameID": 38064 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38064, + "versions": [ + "a3" + ] + }, + { + "chartID": "46971255d0b66192b1b152fb2d81b862e1ba02c1", + "data": { + "inGameID": 38064 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38064, + "versions": [ + "a3" + ] + }, + { + "chartID": "dd4bbc87bbc5557fb1df2b7a411c0b3e3d22b9b5", + "data": { + "inGameID": 38064 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38064, + "versions": [ + "a3" + ] + }, + { + "chartID": "72b5cb7c8b595e6dbaa1000718064368655875a0", + "data": { + "inGameID": 38064 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38064, + "versions": [ + "a3" + ] + }, + { + "chartID": "ed1e6a21319eda68d057d1d5b1746549e7b6edbc", + "data": { + "inGameID": 38065 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38065, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b47fa909b5b9f859b43bebc3372f803e7f58d1b2", + "data": { + "inGameID": 38065 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38065, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5b3e19ba030707c8696c1fe2ed6dc4c07c478ea2", + "data": { + "inGameID": 38065 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38065, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7f19cc56a14aae2f6b17f3b1eda1c02b7708d791", + "data": { + "inGameID": 38065 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38065, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "810573aa21cd00e28e48f83c60ccc763b657271b", + "data": { + "inGameID": 38065 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38065, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "54d3c0ac93b178f7b81d21821c9b1acb3dc3913c", + "data": { + "inGameID": 38065 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38065, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cdc6a5b2895a7578dcae5824873d81762772d346", + "data": { + "inGameID": 38065 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38065, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e12a44dd37ba2c2b07c682d90e10081b70f07203", + "data": { + "inGameID": 38067 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38067, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e7361201cf2e665a779c2dfed79008be48cf8527", + "data": { + "inGameID": 38067 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38067, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a62e5751f9d883c1f94e9fbc0ee2cfecfeb39a1e", + "data": { + "inGameID": 38067 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38067, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5c14b91077914ad929bc7b0ec23e22e5a4cb2341", + "data": { + "inGameID": 38067 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38067, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "302cc2e2f40498158616e802a29b2be66bfdab44", + "data": { + "inGameID": 38067 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38067, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ef621a835fea1ae7d1568b092b5f07c14c8d23c2", + "data": { + "inGameID": 38067 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38067, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3b5f528e2ebbf38157de36cf1ce7e8f217d13950", + "data": { + "inGameID": 38067 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38067, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cdb887d0863cb385cfad78b5cd1471353d4ea95b", + "data": { + "inGameID": 38068 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38068, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4b33d021f6f6292620da843b67f6d8caa5e69d12", + "data": { + "inGameID": 38068 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38068, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f5d2b45b0525e9904f5bbdf3684504acb8ad5210", + "data": { + "inGameID": 38068 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38068, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d0fecbaec27ee2693b94e8f304da52152da19ec9", + "data": { + "inGameID": 38068 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38068, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2af573ade948e267ffe9da7144ee0aeabdc5d6f6", + "data": { + "inGameID": 38068 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38068, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0aa6889f3fcfb02ba853a68b9e1ca87f768bddaa", + "data": { + "inGameID": 38068 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38068, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a09e62fa279befe34f0b8e92acc5bf42381cea83", + "data": { + "inGameID": 38068 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38068, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5cc01bc31cb2736b7980a56b0f25241edbcf7fdc", + "data": { + "inGameID": 38069 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38069, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a68979da0f4e6aeb2d41a87579a94f77a25eb52f", + "data": { + "inGameID": 38069 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38069, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9766f4b99b632284b6f10b23fb79898407ccf8de", + "data": { + "inGameID": 38069 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38069, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "754908eb2b01c37db4fddba8e6bd5f1268546f18", + "data": { + "inGameID": 38069 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38069, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1a5de6cc63f02beee679d49333557b66f6b50f09", + "data": { + "inGameID": 38069 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38069, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "200bb263dbbb2f69455b6fcc1ff2f658cdad16c5", + "data": { + "inGameID": 38069 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38069, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d6e385a0dd16ecc6df1ba0c534693249a3535146", + "data": { + "inGameID": 38069 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38069, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "881695f8576b5a696b17ed86376c2b59b842b117", + "data": { + "inGameID": 38070 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38070, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "959b6da78cc6d7894d382b592d06e3767e9827ef", + "data": { + "inGameID": 38070 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38070, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a6de1eae83444bbde0a875bf8c0546351a9c5901", + "data": { + "inGameID": 38070 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38070, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e0e78fa9fac07737717d2233326cff23f795e34e", + "data": { + "inGameID": 38070 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38070, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ffa103b34927af8354193a2ac552653a0c043c9e", + "data": { + "inGameID": 38070 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38070, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "40f856714d6048ebcf3c873c5ac6d8e50b4f1d71", + "data": { + "inGameID": 38070 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38070, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1db430aa7e92c1f339baaec01b063af2473ab196", + "data": { + "inGameID": 38070 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38070, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f25310a966658cff9b2b40086cded46ab6e55db3", + "data": { + "inGameID": 38071 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38071, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bcd34e6b2ed40f60cc1d5b4fbecf1286ee06a764", + "data": { + "inGameID": 38071 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38071, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1d5a7712b5fe5c83a10aeba067b0deac587bfec4", + "data": { + "inGameID": 38071 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38071, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3db76585eaae36e1d19a82b49cb65bb992f2bb44", + "data": { + "inGameID": 38071 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38071, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3c756387c05932e36585356a0a7e79c735a15dde", + "data": { + "inGameID": 38071 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38071, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "70d734deef6c69a557421bb512b09ea9ed42b8a5", + "data": { + "inGameID": 38071 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38071, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "21c8f095a4bc71280d837344d0645cd208c1ed1d", + "data": { + "inGameID": 38071 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38071, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f90193226d327fb1e7abedc4a1849888a0336747", + "data": { + "inGameID": 38072 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38072, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "47d9b81824e5b20c7baa81682c09598f61dc96bf", + "data": { + "inGameID": 38072 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38072, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f78bc0f9099b289f7fedd4f19e7a8a2cc5ba151b", + "data": { + "inGameID": 38072 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38072, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6ce546615a9b6440feffd4a95e6ebbe92501ba7d", + "data": { + "inGameID": 38072 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38072, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4665fdf472ff0f993e3aa153c8cfc0f2cc217efd", + "data": { + "inGameID": 38072 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38072, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "97f3bef2a46294f32dbb4c05cd752299ffd9cc89", + "data": { + "inGameID": 38072 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38072, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4d0ad4a690ef912bbcbb6c897b60e4b0a0727f6d", + "data": { + "inGameID": 38072 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38072, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7666af747a19f1b5bbe03c9bcef7bcd9b190f71c", + "data": { + "inGameID": 38072 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38072, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f7b7a524d4f753fc48d6675fb29c885015274ee7", + "data": { + "inGameID": 38072 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38072, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5175cfec1d51c97105ed280624d23cc03446c219", + "data": { + "inGameID": 38073 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38073, + "versions": [ + "a3" + ] + }, + { + "chartID": "ae4a0262cf285315a704dc1fc1d622b114696aff", + "data": { + "inGameID": 38073 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38073, + "versions": [ + "a3" + ] + }, + { + "chartID": "9e52ad8b828f263045295297c64516a226e27885", + "data": { + "inGameID": 38073 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38073, + "versions": [ + "a3" + ] + }, + { + "chartID": "cad34ba580453641b1682da5f1bb8a4b059dfd09", + "data": { + "inGameID": 38073 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38073, + "versions": [ + "a3" + ] + }, + { + "chartID": "81d2ed9c643ecf348f0fe4bb32acc73a07668df5", + "data": { + "inGameID": 38073 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38073, + "versions": [ + "a3" + ] + }, + { + "chartID": "94351e20888b566f67726bf408a4e6ab645c5bcc", + "data": { + "inGameID": 38073 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38073, + "versions": [ + "a3" + ] + }, + { + "chartID": "c41382542ff43a4d91ee80ac6b08de29f50b4444", + "data": { + "inGameID": 38073 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38073, + "versions": [ + "a3" + ] + }, + { + "chartID": "b552e7a79f60a12cbe5087c99be23757cc4d5a39", + "data": { + "inGameID": 38074 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38074, + "versions": [ + "a3" + ] + }, + { + "chartID": "5ff3d009f0b389cadd96e1954430f9161d4c801e", + "data": { + "inGameID": 38074 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38074, + "versions": [ + "a3" + ] + }, + { + "chartID": "bd1785a34f5dcb5f4872d8d9c5d66b6deca95367", + "data": { + "inGameID": 38074 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38074, + "versions": [ + "a3" + ] + }, + { + "chartID": "95368a286837290e5da1132fc61cc781af5d7b2a", + "data": { + "inGameID": 38074 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38074, + "versions": [ + "a3" + ] + }, + { + "chartID": "aa3e6e1b08d38e5a44bef4afd5668089f35999e5", + "data": { + "inGameID": 38074 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38074, + "versions": [ + "a3" + ] + }, + { + "chartID": "bcaa00b1adadabb36b6da1e3698f5b9150f258e5", + "data": { + "inGameID": 38074 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38074, + "versions": [ + "a3" + ] + }, + { + "chartID": "df587fe85b45a08cc3e18eddc36d6c52e8084277", + "data": { + "inGameID": 38074 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38074, + "versions": [ + "a3" + ] + }, + { + "chartID": "34189cc5ad665c3f5c7683a76ad24850568a209b", + "data": { + "inGameID": 38075 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38075, + "versions": [ + "a3" + ] + }, + { + "chartID": "c039d333504fb95f950394382af8c9d53168a425", + "data": { + "inGameID": 38075 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38075, + "versions": [ + "a3" + ] + }, + { + "chartID": "8280b7170378466e98804042738bac54f2bfc297", + "data": { + "inGameID": 38075 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38075, + "versions": [ + "a3" + ] + }, + { + "chartID": "eafa9b18470e42e7660c0d7a8d0344c18b7966d0", + "data": { + "inGameID": 38075 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38075, + "versions": [ + "a3" + ] + }, + { + "chartID": "b9259818fbd5512480964b13446c3b09c4817e9b", + "data": { + "inGameID": 38075 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38075, + "versions": [ + "a3" + ] + }, + { + "chartID": "5e866d90be9c3b30383586dfb0c60d840b647c74", + "data": { + "inGameID": 38075 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38075, + "versions": [ + "a3" + ] + }, + { + "chartID": "c6e1f6f83276de0bb9fade77ab55a460b2b77986", + "data": { + "inGameID": 38075 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38075, + "versions": [ + "a3" + ] + }, + { + "chartID": "38db3e60670cf42dd6c1e4a355d3305c96ba3fc6", + "data": { + "inGameID": 38076 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38076, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "af12f7da140b0ddf425cecac2ae90e4560e1d83a", + "data": { + "inGameID": 38076 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38076, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9e153884a13e1da947793a7b138bd8a3e34fad68", + "data": { + "inGameID": 38076 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38076, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f9aedb8c95861726bdd7c8a1bdec4b9102da52de", + "data": { + "inGameID": 38076 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38076, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4cb470d5f62696f5cc8c1560a0b15428798431d0", + "data": { + "inGameID": 38076 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38076, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "38ed66c7e878b98d86dcf67b0d62fb180f87331e", + "data": { + "inGameID": 38076 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38076, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "205ebd1d0fb0f8928f90d50e8af26b82fc5c8ef2", + "data": { + "inGameID": 38076 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38076, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3591162523b37ffebc7e95a007e5c4e0c34a318c", + "data": { + "inGameID": 38077 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38077, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b575467c477c6fbce4a4c36c250a06e0bfc2fac9", + "data": { + "inGameID": 38077 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38077, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eac97c2c69e940b3a8feae8287ef0404f6021f12", + "data": { + "inGameID": 38077 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38077, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a1892e10420a27ff7ad011b7d95caf4bd77f28e1", + "data": { + "inGameID": 38077 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38077, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1dffe8cc3eacbd16fcc904f6e5ffa585b87f7846", + "data": { + "inGameID": 38077 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38077, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6f976c2d6d1342c44ef5c94320f887c7c63507ab", + "data": { + "inGameID": 38077 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38077, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c2230cde8a12ba777f43373b5e665b5067663cc5", + "data": { + "inGameID": 38077 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38077, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5974f390f7fa8de5c59ff4e4c154778b91d7a66a", + "data": { + "inGameID": 38078 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38078, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c27b78af94c61b69f829eb3ed638780bf691ba5f", + "data": { + "inGameID": 38078 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38078, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ba5a74eb9d2d40ea5d82580a5c1f81ca1b5d0c71", + "data": { + "inGameID": 38078 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38078, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2116a5dd514bace1d902393678d354f6e3613858", + "data": { + "inGameID": 38078 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38078, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c453c86de6ce40b33cbc0749c46bad0a6434f54d", + "data": { + "inGameID": 38078 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38078, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce9afd06698c1539d4e832a79b6b7fa58ad8282a", + "data": { + "inGameID": 38078 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38078, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "faca21cabdd86b3a23797d6b24c9999685025b63", + "data": { + "inGameID": 38078 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38078, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4e2f39902169a98485407f698113fa76f5addfbb", + "data": { + "inGameID": 38079 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38079, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dc8ef6e889b22a5774458d868bc8b779c2f48d87", + "data": { + "inGameID": 38079 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38079, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4eaa5c157aca872fc325d59d2eb29c30ffdaf1c0", + "data": { + "inGameID": 38079 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38079, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "57ce0c8fadbba56a6272e72f01858432c349174a", + "data": { + "inGameID": 38079 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38079, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c27d371652eb3d7549eeac6aecd1c76b4db2577a", + "data": { + "inGameID": 38079 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38079, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b3468a2697f4d2a01bb8cf872cb10e3beb59efeb", + "data": { + "inGameID": 38079 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38079, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2a394327a082f13862cf0d1a870942a6537dcec6", + "data": { + "inGameID": 38079 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38079, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "32f4c78481e2ef11b5a89ed14eca7070bac0278b", + "data": { + "inGameID": 38080 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38080, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bbb0df1e3cb5923f3301281f2dda19bf694f6f39", + "data": { + "inGameID": 38080 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38080, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1063923bae0ca009691a113f04df36ad879e7e3b", + "data": { + "inGameID": 38080 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38080, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b38098df3b9bd8f9248a020b0d84ea7677cd4767", + "data": { + "inGameID": 38080 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38080, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e606c5c325dc69617c6e5694c5fca79a53b627cd", + "data": { + "inGameID": 38080 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38080, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ae282f98a46f4ee8f0e8f2ac7beb4919b34d45e5", + "data": { + "inGameID": 38080 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38080, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bbe2d607c8fe8197fde63737eabfd4c6f9e28493", + "data": { + "inGameID": 38080 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38080, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1f28ed135d6ae56d5b39142e02dd6ba59eee6d96", + "data": { + "inGameID": 38081 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38081, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5ae11305630bd2faeb07091c84b4a619a18c9d3c", + "data": { + "inGameID": 38081 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38081, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ec307c9483d9b78b07fd6669bb421b17634fae83", + "data": { + "inGameID": 38081 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38081, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7e04c52ca06dfa58a24c3a325a3534e64726cb1d", + "data": { + "inGameID": 38081 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38081, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f47b88acc34f2a5402ca7e39d370e23c69cd96c", + "data": { + "inGameID": 38081 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38081, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "926bce2c0431cef077a26865191cb94c4c08ebe9", + "data": { + "inGameID": 38081 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38081, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "16c00f3eb221bc167c68002b38df56ee4934ec37", + "data": { + "inGameID": 38081 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38081, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3fcb5ca89054addc96fa33d319facfa162874c62", + "data": { + "inGameID": 38082 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38082, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "569d3ec43df0cbfcec8ef25d8d040090bfeaa35d", + "data": { + "inGameID": 38082 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38082, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "95314c605cf5de0d1a8bae6ab1c1d70e12361742", + "data": { + "inGameID": 38082 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38082, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "070ff5ac670d1985d8d4e3fdae4448974dc3f9de", + "data": { + "inGameID": 38082 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38082, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f10cd0244ab499895b2fa109085be9117651f10", + "data": { + "inGameID": 38082 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38082, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "467719d31ad9e677d0bc19f942041a8ca2da286d", + "data": { + "inGameID": 38082 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38082, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b3bce7e2b1262c69e6ef100cb7cb16e9b75d450e", + "data": { + "inGameID": 38082 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38082, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3da41ff2f73d523cb61088d7ec7d3dd7a4a86495", + "data": { + "inGameID": 38083 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38083, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "46bd8f4edb58b5adbf52bbd4ad3e012771daf8f9", + "data": { + "inGameID": 38083 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38083, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a2fb286e5980ace549219614fcfbf387ca963a68", + "data": { + "inGameID": 38083 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38083, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aa8ac1274e705957bb1e5df2678f0441b7fa156f", + "data": { + "inGameID": 38083 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38083, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bb492e288e44c5456a668f894a9c8e230e720dab", + "data": { + "inGameID": 38083 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38083, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3c1e4cae9c75cdd5c4f6a0fd714c613067794ab4", + "data": { + "inGameID": 38083 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38083, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c879072d3193e2e1348b14ff0ae5ec3be7c6d99e", + "data": { + "inGameID": 38083 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38083, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "49fa2fe36ad582afa4425ba504934b7c722f7f03", + "data": { + "inGameID": 38084 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38084, + "versions": [ + "a3" + ] + }, + { + "chartID": "2619e359bff1d3c00f8bd095938cd5a192517f36", + "data": { + "inGameID": 38084 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38084, + "versions": [ + "a3" + ] + }, + { + "chartID": "8ff3630ca3cfde89fa4309c248827ca74b030d3d", + "data": { + "inGameID": 38084 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38084, + "versions": [ + "a3" + ] + }, + { + "chartID": "8a332971878274cdfeb54872965ec8429ae60634", + "data": { + "inGameID": 38084 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38084, + "versions": [ + "a3" + ] + }, + { + "chartID": "8f5023315c1b930f7566eb3f161aba3814d63ad7", + "data": { + "inGameID": 38084 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38084, + "versions": [ + "a3" + ] + }, + { + "chartID": "e74972ffced58c3a5038c839feaf2f8f4bd0998f", + "data": { + "inGameID": 38084 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38084, + "versions": [ + "a3" + ] + }, + { + "chartID": "ed41d30172f6d8f288d1df769402572db59f8127", + "data": { + "inGameID": 38084 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38084, + "versions": [ + "a3" + ] + }, + { + "chartID": "8849f7da633da9ef3687ceededc79ab7d898fd57", + "data": { + "inGameID": 38085 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38085, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d296d89e55492bc14d8f54f133dd3d9694d6cee6", + "data": { + "inGameID": 38085 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38085, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "13e72bcd1b7754d412ce83e3b6a171a8faa2833d", + "data": { + "inGameID": 38085 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38085, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "22bd768549ecd0d8399d7fc260e7eb89e327f9d3", + "data": { + "inGameID": 38085 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38085, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bb745643b6483387d679ab6084be6ac12205b085", + "data": { + "inGameID": 38085 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38085, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cfe63a3a0ebc0c1091be1683509e71193d10a2b8", + "data": { + "inGameID": 38085 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38085, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4ebfa0596296a32924760ab967a399dfa944f084", + "data": { + "inGameID": 38085 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38085, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ad4cfb0404e1595c48c11d0e81e1255148e3a340", + "data": { + "inGameID": 38086 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38086, + "versions": [ + "a3" + ] + }, + { + "chartID": "bae73686a86f84ee8987f4a91f89af38843276e2", + "data": { + "inGameID": 38086 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38086, + "versions": [ + "a3" + ] + }, + { + "chartID": "34fd31604f95179e5a6ba14d84eaf02afb55cd7f", + "data": { + "inGameID": 38086 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38086, + "versions": [ + "a3" + ] + }, + { + "chartID": "2fc883bc6edce9b2fc485eb8f68e8f10322c0771", + "data": { + "inGameID": 38086 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38086, + "versions": [ + "a3" + ] + }, + { + "chartID": "eaa47ab316769ad3f770f2762a8d363c9609cbdf", + "data": { + "inGameID": 38086 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38086, + "versions": [ + "a3" + ] + }, + { + "chartID": "7f0ff527f0d8953e79765da686f1b02de4b98004", + "data": { + "inGameID": 38086 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38086, + "versions": [ + "a3" + ] + }, + { + "chartID": "51c311b4fa323476e8313395c20c05cbecc663e5", + "data": { + "inGameID": 38086 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38086, + "versions": [ + "a3" + ] + }, + { + "chartID": "2c4881083023b2b5e4108a0fdbdcb44e224349fd", + "data": { + "inGameID": 38087 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38087, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c01ebb1417cee1c9338550309b5afa8cc813f16a", + "data": { + "inGameID": 38087 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38087, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e2618c463cb7da61a982a82b51f3d84d23dd911b", + "data": { + "inGameID": 38087 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38087, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "67e050fc28ad534972dbb89a11975cc820564694", + "data": { + "inGameID": 38087 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38087, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "70686ffeffc555d864cec1ca8008977d13a41ef0", + "data": { + "inGameID": 38087 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38087, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a59736d7a6096b85be62f319139823b4b2218d5a", + "data": { + "inGameID": 38087 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38087, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "46521f90592eb1f25701aee2435c9a37cb2d4219", + "data": { + "inGameID": 38087 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38087, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4c0b2da2feb7421021ad7ad66d69f1cb058ff84a", + "data": { + "inGameID": 38088 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38088, + "versions": [ + "a3" + ] + }, + { + "chartID": "dd4148a251438424a584956ec5db83df75aa743c", + "data": { + "inGameID": 38088 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38088, + "versions": [ + "a3" + ] + }, + { + "chartID": "a3f5e8a24e39c7690c197c44e9d1d13b8fc567f8", + "data": { + "inGameID": 38088 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38088, + "versions": [ + "a3" + ] + }, + { + "chartID": "8795b3edf89a43c3c417ebe7b2f9804ff38c42f0", + "data": { + "inGameID": 38088 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38088, + "versions": [ + "a3" + ] + }, + { + "chartID": "4bdab30a98627e4c95da162057e818cd7ed3fdc3", + "data": { + "inGameID": 38088 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38088, + "versions": [ + "a3" + ] + }, + { + "chartID": "ea6b9ca6498766ecb86fb978cc1b56cb3f58dd2a", + "data": { + "inGameID": 38088 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38088, + "versions": [ + "a3" + ] + }, + { + "chartID": "eb9918746ac4b0567b56e20275db99e7abe211ae", + "data": { + "inGameID": 38088 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38088, + "versions": [ + "a3" + ] + }, + { + "chartID": "8dca15524c6ebc1b40920a00b7590d3d6121f382", + "data": { + "inGameID": 38088 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38088, + "versions": [ + "a3" + ] + }, + { + "chartID": "8fe268242916e50657beffa7f0e3f60d289db012", + "data": { + "inGameID": 38088 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38088, + "versions": [ + "a3" + ] + }, + { + "chartID": "b90235d17999151e856af05c7f9345abe2d3ca9e", + "data": { + "inGameID": 38089 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38089, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4d214f6030c967cc57a31bfc784355e00df037fc", + "data": { + "inGameID": 38089 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38089, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "59ae6459d89526d7a067036a6bbd5cf18b418b6c", + "data": { + "inGameID": 38089 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38089, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6dcccf6878cead8feaa1feab4bc9f811673a6934", + "data": { + "inGameID": 38089 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38089, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cd130ef18481d3bb759331269bbb9496a3dad3cf", + "data": { + "inGameID": 38089 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38089, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d2bf6727431f3b912d2298e9e6f9eadf864fa398", + "data": { + "inGameID": 38089 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38089, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "464c0a48487f6135bcf9c50a5ad1034f4325e09d", + "data": { + "inGameID": 38089 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38089, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "735b4fdd00534093ae1fa9da3bdf394f3baf59a9", + "data": { + "inGameID": 38090 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38090, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fc122b8bf71ce18c1e2f8d732b86597012dc7b63", + "data": { + "inGameID": 38090 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38090, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2a29cf1084a34fed3b8f895575ebc1c0de5f8be9", + "data": { + "inGameID": 38090 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38090, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "163f342ac3b722b275eb4c89d0ca0c92a264186d", + "data": { + "inGameID": 38090 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38090, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4a88e2ed17971ac5423d3167482a7642cf6c67f7", + "data": { + "inGameID": 38090 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38090, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e373f9e62ca1b72d1acbb583e3a04cc6515fca77", + "data": { + "inGameID": 38090 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38090, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "711d2d6097b5d2d3210c0bf61c0eebad231c65d2", + "data": { + "inGameID": 38090 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38090, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7879105fca18cb396ec546f43e5f5216fe349b03", + "data": { + "inGameID": 38091 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38091, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8f7f3f7d911e22fe17a5b000fef34e58c3af8334", + "data": { + "inGameID": 38091 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38091, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2062a2f37d3d38b79027e3b9371d41170d5cb48c", + "data": { + "inGameID": 38091 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38091, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d612a31015280e261b1c3d4a9e07932a099da255", + "data": { + "inGameID": 38091 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38091, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "de38435f9e4161a4a21ae510a5109e638d599733", + "data": { + "inGameID": 38091 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38091, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2391780f0eaa09f6813e0147cbd09051c0ce14e8", + "data": { + "inGameID": 38091 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38091, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9eb2dce52d6938d9511dacbfaeb50bb358e54860", + "data": { + "inGameID": 38091 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38091, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "27bb623dedc5f1366fa42164d53dd978fb9aecb8", + "data": { + "inGameID": 38092 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38092, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "80fec2e9e957cffd27fc6259de2c4ac92a5a5693", + "data": { + "inGameID": 38092 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38092, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8af837df81fe589c23ff4c40c4752c3ebbd6f0b7", + "data": { + "inGameID": 38092 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38092, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5fbdceeb303dec461ff0d3516aab117f37f2e437", + "data": { + "inGameID": 38092 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38092, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aa5d5895e4b9ae0f9817323b95bfcf9dfc8858ef", + "data": { + "inGameID": 38092 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38092, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "818934700db0619a5dd254f8c3bf94e396b17deb", + "data": { + "inGameID": 38092 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38092, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0215cefe7144ccdbcdc5e2aa0e220a0e25ddf8b9", + "data": { + "inGameID": 38092 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38092, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1c6f5d155ccbe3e31085f289c3b9975d18a5219e", + "data": { + "inGameID": 38093 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38093, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d57777e77188ced5813cddf3eb47eb4078412b14", + "data": { + "inGameID": 38093 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38093, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "97076dd9b808d75fe2668bee13ead0bd9cf0e225", + "data": { + "inGameID": 38093 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38093, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "745d6fd52b07498bd1c773720df1bfeaa0ed40e9", + "data": { + "inGameID": 38093 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38093, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "679db5172be90ee632a6c824afe8cec1c3c07f34", + "data": { + "inGameID": 38093 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38093, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bae1c461b4ce7d74bbdf1fc5cd8faf31ecf6ca7d", + "data": { + "inGameID": 38093 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38093, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2bf3eda9269f49a87d72b649a2583acc0c3ea488", + "data": { + "inGameID": 38093 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38093, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a777715ac407ac3fea2c3653f6563eaaf86bdecf", + "data": { + "inGameID": 38094 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38094, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "78a9f08b8fac1415ee63ef52b1fa70ce694d149f", + "data": { + "inGameID": 38094 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38094, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "216045eb183c248bab8be2a21475145a02ffff79", + "data": { + "inGameID": 38094 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38094, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6db7b79cf6d7fe7652a893be9b054e46686e0486", + "data": { + "inGameID": 38094 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38094, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "78ff80fe9ff4b3d8c38f92cf6075199fe20d7846", + "data": { + "inGameID": 38094 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38094, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "137c334eb299bc2bc021c8ad44bac08f07c12d52", + "data": { + "inGameID": 38094 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38094, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f6b874926a52c2206db114a0e139e87aca23f2bd", + "data": { + "inGameID": 38094 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38094, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a6b1c2f0fbc98b608bf97d71605321963660e5d6", + "data": { + "inGameID": 38094 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38094, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d44d18c7094e2d67f276b2d2ea4921996085dd3d", + "data": { + "inGameID": 38094 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38094, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d03bf56c5c6bfaadd661cc0aeb2c3b7268d2be4b", + "data": { + "inGameID": 38095 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38095, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a68876783b1d7d0bbdbd04de790a03f5e5c8d8c5", + "data": { + "inGameID": 38095 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38095, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "880418f5eadc3dbf8f82af3da6d81d61c5cfe7f8", + "data": { + "inGameID": 38095 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38095, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5273d91e559e851bfdb97c3a3ea4c41ca3280f55", + "data": { + "inGameID": 38095 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38095, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cdee55cf6d8042b2a034532834a029b6a7b7e769", + "data": { + "inGameID": 38095 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38095, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d19848b7d449f8df44867393872570204015bbed", + "data": { + "inGameID": 38095 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38095, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5e89899774c0202bdb38df094ee71b164cfdb335", + "data": { + "inGameID": 38095 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38095, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "25de25f9019910a8b562399121f4949fcdf0a20d", + "data": { + "inGameID": 38096 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38096, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "55383e7c937dd3937a27a4095203dbbfeb0b82e0", + "data": { + "inGameID": 38096 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38096, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d51171e33b8367187e1cfc91ba467ce915844c51", + "data": { + "inGameID": 38096 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38096, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6536ef1e9f5b3a7fb031b266b91ce0d753cca8d2", + "data": { + "inGameID": 38096 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38096, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e93b46fd3b1909884d47b88315ed7c60adfcf7bc", + "data": { + "inGameID": 38096 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38096, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e400fd968a714c1b7c107dadd3c5397ce426697e", + "data": { + "inGameID": 38096 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38096, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "78b276b2973a74f019ae3b5e73d52cd2b68368ba", + "data": { + "inGameID": 38096 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38096, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5826a3f97000b76acad0534d3a695805f9544f9a", + "data": { + "inGameID": 38097 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38097, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "50af93740652f7a522cdf4b23c99be434d330608", + "data": { + "inGameID": 38097 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38097, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ee8648d0bc721b5aef6685a87f4c5be550fdb05b", + "data": { + "inGameID": 38097 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38097, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7b6ed4484d54b185e65f5703cb5264ea6f2dbcce", + "data": { + "inGameID": 38097 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38097, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ca5923986419db79eb48cbe311f6b71cd728c560", + "data": { + "inGameID": 38097 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38097, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4195dcbee078dad9ee62bf7615b66a9c9be47fca", + "data": { + "inGameID": 38097 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38097, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f83f6f5dc0c00ff867cdd8a83a7cc27e5592c782", + "data": { + "inGameID": 38097 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38097, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3c17af4e35131e0c36c390dabe7532a29d33fa0b", + "data": { + "inGameID": 38098 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38098, + "versions": [ + "a3" + ] + }, + { + "chartID": "78798a22f4fdd0b03918d5a6a575029e46d97e22", + "data": { + "inGameID": 38098 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38098, + "versions": [ + "a3" + ] + }, + { + "chartID": "25e209700654af166e93912609a7a75df760bbe9", + "data": { + "inGameID": 38098 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38098, + "versions": [ + "a3" + ] + }, + { + "chartID": "ef42eeedeffee4b62a1fe3f093cb877f4423bfd6", + "data": { + "inGameID": 38098 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38098, + "versions": [ + "a3" + ] + }, + { + "chartID": "a4254115c232bd8e5d9a388aa5ee2349677a9b31", + "data": { + "inGameID": 38098 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38098, + "versions": [ + "a3" + ] + }, + { + "chartID": "b31e1e2b8dc2411719c62204d64573bbe40675b7", + "data": { + "inGameID": 38098 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38098, + "versions": [ + "a3" + ] + }, + { + "chartID": "9d4ce58a6b03cdd1ab7bcb958a3e2c473fe2aecc", + "data": { + "inGameID": 38098 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38098, + "versions": [ + "a3" + ] + }, + { + "chartID": "0348a0d9e1973be6dc9b12804c01aafa4435363d", + "data": { + "inGameID": 38098 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38098, + "versions": [ + "a3" + ] + }, + { + "chartID": "8eb2815ca4d091d117c6a057322ad0bde1d943f6", + "data": { + "inGameID": 38098 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38098, + "versions": [ + "a3" + ] + }, + { + "chartID": "49baaaa266c52760f3447b39360cb775d25d19af", + "data": { + "inGameID": 38099 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38099, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b6650cfb129707c5396fca34d5f8d28ea8516c68", + "data": { + "inGameID": 38099 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38099, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "24e4a4bc5764f4b5010a9137777414f5caa2b72e", + "data": { + "inGameID": 38099 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38099, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "363069c551c31a4227a4be983e8f9ae146e42207", + "data": { + "inGameID": 38099 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38099, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b42ebea8949b67ef7b5b755dcc6e233dff76b971", + "data": { + "inGameID": 38099 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38099, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "983e3e3ce4418e0a66a0342beccab4f8f9f128dd", + "data": { + "inGameID": 38099 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38099, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "516b8b9693d7d07d15968c799e89a932fb3a76ce", + "data": { + "inGameID": 38099 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38099, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f55ab3b86160d5feb52cf3d3058186e75f370931", + "data": { + "inGameID": 38099 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38099, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "615e8a082d60e49819382114e8cec06658618adc", + "data": { + "inGameID": 38099 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38099, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e21382d12a44b05b1047f0002bb152d03ed9db5c", + "data": { + "inGameID": 38100 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38100, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "875044c9c5fb1cee0bd5d769d17c98ec59382539", + "data": { + "inGameID": 38100 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38100, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "80c6cb803765527927ebc63cecb2852d5cd5eb07", + "data": { + "inGameID": 38100 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38100, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d46dad02d72d8a8832f14da85b59cb62f35fc565", + "data": { + "inGameID": 38100 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38100, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6faab0ff0ce7f3a76563c9dcfb7b57222fc53040", + "data": { + "inGameID": 38100 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38100, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "500ec17ae75413248125285041ea3449125d6327", + "data": { + "inGameID": 38100 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38100, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "960ac4ecb35ac9bb4490e0f68d57311a71dba189", + "data": { + "inGameID": 38100 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38100, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "05d8fb57fd5ec53d8538fca470128eac00d07bfa", + "data": { + "inGameID": 38101 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38101, + "versions": [ + "a3" + ] + }, + { + "chartID": "46b479fdbbefa2dc4f0080a1f007a4979897eb90", + "data": { + "inGameID": 38101 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38101, + "versions": [ + "a3" + ] + }, + { + "chartID": "25576effad40d3e29ce701b7a99a17d24924e692", + "data": { + "inGameID": 38101 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38101, + "versions": [ + "a3" + ] + }, + { + "chartID": "d5ce71fabc521b388c5b299b9cc4a144b2adf6c4", + "data": { + "inGameID": 38101 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38101, + "versions": [ + "a3" + ] + }, + { + "chartID": "5a891732b9c85e8b4ef4d0b8e83859beec12735e", + "data": { + "inGameID": 38101 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38101, + "versions": [ + "a3" + ] + }, + { + "chartID": "5999a8cc93620634ba35fb14f3a2fd97ddf1ae32", + "data": { + "inGameID": 38101 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38101, + "versions": [ + "a3" + ] + }, + { + "chartID": "a83bb11f37f62c332789eb9c4fef189a1c0d3d36", + "data": { + "inGameID": 38101 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38101, + "versions": [ + "a3" + ] + }, + { + "chartID": "c8e67dc548219c38c3a0b45820fb67d4bf87858f", + "data": { + "inGameID": 38102 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38102, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9467ab89d1a40dbea8cc92dc288c502b60361ab9", + "data": { + "inGameID": 38102 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38102, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b54a213d130a302c6f91f41ec6ca0c69e595deb8", + "data": { + "inGameID": 38102 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38102, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "16dad5927e7001880f91eb0a880ef45c2aced57d", + "data": { + "inGameID": 38102 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38102, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "326df7bef6e093f49c8d584600479911c9de827f", + "data": { + "inGameID": 38102 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38102, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "241fb7724e58d4d24cc0a987987cbf2727c833fb", + "data": { + "inGameID": 38102 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38102, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d814710cdfd261f083ee96b236e7d52edc9a46c5", + "data": { + "inGameID": 38102 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38102, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9deb7ac970b650dd28060d8c83e2b459327739f3", + "data": { + "inGameID": 38102 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38102, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5dcd5c6c19ee9b15660918436d53420bce5d0732", + "data": { + "inGameID": 38102 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38102, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "55d2f053ede460338ca1d7361750403d95be72d3", + "data": { + "inGameID": 38103 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38103, + "versions": [ + "a3" + ] + }, + { + "chartID": "6de1b084b936e23dd17ad306890ca9629ff702f6", + "data": { + "inGameID": 38103 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38103, + "versions": [ + "a3" + ] + }, + { + "chartID": "9768e4124ee2ac9f1dc84a31e331c3ba880b4f15", + "data": { + "inGameID": 38103 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38103, + "versions": [ + "a3" + ] + }, + { + "chartID": "93f3c4501fefa968a9ed211e675079aafe005981", + "data": { + "inGameID": 38103 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38103, + "versions": [ + "a3" + ] + }, + { + "chartID": "a2d3409721a87e67dae364a040f645a39fb77966", + "data": { + "inGameID": 38103 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38103, + "versions": [ + "a3" + ] + }, + { + "chartID": "58ef707ed542e83aa2aee686dac38d3a2b0ec2e2", + "data": { + "inGameID": 38103 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38103, + "versions": [ + "a3" + ] + }, + { + "chartID": "f1750231a4f1c8dacb26df997be45db18028e134", + "data": { + "inGameID": 38103 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38103, + "versions": [ + "a3" + ] + }, + { + "chartID": "8336edf180203c42af6a6ef91bfed1eb0b76577a", + "data": { + "inGameID": 38103 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38103, + "versions": [ + "a3" + ] + }, + { + "chartID": "049b5a798bd402c8124a3a9d0985bcaca79e9a35", + "data": { + "inGameID": 38103 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38103, + "versions": [ + "a3" + ] + }, + { + "chartID": "3b87095a794643bc1a2e73235f2727f768d64a3a", + "data": { + "inGameID": 38104 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38104, + "versions": [ + "a3" + ] + }, + { + "chartID": "dd09ca0a433a180d1e315d353d4496a668362011", + "data": { + "inGameID": 38104 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38104, + "versions": [ + "a3" + ] + }, + { + "chartID": "aa15014b2e46318a455a05960b64cc2b1a7430e7", + "data": { + "inGameID": 38104 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38104, + "versions": [ + "a3" + ] + }, + { + "chartID": "a007c858441a3d4d83e4358b3d7749f2f2abcdf9", + "data": { + "inGameID": 38104 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38104, + "versions": [ + "a3" + ] + }, + { + "chartID": "06c9bc726f4b9c4292aaffe064815b69e7cb7459", + "data": { + "inGameID": 38104 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38104, + "versions": [ + "a3" + ] + }, + { + "chartID": "ff9d30b4e84a67feb6ec0eb22b341b30003b0325", + "data": { + "inGameID": 38104 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38104, + "versions": [ + "a3" + ] + }, + { + "chartID": "b4866e282d3163041f9cdf7cb900a9f938c6433c", + "data": { + "inGameID": 38104 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38104, + "versions": [ + "a3" + ] + }, + { + "chartID": "174fb2fb63394bcff1e02c15fac3503c34d5db43", + "data": { + "inGameID": 38105 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38105, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "07896d2810920c717ae49737b770664ebc2bfb26", + "data": { + "inGameID": 38105 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38105, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1fec35f86325845cc2d6b047e790c5a34c398fab", + "data": { + "inGameID": 38105 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38105, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3785d52493969db4df86e1cf8733a039ae8bbdd0", + "data": { + "inGameID": 38105 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38105, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aae2ab45694fe54b6c254e4282d6284ece33dab1", + "data": { + "inGameID": 38105 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38105, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a38fdc3ddb3adc63973f5126a026e93d8df38508", + "data": { + "inGameID": 38105 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38105, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "533ca34ac118c24cd96f35edddaa49bbd8d70fa8", + "data": { + "inGameID": 38105 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38105, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dde4c63a6012aff6c1e90c1429492f7dedbf0010", + "data": { + "inGameID": 38107 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38107, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a4e955c06b6d8e3ff08fc8a9845419c2657b9c17", + "data": { + "inGameID": 38107 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38107, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ed2b9415c54d1d4776afaee268c6dd8686cbcb6d", + "data": { + "inGameID": 38107 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38107, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "759b418952301134f3822e8ee1c88e6fbead40c0", + "data": { + "inGameID": 38107 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38107, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f7597787074bafea38099250a83cabcd253e0fe1", + "data": { + "inGameID": 38107 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38107, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "038f7e25c982aa686eba57257a4702adffc3b398", + "data": { + "inGameID": 38107 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38107, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "33cf9eaffbcb08890817ab66f11de9d986a732c1", + "data": { + "inGameID": 38107 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38107, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aac2791c9989fb7b10cfc229145f3e0bacf3d08c", + "data": { + "inGameID": 38109 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38109, + "versions": [ + "a3" + ] + }, + { + "chartID": "1b4bf16a235fb35662ad826eab7810bd294a4636", + "data": { + "inGameID": 38109 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38109, + "versions": [ + "a3" + ] + }, + { + "chartID": "5b89e661b3aa5db9cb26e187330b9094b6a67896", + "data": { + "inGameID": 38109 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38109, + "versions": [ + "a3" + ] + }, + { + "chartID": "e12ff92c2561c1eb19b2e2b1af92c6800b21a275", + "data": { + "inGameID": 38109 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38109, + "versions": [ + "a3" + ] + }, + { + "chartID": "8b2c5add10b26b40b914a744cc567ca33fb9d4fc", + "data": { + "inGameID": 38109 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38109, + "versions": [ + "a3" + ] + }, + { + "chartID": "00bd271e8f3533dc3f183d5d4f0efbe79ab05506", + "data": { + "inGameID": 38109 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38109, + "versions": [ + "a3" + ] + }, + { + "chartID": "9fc6b74076dd409f8e106769ed33299079b0fb02", + "data": { + "inGameID": 38109 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38109, + "versions": [ + "a3" + ] + }, + { + "chartID": "40025a79c83a255b49133c641a7fc659e964241d", + "data": { + "inGameID": 38110 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38110, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a10daacbd0014e5e8cf375d3bf2f66ee3e2a022a", + "data": { + "inGameID": 38110 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38110, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "32bd49b73b669a0ebd82209095225c06da7812f0", + "data": { + "inGameID": 38110 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38110, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "928e74a2099016d689e66ca5e239469158d03784", + "data": { + "inGameID": 38110 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38110, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1205bf0d26924ac48da201ccc1ec2d46e23030d0", + "data": { + "inGameID": 38110 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38110, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6fe428c02a7ee591d92e6438fa63b0e67da48003", + "data": { + "inGameID": 38110 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38110, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9eb5afbd945c06bb05b0d5535f05fe79b00c73e7", + "data": { + "inGameID": 38110 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38110, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4a049cbe7ce3b403ea42c7ddde23134157c79ab6", + "data": { + "inGameID": 38119 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38119, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "16d5720e8d046eb3db41c5b37ce463abe16fa82b", + "data": { + "inGameID": 38120 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38120, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a5667d60dcc735cd97405e4f413b06992a3bd614", + "data": { + "inGameID": 38120 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38120, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "08a2b52bf95ac534c39fb4003b76a49861b1650c", + "data": { + "inGameID": 38120 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38120, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "115f9729975f9c72144d5c45aee74ad07b232340", + "data": { + "inGameID": 38120 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38120, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "82040c87420ef73df37fcb3441905cc30eb1af24", + "data": { + "inGameID": 38120 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38120, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "690b8b4cafd83cee58d4855d3b053037d138ae4b", + "data": { + "inGameID": 38120 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38120, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e0da48bfc6bce427aa69101d3a578a6deb94c647", + "data": { + "inGameID": 38120 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38120, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5ff0766915aa04b2cb5c1506eea129a8c7d058db", + "data": { + "inGameID": 38120 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38120, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "573f048af00d80c35bdeb01eaf7572b5ea9d8e6a", + "data": { + "inGameID": 38120 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38120, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a4b8dc2996be31882801accd815d887b23f77f60", + "data": { + "inGameID": 38121 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38121, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5bb6d528e79a4bb8276c14631e4320d3b98bbf92", + "data": { + "inGameID": 38121 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38121, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7b43ffab3dd64b4a26432e28bdf88dd4b0b792e7", + "data": { + "inGameID": 38121 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38121, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5bc1a1435bdf52d2097edd326be8cb9429dc5ab6", + "data": { + "inGameID": 38121 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38121, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9adf0a24f383ea2f9dcf3c7c43a23fff70d33e9c", + "data": { + "inGameID": 38121 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38121, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5a675882e3527665baada373fcc8fdb788f3483b", + "data": { + "inGameID": 38121 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38121, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f17cfa36c73a1f4f3f72b060c273493ef27ef1dc", + "data": { + "inGameID": 38121 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38121, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f96d4a12c11563a975d261ff2e5ac7a1226a0241", + "data": { + "inGameID": 38122 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38122, + "versions": [ + "a3" + ] + }, + { + "chartID": "0fcecb67e54c3d42127f6198e6bb828b909324a6", + "data": { + "inGameID": 38122 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38122, + "versions": [ + "a3" + ] + }, + { + "chartID": "e00b1bbf16215a3e59f6f814e03cb6cf7354d2dc", + "data": { + "inGameID": 38122 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38122, + "versions": [ + "a3" + ] + }, + { + "chartID": "2161628e367d81eeeb9d3f2650e208d1ae183715", + "data": { + "inGameID": 38122 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38122, + "versions": [ + "a3" + ] + }, + { + "chartID": "b92fac51c053ad383030a092b3d665b431cc1f49", + "data": { + "inGameID": 38122 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38122, + "versions": [ + "a3" + ] + }, + { + "chartID": "d825714f1a562d5f736d6dee146c89d2c24b3b4d", + "data": { + "inGameID": 38122 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38122, + "versions": [ + "a3" + ] + }, + { + "chartID": "68d7a220c65ba85e621fe1ddc655eba47bb90ed6", + "data": { + "inGameID": 38122 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38122, + "versions": [ + "a3" + ] + }, + { + "chartID": "89809973f96eb017ecb092f0d9fb86284efaca64", + "data": { + "inGameID": 38123 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38123, + "versions": [ + "a3" + ] + }, + { + "chartID": "fc1beaf11c23d22d927a01b89828fbd2b827aa51", + "data": { + "inGameID": 38123 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38123, + "versions": [ + "a3" + ] + }, + { + "chartID": "91ad8a30a93846f10baa224acb925c1d7358fbaa", + "data": { + "inGameID": 38123 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38123, + "versions": [ + "a3" + ] + }, + { + "chartID": "ca7e90bdfdb91d5c8edc1a543926b3dfa315d83d", + "data": { + "inGameID": 38123 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38123, + "versions": [ + "a3" + ] + }, + { + "chartID": "0c90acf2b3f7b37bd314c1b3afd1c7ca099f81f0", + "data": { + "inGameID": 38123 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38123, + "versions": [ + "a3" + ] + }, + { + "chartID": "65bd9033d3f5d36753324e6c6bf84c3ba04ba258", + "data": { + "inGameID": 38123 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38123, + "versions": [ + "a3" + ] + }, + { + "chartID": "3b7ad227000a286f43191def852f0932c26e1dc6", + "data": { + "inGameID": 38123 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38123, + "versions": [ + "a3" + ] + }, + { + "chartID": "6e15d7134141784b97b5e83e12f42dbeffa82a2a", + "data": { + "inGameID": 38123 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38123, + "versions": [ + "a3" + ] + }, + { + "chartID": "68e8736add86b7391b81783e89af8800bd7ad641", + "data": { + "inGameID": 38123 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38123, + "versions": [ + "a3" + ] + }, + { + "chartID": "ee450f0636174e24a038ce6732045f7441efd023", + "data": { + "inGameID": 38124 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38124, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "befdc14b4cbc5cc683dd1a9fe657863d568dbf9a", + "data": { + "inGameID": 38124 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38124, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3250e68d21f629f6eb9a7061ae840f8512b3e6b7", + "data": { + "inGameID": 38124 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38124, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "734d5b97dee9c547ea18f2821b5662aedd91df49", + "data": { + "inGameID": 38124 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38124, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5826f61e7bc691b74c1327b99dd8a8eff48da5d2", + "data": { + "inGameID": 38124 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38124, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2aec0191de7d7b077f198b3e19464deedca6caaa", + "data": { + "inGameID": 38124 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38124, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "802976956da821542b527a3e1fc2b4bee2eac3ba", + "data": { + "inGameID": 38124 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38124, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d38ad2f5e603afa66fd76c61a7f2cac822570702", + "data": { + "inGameID": 38126 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38126, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "07770b41459fea28217cc90dd30bee9cc469d1ac", + "data": { + "inGameID": 38126 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38126, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4cdceb463e6e886038755d7c8bedf05519c119ff", + "data": { + "inGameID": 38126 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38126, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "012d2a7b5396dd4d3609cf04ed6155e5ad14350c", + "data": { + "inGameID": 38126 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38126, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "184f5890b03bde5f0b76b2faed253e2cf533c3f4", + "data": { + "inGameID": 38126 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38126, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "81f626c57150d5c15832956c63e00757144e9efa", + "data": { + "inGameID": 38126 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38126, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a5a9b6af9893f988b8e4610493e54de1639e2154", + "data": { + "inGameID": 38126 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38126, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "46f91489ba1b1325461921703298a6d36a41855b", + "data": { + "inGameID": 38127 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38127, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "306180b072634d48d0c77ec366bcb6db4021c3c0", + "data": { + "inGameID": 38127 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38127, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "19ce6b6b314e1f9314cd96877170dda2c457faa3", + "data": { + "inGameID": 38127 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38127, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "11a33552a393d61257bf61ad49605779d3818c4d", + "data": { + "inGameID": 38127 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38127, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "66157ce5ef2e3fa490e46af44bc77858d1539579", + "data": { + "inGameID": 38127 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38127, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bdcb2efbcc10976ca0c01400c20662e466bf2eef", + "data": { + "inGameID": 38127 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38127, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "19555366f67cf11dbc88aa63c697776cc9924a7a", + "data": { + "inGameID": 38127 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38127, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "068120a7af43f5766ee01b941fefb9c81fae6e45", + "data": { + "inGameID": 38128 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38128, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ffef069b2913e29751badc790743d6d9f2dcbd5e", + "data": { + "inGameID": 38128 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38128, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1f8a98166954559458ab6bcd001a272466a36c43", + "data": { + "inGameID": 38128 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38128, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c3c7a376fa4bd6f47bdd9f1b54c1cc1614c7623c", + "data": { + "inGameID": 38128 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38128, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c5749bf851f2514240ca5eff6c6b7aa9aea1cb29", + "data": { + "inGameID": 38128 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38128, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "72661b669ac9398d8b621363238b8b8770bd9839", + "data": { + "inGameID": 38128 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38128, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0274dee058ef38bbd38361e4edf8c5fc88c73472", + "data": { + "inGameID": 38128 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38128, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5c9825fd3090a13155eeb3eb9e6139f86cef5314", + "data": { + "inGameID": 38129 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38129, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2523ac7b12582d5231546ed3513731566ef21332", + "data": { + "inGameID": 38129 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38129, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "43d0fe9c2d5a451c7cf29891ec496fd2464c05e4", + "data": { + "inGameID": 38129 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38129, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "37db4980173ca4963992874d53ffe2bc2dc19ddc", + "data": { + "inGameID": 38129 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38129, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "41e6671c646b7e05334c2baaf0a370bbbcc29c47", + "data": { + "inGameID": 38129 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38129, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2b8711f9cb9c90c9eb1cee2df566a6d36e956993", + "data": { + "inGameID": 38129 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38129, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1d62e914710dd5ab1f5ccd7b6c626845f80cc063", + "data": { + "inGameID": 38129 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38129, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a2c71be6c4f259119a30864bb4f0e8050924a2f3", + "data": { + "inGameID": 38130 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38130, + "versions": [ + "a3" + ] + }, + { + "chartID": "45b715956d9121baddf1371509909751c3aa01b2", + "data": { + "inGameID": 38130 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38130, + "versions": [ + "a3" + ] + }, + { + "chartID": "2edbe4f3f7301bb12e25aadca45af8e020c00d6c", + "data": { + "inGameID": 38130 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38130, + "versions": [ + "a3" + ] + }, + { + "chartID": "b382939dc9eea7b89b3029d33b24b0739532a45e", + "data": { + "inGameID": 38130 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38130, + "versions": [ + "a3" + ] + }, + { + "chartID": "41c94e52d8e95529f9cdb2eaf5dc59a32aa53bb1", + "data": { + "inGameID": 38130 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38130, + "versions": [ + "a3" + ] + }, + { + "chartID": "cf3720a308f7a939a61e10fc5cd5a3efe63330e6", + "data": { + "inGameID": 38130 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38130, + "versions": [ + "a3" + ] + }, + { + "chartID": "c26dd317aa86bb1ecbd1fd4d40c3be414056f1e2", + "data": { + "inGameID": 38130 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38130, + "versions": [ + "a3" + ] + }, + { + "chartID": "b325bb8706abfd24fc61578a72c55c57afd7a749", + "data": { + "inGameID": 38130 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38130, + "versions": [ + "a3" + ] + }, + { + "chartID": "9eed80546aa90e6b8849d64e0d96a89c1f90dbce", + "data": { + "inGameID": 38130 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38130, + "versions": [ + "a3" + ] + }, + { + "chartID": "da34c1508348a844f15df9482ae01fc8ced726e2", + "data": { + "inGameID": 38131 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38131, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4b678c49383dee149b0766ae190049470fb432ed", + "data": { + "inGameID": 38131 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38131, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9820f6ae42afbcb0f21633499e19919842407590", + "data": { + "inGameID": 38131 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38131, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b21445d908ac25d730251fc785da58336703e430", + "data": { + "inGameID": 38131 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38131, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e540f4f9b968afca4beccac36605fe1f4e415a0a", + "data": { + "inGameID": 38131 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38131, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ba2bd8c723f5e373facdd6dbf5afa95160248be3", + "data": { + "inGameID": 38131 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38131, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f51ec87fea4cb7b740356f5e6486664e4865a38", + "data": { + "inGameID": 38131 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38131, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "268c15903d4bde4c8d640a44f3a73860ee690f51", + "data": { + "inGameID": 38132 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38132, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d0a522ae3bc687968ddae5f8e6828d2a2508c943", + "data": { + "inGameID": 38132 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38132, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1927d0fa2be98722e9e347018953a12434813ec2", + "data": { + "inGameID": 38132 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38132, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b424001cd66aee23738baef1157ccfecfe7ce98b", + "data": { + "inGameID": 38132 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38132, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4339f475dbb5aed095dd52ffa6c3495e852b620a", + "data": { + "inGameID": 38132 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38132, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eb41d43aabfa6857aadcd27ff489d560b5b11341", + "data": { + "inGameID": 38132 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38132, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6e5f24582fa85fd4c484f3ed7565f3d181aa0c51", + "data": { + "inGameID": 38132 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38132, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b604ae504250c886252a1bb7b9911784111b1c8a", + "data": { + "inGameID": 38133 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38133, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ea821756d273c845ee2a9a1dc53a09437469708c", + "data": { + "inGameID": 38133 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38133, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "679492a488f497667d78b66631156fdef7020da0", + "data": { + "inGameID": 38133 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38133, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "533e772bfa20dcb4d76f1c232f8a440af0fe9d51", + "data": { + "inGameID": 38133 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38133, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a6275604e28c83d05c1ddcf6466330ae93ba58a4", + "data": { + "inGameID": 38133 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38133, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7c3dc3d8b4eda0edff855cc66b377ea32c0c8795", + "data": { + "inGameID": 38133 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38133, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6ef41ff23ea2295a84c75691b9b60f67532ea37a", + "data": { + "inGameID": 38133 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38133, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ab7efb83ea698b8303c3f16564427e250a75cdc4", + "data": { + "inGameID": 38134 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38134, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bc10a08b20833da48a381ec69a71a6dca438a67b", + "data": { + "inGameID": 38134 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38134, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7079f94d77615bada8e23e23e8cccb0c863f63e2", + "data": { + "inGameID": 38134 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38134, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9e57486c797cb9bf03f2d52b939472885034cb36", + "data": { + "inGameID": 38134 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38134, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d2b434bc60c142ba303e8fd8daf3901d9a392820", + "data": { + "inGameID": 38134 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38134, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "74bc644546bf94fb5cd5fc719a24defada9f439d", + "data": { + "inGameID": 38134 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38134, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bb8a7fa48d6a6d93c4e3cb6ee1da808415e3a178", + "data": { + "inGameID": 38134 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38134, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c61e7f0d93bdca927f392efd2a3b2e0ce9f328e6", + "data": { + "inGameID": 38135 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38135, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bb3eea9e78d6668166e4ef703dbb399f51cde6f7", + "data": { + "inGameID": 38135 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38135, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c10a9e45b39342e93e22cc89fa27eea1b9766c2b", + "data": { + "inGameID": 38135 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38135, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1062b5cbfbd231110e038620c09667dc241b2fbe", + "data": { + "inGameID": 38135 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38135, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b2ac4fee8db019747f0391d24749189dc669d550", + "data": { + "inGameID": 38135 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38135, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "591464b2ba6db1990506b7a318525ba35b481ff2", + "data": { + "inGameID": 38135 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38135, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "49a70773674e15a01b0bbd1759203675bed49d1e", + "data": { + "inGameID": 38135 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38135, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c901283c853f1219d2a00343b76c3f6a83e1941c", + "data": { + "inGameID": 38136 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38136, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ef8a6f5299487b9d5af03a58c355ecbd6339311b", + "data": { + "inGameID": 38136 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38136, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f5b89f35dc52ac63d9fb892e05634cce58a93b1", + "data": { + "inGameID": 38136 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38136, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "69bef215e74e64517dcc4b00854e231fdbedc0cc", + "data": { + "inGameID": 38136 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38136, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f73320dd0d85ede8dd269593f6f772a23865429d", + "data": { + "inGameID": 38136 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38136, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b47d9256ab1eac9a29e5e9cb621d87a1eca807e8", + "data": { + "inGameID": 38136 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38136, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "193bb69025c776a035d5f0647567608ffa95de91", + "data": { + "inGameID": 38136 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38136, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e306ed34e1ca9952e7eb68d4bbff8c8a5ba598a7", + "data": { + "inGameID": 38137 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38137, + "versions": [ + "a3" + ] + }, + { + "chartID": "081fb4388bf444bcb8f90eba112b53afa260b35e", + "data": { + "inGameID": 38137 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38137, + "versions": [ + "a3" + ] + }, + { + "chartID": "686820dabcf7ced8a63295207127a8b627af0fcd", + "data": { + "inGameID": 38137 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38137, + "versions": [ + "a3" + ] + }, + { + "chartID": "446b0e6d91ca3a819207e7618cceff7df103f0c6", + "data": { + "inGameID": 38137 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38137, + "versions": [ + "a3" + ] + }, + { + "chartID": "6a60301137e032df09e385f478b9f24ad661f160", + "data": { + "inGameID": 38137 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38137, + "versions": [ + "a3" + ] + }, + { + "chartID": "b4538db46945cffe1921926666df03a70680a496", + "data": { + "inGameID": 38137 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38137, + "versions": [ + "a3" + ] + }, + { + "chartID": "ebb75856d05a7e1081c3b551e40643daed6114c2", + "data": { + "inGameID": 38137 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38137, + "versions": [ + "a3" + ] + }, + { + "chartID": "ca482b8ba4d6a0f1f4159c6000b5d27ff982e7ff", + "data": { + "inGameID": 38137 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38137, + "versions": [ + "a3" + ] + }, + { + "chartID": "7342f600775d6f2d6681d55cc7c9f34ec7075036", + "data": { + "inGameID": 38137 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38137, + "versions": [ + "a3" + ] + }, + { + "chartID": "9647f58844b82328c75cda2090c50b3f4d3f1a1b", + "data": { + "inGameID": 38138 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38138, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4b6502984639e358c8b0d99ae431d97e9e50c3a6", + "data": { + "inGameID": 38138 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38138, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cfd8d3281dc8eccc40b873fb50d42d770f81ff25", + "data": { + "inGameID": 38138 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38138, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3e2cb9e13c382d42dec736177a2d7657cc5c34c0", + "data": { + "inGameID": 38138 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38138, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "65897c8cbcbf196fc11f22010a8cab03a7af999c", + "data": { + "inGameID": 38138 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38138, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d670f93c45e479cc5424321677f1e2de163f7fb2", + "data": { + "inGameID": 38138 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38138, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8777609cda9c632e7251d5bb8a431b706cd703e7", + "data": { + "inGameID": 38138 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38138, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9ca3f82684988d61adc9c4cd2b39fee5d5c9bfe3", + "data": { + "inGameID": 38138 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38138, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bd5f935e9d64671b8ffaf9663c527df839ede7a5", + "data": { + "inGameID": 38138 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38138, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0e8c8544f3a6065aa97e3563bd90b531b5d7b853", + "data": { + "inGameID": 38139 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38139, + "versions": [ + "a3" + ] + }, + { + "chartID": "5937d7f4c691d9277668d8a3b73997542d93e524", + "data": { + "inGameID": 38139 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38139, + "versions": [ + "a3" + ] + }, + { + "chartID": "66f1ef1ac04a0974e70eb09a70c5b4032f794be9", + "data": { + "inGameID": 38139 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38139, + "versions": [ + "a3" + ] + }, + { + "chartID": "f02f14fe49f65ddb62c406f97f07aedb8ba0ad38", + "data": { + "inGameID": 38139 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38139, + "versions": [ + "a3" + ] + }, + { + "chartID": "f3451804f0d833386e0423bf7ab33588e3bf6f7e", + "data": { + "inGameID": 38139 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38139, + "versions": [ + "a3" + ] + }, + { + "chartID": "a8ae197355e59d99b7d33d653acb2742086f0492", + "data": { + "inGameID": 38139 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38139, + "versions": [ + "a3" + ] + }, + { + "chartID": "4d5343466e1421d25cc3345ce4bc16a8d4c136a7", + "data": { + "inGameID": 38139 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38139, + "versions": [ + "a3" + ] + }, + { + "chartID": "f7568f2340f3b5b2ce9c05c59dfa7f5879145b52", + "data": { + "inGameID": 38139 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38139, + "versions": [ + "a3" + ] + }, + { + "chartID": "3f2ca9b7a34bb2f0d2f35ddb4cba60642a180836", + "data": { + "inGameID": 38139 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38139, + "versions": [ + "a3" + ] + }, + { + "chartID": "a63b0d9484c7f6f0afc41e824bceee12d2927c81", + "data": { + "inGameID": 38140 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38140, + "versions": [ + "a3" + ] + }, + { + "chartID": "3678417275614ad4c3f14b1ce235653ada02dfa2", + "data": { + "inGameID": 38140 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38140, + "versions": [ + "a3" + ] + }, + { + "chartID": "05cd01324dee68b48fb4c92d949118e428e81f46", + "data": { + "inGameID": 38140 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38140, + "versions": [ + "a3" + ] + }, + { + "chartID": "126223ae8ed6ddbb328ef193695f21a397afd260", + "data": { + "inGameID": 38140 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38140, + "versions": [ + "a3" + ] + }, + { + "chartID": "23346ac0573d41a0428725beedfe827699c6c7bc", + "data": { + "inGameID": 38140 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38140, + "versions": [ + "a3" + ] + }, + { + "chartID": "88eb7b3f16f7f6ec3bca40fd5550cd6bd18b22db", + "data": { + "inGameID": 38140 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38140, + "versions": [ + "a3" + ] + }, + { + "chartID": "7903fe186005cc76d960bb78ca1e613e4b22e116", + "data": { + "inGameID": 38140 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38140, + "versions": [ + "a3" + ] + }, + { + "chartID": "fc24c1e179cd08b3516b9a9aa93c1398387af2c7", + "data": { + "inGameID": 38140 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38140, + "versions": [ + "a3" + ] + }, + { + "chartID": "5d9cb5d0479757bffa1e02d79695dabff7e18971", + "data": { + "inGameID": 38140 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38140, + "versions": [ + "a3" + ] + }, + { + "chartID": "eed6d22bfa8f4344f231d61485e52bd0c30a1d4e", + "data": { + "inGameID": 38141 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38141, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "be5ecf78d9f10812bff44e9ff1cb5560b0c27a20", + "data": { + "inGameID": 38141 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38141, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4dc364819ad8ad01336caa12b32c1767cd89e6f0", + "data": { + "inGameID": 38141 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38141, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "03b3bd61153c676b14786909ef309992baa613ca", + "data": { + "inGameID": 38141 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38141, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "88a055af8b5334d016a9214eeb241400c5e88211", + "data": { + "inGameID": 38141 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38141, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8c13483fb4c920f7f5e2c0a86feda4a5ac7be4d7", + "data": { + "inGameID": 38141 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38141, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "380eb0fd297a63d62c31b4b109fca31103858763", + "data": { + "inGameID": 38141 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38141, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3cf4287753861057f6b16315476617db8a7d425d", + "data": { + "inGameID": 38141 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38141, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e0eebf6c8f6ce547c7b4fef33875e6fa3ac6a385", + "data": { + "inGameID": 38141 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38141, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2c4ebb57895d125e0e13024eef65a3a78993eb07", + "data": { + "inGameID": 38142 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38142, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "13dbfd8e22ccf4a4eb3083e2741d2d89490678e6", + "data": { + "inGameID": 38142 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38142, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0c83370fcd519a47a6c51db772278511e9cb409f", + "data": { + "inGameID": 38142 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38142, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4e539d6ae4501e392b258843704f35112edb5764", + "data": { + "inGameID": 38142 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38142, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f73139270cb23cddc554d4c13983d19a7f144ee", + "data": { + "inGameID": 38142 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38142, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cc408144acbf9531f9c422bbde9c7b2f40582c8e", + "data": { + "inGameID": 38142 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38142, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d84ff376541ee0e54b0f2a5ab40a9f1120892064", + "data": { + "inGameID": 38142 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38142, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b515a964b481f2e2cce2daf4528ea068443e04ce", + "data": { + "inGameID": 38142 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38142, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a5c54041250142f9589e57eec9e596edc2c136c3", + "data": { + "inGameID": 38142 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38142, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "adb8f27801c75ed93b468240813d9da1f71ba2f1", + "data": { + "inGameID": 38143 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38143, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "841e86db4c14deb5edfd698436da4d101d980ecf", + "data": { + "inGameID": 38143 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38143, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e1b8125be2db5fb482174514b8d4e41449eb5ec1", + "data": { + "inGameID": 38143 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38143, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a68700ef8bd7b4b9c10f5dcfc7075287f3b78d46", + "data": { + "inGameID": 38143 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38143, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ed95d9198c478d6108fb8b6bb47cc27be9eb063f", + "data": { + "inGameID": 38143 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38143, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bf6450aae1d0904867bd0b60f75d9db3fc9e1884", + "data": { + "inGameID": 38143 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38143, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c1c13d443ed390e979aaa7f06bdef2fbd2728363", + "data": { + "inGameID": 38143 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38143, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "81b246c096213a7af0f8f563e4648304d0338a0c", + "data": { + "inGameID": 38143 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38143, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b5ef7951fb17f9819a568b90a973a24e0fd8f6c1", + "data": { + "inGameID": 38143 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38143, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8c01014c7b01dfb621b0bf3d4d522ce4848075db", + "data": { + "inGameID": 38144 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38144, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6bb05d0246df67501c5050436cbd7d424fcf57e4", + "data": { + "inGameID": 38144 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38144, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c9ddba3e48d21fc661a8259467974c726706a5b3", + "data": { + "inGameID": 38144 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38144, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fb68148f53af49366a5229b10221d5d38757f757", + "data": { + "inGameID": 38144 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38144, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3b7e6765a70ffe144c2b4f6c3bede993f9756cc6", + "data": { + "inGameID": 38144 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38144, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cdee0291b812b077fe93127a57c7c5884ffc0c08", + "data": { + "inGameID": 38144 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38144, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "abda4c035cf4b628ec10f5f7e7a30e15fe55a3f9", + "data": { + "inGameID": 38144 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38144, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "864624c6cb0ece3c06acfa78e4685fc645852fc0", + "data": { + "inGameID": 38144 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38144, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "116be87afd8544cac5354fd1b9cf40a7f03e01d1", + "data": { + "inGameID": 38144 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38144, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "016f06f9cb052ae7575b134c2d198323a7916c2a", + "data": { + "inGameID": 38145 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38145, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "101e725e3558b54a1ef75759a6735d160588323b", + "data": { + "inGameID": 38145 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38145, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ab7aa560aad55af6883901e99eb47f9e2c5349a", + "data": { + "inGameID": 38145 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38145, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a383e48b687821eb084c0d1fcb37736cd123f4c1", + "data": { + "inGameID": 38145 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38145, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8b9772ab7091095f638a0a5119094326ae28c25a", + "data": { + "inGameID": 38145 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38145, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3e6d20863feb510c00d91c847f1bc33a17bd5045", + "data": { + "inGameID": 38145 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38145, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a3a3f0fd2e71942943a32c94807ed3fbf5fa854b", + "data": { + "inGameID": 38145 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38145, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5d8637e82e032f857631e77b890fc5dd17950f0b", + "data": { + "inGameID": 38146 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38146, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5584def1e07aa0310edf995e47d7252cd6cac32c", + "data": { + "inGameID": 38146 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38146, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "89afb5f9b7017f11d08b22bd9e4c0b767b9f31c9", + "data": { + "inGameID": 38146 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38146, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2c714c80488117d15d89e1f366a82613e545d15f", + "data": { + "inGameID": 38146 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38146, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "15de42acf385c84a3c0200249b77489570f16233", + "data": { + "inGameID": 38146 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38146, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a67753d796755baea4ad44f1a51bd6b75b607ba8", + "data": { + "inGameID": 38146 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38146, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "36f0eaf4262f8319f1e58a24dce3e7ceb58625f4", + "data": { + "inGameID": 38146 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38146, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "30f9fc1b50ad13b04f17fd09f14eba555f345eb7", + "data": { + "inGameID": 38146 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38146, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c36dfac60e92073a76ffe132056e41e65b1e0527", + "data": { + "inGameID": 38146 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38146, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dd4efed39e4f1a114c7183eeb6c41ecce469ca6e", + "data": { + "inGameID": 38147 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38147, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "30e29ef32a4af0a7d6ee6b432bb9eb95be0e058e", + "data": { + "inGameID": 38147 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38147, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "78ad4ebab82f7b5b350742dad387f0c00720d4d0", + "data": { + "inGameID": 38147 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38147, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5ddaa48a83bdc39e46899399311faccd45f71054", + "data": { + "inGameID": 38147 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38147, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "926f69dd1b3577709d37e7e9f027e75ecbc52d86", + "data": { + "inGameID": 38147 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38147, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "72c50b0e3a87dacd3a589ced75b4675221472ee2", + "data": { + "inGameID": 38147 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38147, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2e33e671dcbc1b1733d84cd78a50ec18b23a743a", + "data": { + "inGameID": 38147 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38147, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "501e822cc74b88b4637082b20d4dc749f2cd9207", + "data": { + "inGameID": 38148 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38148, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5d4d3e12365c00df63813e99abd97030a8060969", + "data": { + "inGameID": 38148 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38148, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8f66eddf7e44db1dc8ca90f56380f49553b71b7e", + "data": { + "inGameID": 38148 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38148, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c09f595d55a2dfcd86a767cf3a5dffc8f2e3c766", + "data": { + "inGameID": 38148 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38148, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bbfc90ab4b91fc92da3cad52b5c81d96cf01d385", + "data": { + "inGameID": 38148 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38148, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dcd2262ab7504472e1edb753e65881c8eb87a246", + "data": { + "inGameID": 38148 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38148, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d1fc5d089e61e1b118d08e5a2c2fb64db22d13e", + "data": { + "inGameID": 38148 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38148, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eadc02541b57841d6b3286472232644517fc002b", + "data": { + "inGameID": 38149 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38149, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "350d3dd302ef4250beba51b9859ae57d9c68a8d3", + "data": { + "inGameID": 38149 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "19", + "levelNum": 19, + "playtype": "DP", + "songID": 38149, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "71893cbf51aeccf5e66e48b39f265b2503b0de06", + "data": { + "inGameID": 38149 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38149, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "af39ba3eecc16ef0cc681d5449cee68e4c9fc4b5", + "data": { + "inGameID": 38149 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38149, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b4cf76c62cd3bff120186f4bd34577ec3e2170f1", + "data": { + "inGameID": 38149 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38149, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "39fe1c8a03ba120f2e4d0e7a1e0b6057ec833f25", + "data": { + "inGameID": 38149 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38149, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5ada63bf1fadbe080e411cb865cb83f5dbfafb63", + "data": { + "inGameID": 38149 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "19", + "levelNum": 19, + "playtype": "SP", + "songID": 38149, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0af6b80d7fb92e96cc608f0d622c81829eb3f546", + "data": { + "inGameID": 38149 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38149, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "56c57f2eabe6fa6b486f63d793d141d9bbd73b6b", + "data": { + "inGameID": 38149 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38149, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dd844c24f5838463d4bc835b90105fb48edd1a5a", + "data": { + "inGameID": 38150 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38150, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f25715e34673210fb49796abdec788438de8f576", + "data": { + "inGameID": 38150 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38150, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3804957add81b19c6d62d61a20b427446ab24840", + "data": { + "inGameID": 38150 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38150, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "611afb46d03718592bbc5dc0b7d63508cae5f5c0", + "data": { + "inGameID": 38150 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38150, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "38e6a3a9a84912ca4ececa0e9573f8491809414b", + "data": { + "inGameID": 38150 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38150, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b693cf8bb28b005e9785c3967f4e6618e641573a", + "data": { + "inGameID": 38150 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38150, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "01009c61944c1ba8cbb1a075f2150e0645c7cd83", + "data": { + "inGameID": 38150 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38150, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c9c3700d253d726de6cf5c14dd50011a014b0dda", + "data": { + "inGameID": 38151 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38151, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d7c47f9484520d3ac5f0533e17bb9033e4c3cb1", + "data": { + "inGameID": 38151 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38151, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e4e76527a4b8f43574114d96db23dada98221658", + "data": { + "inGameID": 38151 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38151, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1b4259824119ca393b2e04319b6ddf744ff0090d", + "data": { + "inGameID": 38151 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38151, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0912df4ce4db16c79fded398dfb31f81ee6c4f12", + "data": { + "inGameID": 38151 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38151, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "345fe9439548c0d78494981b7afaf31bf929e955", + "data": { + "inGameID": 38151 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38151, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "65e8dcde0106591b2433c9096fb628717d6e741f", + "data": { + "inGameID": 38151 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38151, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3c0bd369a3397be554761e29384c25fbfaabe90f", + "data": { + "inGameID": 38151 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38151, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8c08ec4ab915f872c737ad14b06ca0c294a01b56", + "data": { + "inGameID": 38151 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38151, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "be464f37313d735a72aeb3262044dad5d0caa551", + "data": { + "inGameID": 38152 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38152, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "485b99892651076329f2c0d533ccc8d3f81d0a9c", + "data": { + "inGameID": 38152 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38152, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "266854529301faa5755d54ec4647a5a50da84472", + "data": { + "inGameID": 38152 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38152, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "305b8b0d6ad4ee5ad4e41185c6552ef8acc282f9", + "data": { + "inGameID": 38152 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38152, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c84d907f68b1b9327887c854e0498a9dfed411c8", + "data": { + "inGameID": 38152 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38152, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fe79777198e0573d6e5ba1d67b89bf4fbf782c78", + "data": { + "inGameID": 38152 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38152, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7889e2a729ce07175939a91f6a73a2cb5571a877", + "data": { + "inGameID": 38152 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38152, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e824a1052e41bfc848239eb3e8564d426dc5f6d6", + "data": { + "inGameID": 38153 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38153, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "57489359b3643badb494ce701717c61090e2b59e", + "data": { + "inGameID": 38153 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38153, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1e87154b16cb22c9ae2f9fd077c3f4a9cd130f3e", + "data": { + "inGameID": 38153 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38153, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "14533b72f5165596386d1b012fd28edf62a69109", + "data": { + "inGameID": 38153 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38153, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ae0a0a6a55b66160466b772d2c8c05bc7ec4f105", + "data": { + "inGameID": 38153 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38153, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "98c6c00fe0a4775b0a1c5234fd710e2d65593cca", + "data": { + "inGameID": 38153 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38153, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b2d8f9c12f048353016e45e7ffafeb3589b6b251", + "data": { + "inGameID": 38153 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38153, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ee19ddc135f51d9c013c4ad86294600aebff6adb", + "data": { + "inGameID": 38154 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38154, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8674b37c4b245aee11bed3d4a3adc1c25d0426e0", + "data": { + "inGameID": 38154 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38154, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aec1cd4042923e98fd1503b48ca98cc5cb275bd7", + "data": { + "inGameID": 38154 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38154, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "506d358bef69a5d0c4499afd49de7788ade5959b", + "data": { + "inGameID": 38154 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38154, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "849202359676f81e8b823ff245b62ed127b38d0f", + "data": { + "inGameID": 38154 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38154, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7f0f26c25d29fa34723c5b371182cb089301f068", + "data": { + "inGameID": 38154 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38154, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0bbe514e3a568112c1556fd0c9a43c858f55616d", + "data": { + "inGameID": 38154 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38154, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "be92ab2bb0c5ca1a4fb0e904b7b644c28f9bad99", + "data": { + "inGameID": 38155 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38155, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3f003ae133400cb5440eef2d583ed57b80598a2a", + "data": { + "inGameID": 38155 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38155, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "27590cda25da743bcf9b5f46e7b509538dc673a5", + "data": { + "inGameID": 38155 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38155, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3e3b6d65e1f64933b8cd739e6080ca6039a78213", + "data": { + "inGameID": 38155 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38155, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c7c82eb5961e4d6d7c29ae735a4a5adc2e7c7c7c", + "data": { + "inGameID": 38155 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38155, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "14a9293c203de8082a0dfac6f52539a382fb452a", + "data": { + "inGameID": 38155 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38155, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fa353d992fe026f733f312af3d2d8d52a8389f93", + "data": { + "inGameID": 38155 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38155, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7b16672eb5a9b56ccdabbcbdae7e8f89b2e79105", + "data": { + "inGameID": 38156 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38156, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2eb609e18dd78bc510f7060623ac4ef50936a596", + "data": { + "inGameID": 38156 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38156, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f4c136e7dbd7b529845e974b414dc226f0d703db", + "data": { + "inGameID": 38156 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38156, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "98f232bee7463395aff7c2c15186fc3dac4b485c", + "data": { + "inGameID": 38156 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38156, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a4c903f1f5b867b5409b70845b987da63f83069b", + "data": { + "inGameID": 38156 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38156, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e26f5f6c8a64688dbf82e715262d9472e21a68e3", + "data": { + "inGameID": 38156 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38156, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "410b79d965ecaa34af7617da140fa9991c4c4e03", + "data": { + "inGameID": 38156 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38156, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c889b6c0b57dd5d6acf8520cf35504343ec9ec4f", + "data": { + "inGameID": 38156 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38156, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "365ce0469c136c2901074c782d1ce2ec8ad05ad6", + "data": { + "inGameID": 38156 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38156, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "334e0d86c952a82ad1d8bacd5f233664d7f66f7c", + "data": { + "inGameID": 38157 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38157, + "versions": [ + "a3" + ] + }, + { + "chartID": "822c0718f782decb60dcf09e4a17db63a561b852", + "data": { + "inGameID": 38157 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38157, + "versions": [ + "a3" + ] + }, + { + "chartID": "5ac52cb05534b0352cdab3eb862c4bd686094b1d", + "data": { + "inGameID": 38157 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38157, + "versions": [ + "a3" + ] + }, + { + "chartID": "31f11d67de441ed48b96520e1395fc6b73bb1def", + "data": { + "inGameID": 38157 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38157, + "versions": [ + "a3" + ] + }, + { + "chartID": "9905c513c65dad847e481b7f2e688be5623de1bb", + "data": { + "inGameID": 38157 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38157, + "versions": [ + "a3" + ] + }, + { + "chartID": "2479981bd5314f7b52fb603f18b8445c15dea4a0", + "data": { + "inGameID": 38157 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38157, + "versions": [ + "a3" + ] + }, + { + "chartID": "489aca3dad66b3729dd0a9b9b9bec843dc027e90", + "data": { + "inGameID": 38157 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38157, + "versions": [ + "a3" + ] + }, + { + "chartID": "c48ac8bfb41a54105efd33fb345bf31f77fc411c", + "data": { + "inGameID": 38157 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38157, + "versions": [ + "a3" + ] + }, + { + "chartID": "8be0c738e62534cf5271228c83fc8d0e1b7e646d", + "data": { + "inGameID": 38157 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38157, + "versions": [ + "a3" + ] + }, + { + "chartID": "f6da668d8c932b422c88b4d0b641945dcbfe6e2b", + "data": { + "inGameID": 38158 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38158, + "versions": [ + "a3" + ] + }, + { + "chartID": "23dd989f89f8968378e64bffaf6f2d60776ab5e2", + "data": { + "inGameID": 38158 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38158, + "versions": [ + "a3" + ] + }, + { + "chartID": "63933cefb50d4e4c3aefff99510d036a41f5fd56", + "data": { + "inGameID": 38158 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38158, + "versions": [ + "a3" + ] + }, + { + "chartID": "225cf98f9e0e8f575c78c0dba54a1c87ad9c8273", + "data": { + "inGameID": 38158 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38158, + "versions": [ + "a3" + ] + }, + { + "chartID": "92e3c0ffcd576a0bce2d9bfbb1906fbb42be3ea2", + "data": { + "inGameID": 38158 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38158, + "versions": [ + "a3" + ] + }, + { + "chartID": "4d9dce74fd443051f20f99e0c7b945e72c2fb78d", + "data": { + "inGameID": 38158 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38158, + "versions": [ + "a3" + ] + }, + { + "chartID": "11e4c55deeaa14cb779d7c2258408a07f26864cb", + "data": { + "inGameID": 38158 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38158, + "versions": [ + "a3" + ] + }, + { + "chartID": "fb8ee07e055b49311819c566611b09a4ffda9c71", + "data": { + "inGameID": 38159 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38159, + "versions": [ + "a3" + ] + }, + { + "chartID": "ab3351c14938b78321a1e6ce6a4a639b77abeec1", + "data": { + "inGameID": 38159 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38159, + "versions": [ + "a3" + ] + }, + { + "chartID": "49dd881ac1b6db790db9c334fe231aea7482546a", + "data": { + "inGameID": 38159 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38159, + "versions": [ + "a3" + ] + }, + { + "chartID": "5e73bcb2e21deb2375e3d43d502ca65895ebd0e7", + "data": { + "inGameID": 38159 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38159, + "versions": [ + "a3" + ] + }, + { + "chartID": "f6858698d2527aad2c1f4de1a7f2e46d22b0fe7b", + "data": { + "inGameID": 38159 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38159, + "versions": [ + "a3" + ] + }, + { + "chartID": "63b9037c16d1343940d2ba7a90025e875f2c8592", + "data": { + "inGameID": 38159 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38159, + "versions": [ + "a3" + ] + }, + { + "chartID": "64d5e82e3bd9e9af902bcc1a15bdce4c85583b19", + "data": { + "inGameID": 38159 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38159, + "versions": [ + "a3" + ] + }, + { + "chartID": "f63bc9a704fb8809f1b1e0e96687ef88e7effbda", + "data": { + "inGameID": 38159 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38159, + "versions": [ + "a3" + ] + }, + { + "chartID": "32614a37e6bea295605d68914e094fc7865cede2", + "data": { + "inGameID": 38159 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38159, + "versions": [ + "a3" + ] + }, + { + "chartID": "4e7097a2ab3112d13915ce5598ce202edb435fe0", + "data": { + "inGameID": 38160 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38160, + "versions": [ + "a3" + ] + }, + { + "chartID": "30f7f2f148b5f1d20697dcfbfe479c8a8df33a24", + "data": { + "inGameID": 38160 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38160, + "versions": [ + "a3" + ] + }, + { + "chartID": "cdb9f5495aa27b0b19cf6a8b9fcf72c9d286b0cf", + "data": { + "inGameID": 38160 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38160, + "versions": [ + "a3" + ] + }, + { + "chartID": "d1776f8cd4f937565156c9e53f4264568cc377e2", + "data": { + "inGameID": 38160 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38160, + "versions": [ + "a3" + ] + }, + { + "chartID": "b952e603207d20643a021864b04741d68a2e18c0", + "data": { + "inGameID": 38160 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38160, + "versions": [ + "a3" + ] + }, + { + "chartID": "275f2bdb88e03dd5193a16ff507de2e258eda61e", + "data": { + "inGameID": 38160 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38160, + "versions": [ + "a3" + ] + }, + { + "chartID": "5163405d927d1b17cf17c7c05823a019d1028b2f", + "data": { + "inGameID": 38160 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38160, + "versions": [ + "a3" + ] + }, + { + "chartID": "e953dee7807f3c0904861eada3b47a84edd787e1", + "data": { + "inGameID": 38161 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38161, + "versions": [ + "a3" + ] + }, + { + "chartID": "967a09d90aec16b1bb9389ab71f633f5f29a0f65", + "data": { + "inGameID": 38161 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38161, + "versions": [ + "a3" + ] + }, + { + "chartID": "cb8a3a80e80348fabaaadfec41e9a179ffd26c8f", + "data": { + "inGameID": 38161 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38161, + "versions": [ + "a3" + ] + }, + { + "chartID": "74e7dadcdb9e27cf69f048430bd6fb4cc1efd54f", + "data": { + "inGameID": 38161 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38161, + "versions": [ + "a3" + ] + }, + { + "chartID": "6d453869d8be0ee64835bc09c4b0172aee1ce98b", + "data": { + "inGameID": 38161 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38161, + "versions": [ + "a3" + ] + }, + { + "chartID": "dba183b08f213c30808e10f0fa700a1102740c90", + "data": { + "inGameID": 38161 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38161, + "versions": [ + "a3" + ] + }, + { + "chartID": "8266e2108636150ea5633efacea416ee963d72d0", + "data": { + "inGameID": 38161 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38161, + "versions": [ + "a3" + ] + }, + { + "chartID": "16b3ce8fef8aeac5799e923dd08ba758185180a9", + "data": { + "inGameID": 38167 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38167, + "versions": [ + "a3" + ] + }, + { + "chartID": "1176498e99c64c327c22d39a87a5b8ee7826c77f", + "data": { + "inGameID": 38167 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38167, + "versions": [ + "a3" + ] + }, + { + "chartID": "279e63f0566ef190fecf70fa503b58f7fd701baf", + "data": { + "inGameID": 38167 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38167, + "versions": [ + "a3" + ] + }, + { + "chartID": "d1b76be41736328dd6020cec7cec3c975aceffd7", + "data": { + "inGameID": 38167 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38167, + "versions": [ + "a3" + ] + }, + { + "chartID": "4ad1f1e9a9daadf811372a098a9ccf9c08416277", + "data": { + "inGameID": 38167 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38167, + "versions": [ + "a3" + ] + }, + { + "chartID": "fc8d711e300500c33082b19126cd430d8262c8d2", + "data": { + "inGameID": 38167 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38167, + "versions": [ + "a3" + ] + }, + { + "chartID": "0fe42db028767155ac9fc7aa70ea233ff177d29c", + "data": { + "inGameID": 38167 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38167, + "versions": [ + "a3" + ] + }, + { + "chartID": "19ca43c958d83c1a52ba4efb262c57aa6472bc0d", + "data": { + "inGameID": 38168 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38168, + "versions": [ + "a3" + ] + }, + { + "chartID": "524abd1b2f3a3ef16dbc580dd710f77480e222e4", + "data": { + "inGameID": 38168 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38168, + "versions": [ + "a3" + ] + }, + { + "chartID": "b09c1bd8efff42ba6530c7b3c2d8b79567fa1213", + "data": { + "inGameID": 38168 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38168, + "versions": [ + "a3" + ] + }, + { + "chartID": "7008cd29dd4aeccec2a30c3b77418900d8392bff", + "data": { + "inGameID": 38168 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38168, + "versions": [ + "a3" + ] + }, + { + "chartID": "391f8239b189924efdd1dc6278d926e2e36c9038", + "data": { + "inGameID": 38168 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38168, + "versions": [ + "a3" + ] + }, + { + "chartID": "570611b1e8e5e2bf77b3b21c24071aec25208f5f", + "data": { + "inGameID": 38168 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38168, + "versions": [ + "a3" + ] + }, + { + "chartID": "2be38fb84cbd48044461604ab2b1078fb32bafd2", + "data": { + "inGameID": 38168 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38168, + "versions": [ + "a3" + ] + }, + { + "chartID": "299f35fcabbd038440b14564afadc494a7b8d0bc", + "data": { + "inGameID": 38169 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38169, + "versions": [ + "a3" + ] + }, + { + "chartID": "ef71aab17c1148ca4b30d1e2545c9560a1ba1b41", + "data": { + "inGameID": 38169 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38169, + "versions": [ + "a3" + ] + }, + { + "chartID": "e1e39ef6f753fac7305406c83f9f69787448592d", + "data": { + "inGameID": 38169 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38169, + "versions": [ + "a3" + ] + }, + { + "chartID": "34ca4ed631b355e3666d636bf73a6f660d66192c", + "data": { + "inGameID": 38169 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38169, + "versions": [ + "a3" + ] + }, + { + "chartID": "fd01daecffee6564e528cd6206261a7edee247d6", + "data": { + "inGameID": 38169 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38169, + "versions": [ + "a3" + ] + }, + { + "chartID": "6c5db60468b57596d084141e8ebb2a2820068ccc", + "data": { + "inGameID": 38169 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38169, + "versions": [ + "a3" + ] + }, + { + "chartID": "5b676e2ff704da07d82fb0cc8dcf1a6dff59ec04", + "data": { + "inGameID": 38169 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38169, + "versions": [ + "a3" + ] + }, + { + "chartID": "50b08ca4df77fb5cd83f8d032030e56a75d13ccc", + "data": { + "inGameID": 38170 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38170, + "versions": [ + "a3" + ] + }, + { + "chartID": "71eca1b24c756722a0ab0375ef0ea4bc2e23ef60", + "data": { + "inGameID": 38170 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38170, + "versions": [ + "a3" + ] + }, + { + "chartID": "8eea7bbc02094b3196b4ec15d904ce8a7b1f1c7f", + "data": { + "inGameID": 38170 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38170, + "versions": [ + "a3" + ] + }, + { + "chartID": "2ccb59f58e2a73ed201a5d167cdd155a1e17527b", + "data": { + "inGameID": 38170 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38170, + "versions": [ + "a3" + ] + }, + { + "chartID": "2ecdce5d507ced421e5c6b873246a8acc5a6ba39", + "data": { + "inGameID": 38170 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38170, + "versions": [ + "a3" + ] + }, + { + "chartID": "176dad5ffd8bb205ad4b6d23a904cae11c1ceeba", + "data": { + "inGameID": 38170 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38170, + "versions": [ + "a3" + ] + }, + { + "chartID": "eee944a3f8a07e3f8c002e4d52d9c830db7f609a", + "data": { + "inGameID": 38170 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38170, + "versions": [ + "a3" + ] + }, + { + "chartID": "ed6934bffb4bdd063e018522bcc1779db8947ef3", + "data": { + "inGameID": 38171 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38171, + "versions": [ + "a3" + ] + }, + { + "chartID": "1dd3468ef20449f5b45b92dde98108bef72bf5ff", + "data": { + "inGameID": 38171 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38171, + "versions": [ + "a3" + ] + }, + { + "chartID": "73635c9b377689bcf7d0785940f1a71e3ae8632b", + "data": { + "inGameID": 38171 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38171, + "versions": [ + "a3" + ] + }, + { + "chartID": "657bb4fd6516d3355cc6a3dbda9a7149713b572d", + "data": { + "inGameID": 38171 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38171, + "versions": [ + "a3" + ] + }, + { + "chartID": "f6613ef3ceb75f0d6a8a1d5e3d2424efc75b8a00", + "data": { + "inGameID": 38171 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38171, + "versions": [ + "a3" + ] + }, + { + "chartID": "59b6877f8702aa134d623e2f359b3cecac072308", + "data": { + "inGameID": 38171 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38171, + "versions": [ + "a3" + ] + }, + { + "chartID": "c51f4810b6fc8bbccbde6a7ede15db3474000f7b", + "data": { + "inGameID": 38171 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38171, + "versions": [ + "a3" + ] + }, + { + "chartID": "63ab7a8d3fd2cebfb28c43ca8e9a4b0ef1deec42", + "data": { + "inGameID": 38172 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38172, + "versions": [ + "a3" + ] + }, + { + "chartID": "b7be1a66160268ea83db332d0bf0ec7e655fb101", + "data": { + "inGameID": 38172 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38172, + "versions": [ + "a3" + ] + }, + { + "chartID": "da316bc1c1ddd9f2789dd7e026f05b721de8eced", + "data": { + "inGameID": 38172 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38172, + "versions": [ + "a3" + ] + }, + { + "chartID": "115fb62144f15f65b2e1d8a013db72c5943d1822", + "data": { + "inGameID": 38172 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38172, + "versions": [ + "a3" + ] + }, + { + "chartID": "9f614a03ab7914a30b02488de4e15fbc60f50882", + "data": { + "inGameID": 38172 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38172, + "versions": [ + "a3" + ] + }, + { + "chartID": "70eab994a8e0093ba4f73cde65cd1f94f4758c9a", + "data": { + "inGameID": 38172 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38172, + "versions": [ + "a3" + ] + }, + { + "chartID": "3631feb14787af00f59a0ed051a3bbfbcbb5c904", + "data": { + "inGameID": 38172 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38172, + "versions": [ + "a3" + ] + }, + { + "chartID": "936b00d07992e7d4cf9be9150061a96c5d91f083", + "data": { + "inGameID": 38173 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38173, + "versions": [ + "a3" + ] + }, + { + "chartID": "2d06bca69fabef457c1673070f5bb9ec02134188", + "data": { + "inGameID": 38173 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38173, + "versions": [ + "a3" + ] + }, + { + "chartID": "e55e385ecd53b487f4b56d37484163ea269f180f", + "data": { + "inGameID": 38173 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38173, + "versions": [ + "a3" + ] + }, + { + "chartID": "eb3b4349a767fb470fc2ef877af65c1c176a5696", + "data": { + "inGameID": 38173 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38173, + "versions": [ + "a3" + ] + }, + { + "chartID": "5e055ec0b9728b6955a72d149687be894bfba995", + "data": { + "inGameID": 38173 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38173, + "versions": [ + "a3" + ] + }, + { + "chartID": "03fc9c53a196055aef8b40d9869e5ef3efbc9330", + "data": { + "inGameID": 38173 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38173, + "versions": [ + "a3" + ] + }, + { + "chartID": "6fb520805dd73017cf4cc08687bb1e08b8c6877b", + "data": { + "inGameID": 38173 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38173, + "versions": [ + "a3" + ] + }, + { + "chartID": "181b16be188ce8499273a5c666559074069ebb38", + "data": { + "inGameID": 38174 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38174, + "versions": [ + "a3" + ] + }, + { + "chartID": "4e5b18d9607199f1188f103ac1bd1a7d6baef459", + "data": { + "inGameID": 38174 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38174, + "versions": [ + "a3" + ] + }, + { + "chartID": "1e6fa977aefd73a46f14a1ae9ff0e58439f5a9f1", + "data": { + "inGameID": 38174 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38174, + "versions": [ + "a3" + ] + }, + { + "chartID": "e70e2e1280dcdea053d3892c738a755620d41e1b", + "data": { + "inGameID": 38174 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38174, + "versions": [ + "a3" + ] + }, + { + "chartID": "7604504b6979b1f19f8f0603718cebc2c59ece22", + "data": { + "inGameID": 38174 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38174, + "versions": [ + "a3" + ] + }, + { + "chartID": "08d6458930ac8472995303ff01648cc6d9baf3c5", + "data": { + "inGameID": 38174 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38174, + "versions": [ + "a3" + ] + }, + { + "chartID": "e5c860d13f1e5b6b3ae83d5350472efbf0ba9511", + "data": { + "inGameID": 38174 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38174, + "versions": [ + "a3" + ] + }, + { + "chartID": "63fbd8ca3bad1f881c5157fe8913579e6e9caec7", + "data": { + "inGameID": 38175 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38175, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6fddc34a6248b2324762a96444c34dc6dda88822", + "data": { + "inGameID": 38175 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38175, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5a059dbf810f967de7e6e7ea9ec3ef9724097da5", + "data": { + "inGameID": 38175 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38175, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "61b330fb636e6a5f7dcdb03e363ac4c53b35812d", + "data": { + "inGameID": 38175 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38175, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c62ca2fa2c559fd1a1656c140cd2ddcbc01d26fb", + "data": { + "inGameID": 38175 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38175, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7ea3265a97562108e16c4f44e104ba1fed4c2556", + "data": { + "inGameID": 38175 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38175, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2decd5117fcc88400440021ccf5357181ad211b7", + "data": { + "inGameID": 38175 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38175, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3239a38bae77c069b0afb86215ac75854fd8b3af", + "data": { + "inGameID": 38175 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38175, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fecb704906a4836709351be0852989d5be71d551", + "data": { + "inGameID": 38175 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38175, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6972d0c1e56ae4c1e55e610226dd5155ef985d4e", + "data": { + "inGameID": 38176 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38176, + "versions": [ + "a3" + ] + }, + { + "chartID": "4edcc2e4105d7d0b677aa30571d50bdad19b8a35", + "data": { + "inGameID": 38176 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38176, + "versions": [ + "a3" + ] + }, + { + "chartID": "d998a401eb796d269a65832845c380b71d6fbdf3", + "data": { + "inGameID": 38176 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38176, + "versions": [ + "a3" + ] + }, + { + "chartID": "eda7a5c46493b9abf267e1b095de33263209299c", + "data": { + "inGameID": 38176 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38176, + "versions": [ + "a3" + ] + }, + { + "chartID": "678516b6917be6ff397411d6825715b58beeaaf7", + "data": { + "inGameID": 38176 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38176, + "versions": [ + "a3" + ] + }, + { + "chartID": "85abcab79bdd72f8467b09ad2cb760434042ed99", + "data": { + "inGameID": 38176 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38176, + "versions": [ + "a3" + ] + }, + { + "chartID": "ad9866a765d0816f8febb1173ca7d80d8092f36e", + "data": { + "inGameID": 38176 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38176, + "versions": [ + "a3" + ] + }, + { + "chartID": "0868a66ef6498b12fd2f2066664642fe42794080", + "data": { + "inGameID": 38177 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38177, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "93485846139f9824ca64869d444bdf882dcc9e35", + "data": { + "inGameID": 38177 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38177, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "14d1f2f0ecfcfc344d0acf032e7c5a66cfee9d01", + "data": { + "inGameID": 38177 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38177, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "58087732591b1a7887778cc19c3f92191fa7dc9e", + "data": { + "inGameID": 38177 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38177, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8cc30feacd6b94af02cc8beee60f9ef883472e0f", + "data": { + "inGameID": 38177 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38177, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ca461bed9dfeac8d178f59d0ebcbc09e25179bd4", + "data": { + "inGameID": 38177 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38177, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0e95a7ba086ba47f184f2627b0acbab8ac067be0", + "data": { + "inGameID": 38177 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38177, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "72ae17c0a742bc9e8cf943c043d7a4944ddadd7b", + "data": { + "inGameID": 38180 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38180, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8b7dad067556a721b8d43a08a22f9821896b2c10", + "data": { + "inGameID": 38180 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38180, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c74addd5d3d58c2f9e98143b3b76189bec13b29f", + "data": { + "inGameID": 38180 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38180, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fa540309a40fe6f260a11d3d8ff01d97526755f0", + "data": { + "inGameID": 38180 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38180, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "368a0006dad31be234eadb29cb9e048b1c385bdc", + "data": { + "inGameID": 38180 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38180, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "26865a2be3d651a923f77c56a03570f6af7c61b5", + "data": { + "inGameID": 38180 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38180, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "145c16d248da334d3cfbe47fbf5de849cfe3cc30", + "data": { + "inGameID": 38180 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38180, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eb0eabb38531e7cb7645b116c5e24c0a14efb427", + "data": { + "inGameID": 38182 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38182, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0c73931a778bda030b422feb908977a8e72b9fad", + "data": { + "inGameID": 38182 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38182, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4ab88eaa8dab95ac2a0ac5a4e5c37c6711cd3aba", + "data": { + "inGameID": 38182 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38182, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bb9cfdc10170aecda8eecb7cd3930e503dff2df0", + "data": { + "inGameID": 38182 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38182, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d0dc5048cf11faf4971bea4353e2bb958fd9f97c", + "data": { + "inGameID": 38182 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38182, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f2b3e560f54cf742589d933577424a37ea630a38", + "data": { + "inGameID": 38182 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38182, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "73cc7d9daa44bd3ff60b423dbb0518698699477a", + "data": { + "inGameID": 38182 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38182, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e22b5c68d57152927bbb401f5a54489f0ea8792f", + "data": { + "inGameID": 38183 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38183, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1136da2efd6492234e2add6fa5897faab312f5a6", + "data": { + "inGameID": 38183 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38183, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3a81b69b252d0fd53013c43d7a1afe8ee424082c", + "data": { + "inGameID": 38183 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38183, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5eed3855fa590832c7c7bc62b90b9be92e3c88ec", + "data": { + "inGameID": 38183 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38183, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7d9c9b8b50f7a184442087c433b036b5c8c8af52", + "data": { + "inGameID": 38183 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38183, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1fead723233c4c4c7191b97ba3e67029ec6478f4", + "data": { + "inGameID": 38183 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38183, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "658c561dfae7ad1639bbfd8ed97d130038658876", + "data": { + "inGameID": 38183 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38183, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e2860c5f7e5e75871c483790debd9264fe7f4b51", + "data": { + "inGameID": 38183 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38183, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3bb819611834a282d761989632ab4de58ed6e62d", + "data": { + "inGameID": 38183 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38183, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7893c7be7e1adbe70b30bbfa2c0efe8a6dc9322a", + "data": { + "inGameID": 38184 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38184, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f8611c26d93192d6dbfed0ae12fcc25e1f8fcdc4", + "data": { + "inGameID": 38184 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38184, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b66df84403caea78cd0d12f699c28f3ed6e3dfd9", + "data": { + "inGameID": 38184 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38184, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b9f48bfc3c9d545e6cd8ae343670bf13ac334e07", + "data": { + "inGameID": 38184 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38184, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "93ef8da7b37dab52375e8489fd7497d9a772d407", + "data": { + "inGameID": 38184 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38184, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8fb0cb3f5082d81cdde5133a79267458e47f1c18", + "data": { + "inGameID": 38184 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38184, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2492736a1bdda10e1378f2eadec4c1cfaf890dbe", + "data": { + "inGameID": 38184 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38184, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f1fc8c6fcbe97de9b12a81968954f82166c17b0a", + "data": { + "inGameID": 38185 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38185, + "versions": [ + "a3" + ] + }, + { + "chartID": "c855c3f7806d4c29d53b23419e77bf9a56e4a9f2", + "data": { + "inGameID": 38185 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38185, + "versions": [ + "a3" + ] + }, + { + "chartID": "125f53b6b7b500b5e3020558c2c78d776f8d179e", + "data": { + "inGameID": 38185 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38185, + "versions": [ + "a3" + ] + }, + { + "chartID": "c79f6768863db9acbc31d2f93e103cfaba4e72ad", + "data": { + "inGameID": 38185 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38185, + "versions": [ + "a3" + ] + }, + { + "chartID": "66e5fb5db5cda96f6ecb9135912cb31767cb23f2", + "data": { + "inGameID": 38185 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38185, + "versions": [ + "a3" + ] + }, + { + "chartID": "bf8b0ae0b1ef780fdfdb505ea17050ef3916bb84", + "data": { + "inGameID": 38185 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38185, + "versions": [ + "a3" + ] + }, + { + "chartID": "5ec47d14b3d403b01f6d88d5495a92a94a91b2c1", + "data": { + "inGameID": 38185 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38185, + "versions": [ + "a3" + ] + }, + { + "chartID": "d0de6b6b9932c19c02e92c4805ec5277018403ce", + "data": { + "inGameID": 38186 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38186, + "versions": [ + "a3" + ] + }, + { + "chartID": "db51dd78a66ccadebe5e2be604039f7d0046e4fb", + "data": { + "inGameID": 38186 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38186, + "versions": [ + "a3" + ] + }, + { + "chartID": "5840ff7d643d9c31703ab9dc703c386db2047353", + "data": { + "inGameID": 38186 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38186, + "versions": [ + "a3" + ] + }, + { + "chartID": "4343f15c54de6238f0fadb8e82aedb898054899c", + "data": { + "inGameID": 38186 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38186, + "versions": [ + "a3" + ] + }, + { + "chartID": "d55b3bbc87b86f4c1d6b93c6be59cb0ef9173df3", + "data": { + "inGameID": 38186 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38186, + "versions": [ + "a3" + ] + }, + { + "chartID": "facb3dbd5ff1b13f3240b2406c39adf7647166a1", + "data": { + "inGameID": 38186 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38186, + "versions": [ + "a3" + ] + }, + { + "chartID": "c7b94d6cb905b716d17da37ab64e4bf91c91745c", + "data": { + "inGameID": 38186 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38186, + "versions": [ + "a3" + ] + }, + { + "chartID": "27a01e4820ec1710a44805aecb2985734bc8d3fb", + "data": { + "inGameID": 38187 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38187, + "versions": [ + "a3" + ] + }, + { + "chartID": "5db9e89353aa98e40dae1832fdd6239d690ac541", + "data": { + "inGameID": 38187 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38187, + "versions": [ + "a3" + ] + }, + { + "chartID": "5042c33a038b9c6f0912bed80bc699b0e6944480", + "data": { + "inGameID": 38187 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38187, + "versions": [ + "a3" + ] + }, + { + "chartID": "bf57a68e9816f4bd1b8b57508c1dbe73e9984083", + "data": { + "inGameID": 38187 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38187, + "versions": [ + "a3" + ] + }, + { + "chartID": "f2f871198a750b513bb15a2e5c65d525cd9c19ef", + "data": { + "inGameID": 38187 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38187, + "versions": [ + "a3" + ] + }, + { + "chartID": "1828e270347e6d1593e89ab3077376e280925443", + "data": { + "inGameID": 38187 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38187, + "versions": [ + "a3" + ] + }, + { + "chartID": "aac7f27931dfe44c1df073f95d0167fc233f1781", + "data": { + "inGameID": 38187 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38187, + "versions": [ + "a3" + ] + }, + { + "chartID": "7781fa6063502429d7a280fb72abcb8db186bcb3", + "data": { + "inGameID": 38188 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38188, + "versions": [ + "a3" + ] + }, + { + "chartID": "109da9b0f449d31bba3d681cc766852a1e98b7fc", + "data": { + "inGameID": 38188 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38188, + "versions": [ + "a3" + ] + }, + { + "chartID": "e5301a42875e4983e99d2d8a6dd79428ff968d05", + "data": { + "inGameID": 38188 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38188, + "versions": [ + "a3" + ] + }, + { + "chartID": "cb6b42beda2fd6cbe99bb9e00fb3b68c5e0f5ea6", + "data": { + "inGameID": 38188 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38188, + "versions": [ + "a3" + ] + }, + { + "chartID": "a0d3507c227d2bcf41c924155212bd230983d53f", + "data": { + "inGameID": 38188 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38188, + "versions": [ + "a3" + ] + }, + { + "chartID": "4f03633be23884e1604452496eaa66c2f5eb1cd0", + "data": { + "inGameID": 38188 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38188, + "versions": [ + "a3" + ] + }, + { + "chartID": "4e4671926b24cbf983418f7c14c6e7865d6735b9", + "data": { + "inGameID": 38188 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38188, + "versions": [ + "a3" + ] + }, + { + "chartID": "223dba481ae23594c77a8f45f73dd19cf66d3a3e", + "data": { + "inGameID": 38189 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38189, + "versions": [ + "a3" + ] + }, + { + "chartID": "4d6747b97d4ba95a3e7793090ed7f953e8b1b61a", + "data": { + "inGameID": 38189 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38189, + "versions": [ + "a3" + ] + }, + { + "chartID": "a69bc15de504d0e00777afa39d2008509829ad03", + "data": { + "inGameID": 38189 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38189, + "versions": [ + "a3" + ] + }, + { + "chartID": "c2c1fa9c6259b6b869a0aed8a78242bbf7363e6f", + "data": { + "inGameID": 38189 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38189, + "versions": [ + "a3" + ] + }, + { + "chartID": "7dc5543c050f203698010d337f83d34fa775eacc", + "data": { + "inGameID": 38189 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38189, + "versions": [ + "a3" + ] + }, + { + "chartID": "13bea4e257e2674c5a012f5d8fb7189352d93d8e", + "data": { + "inGameID": 38189 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38189, + "versions": [ + "a3" + ] + }, + { + "chartID": "a2424f423c8cee0f3f2df480ccdd07ea85af7c61", + "data": { + "inGameID": 38189 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38189, + "versions": [ + "a3" + ] + }, + { + "chartID": "adde2313895faf7ee67ca64383966977bac68aee", + "data": { + "inGameID": 38190 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38190, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "113553e0367a721aef729802685b77774aeed0bd", + "data": { + "inGameID": 38190 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38190, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "10ce0c737c8a989746307bb12fc3a40e587b7e6c", + "data": { + "inGameID": 38190 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38190, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "05257b1a2e1805aceb8b053191bf5e65a809a3f6", + "data": { + "inGameID": 38190 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38190, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d354ba066c378c6f3803937d285c5921747942b5", + "data": { + "inGameID": 38190 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38190, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e7e6cd3337cec991c8951198f734b1f7fe0b1600", + "data": { + "inGameID": 38190 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38190, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0a529d235d968bbe8b6a286c17c03cfaa29f9658", + "data": { + "inGameID": 38190 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38190, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4e56cd1e1d08f81fbd50ce522058e85346f56a96", + "data": { + "inGameID": 38191 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38191, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b732dc9e5dcd72cdec2d55fc31c8fe393b83e4d0", + "data": { + "inGameID": 38191 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38191, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "77de24f052fa2a6ec90c354af278f55312f72f18", + "data": { + "inGameID": 38191 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38191, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6e51d7f699bf3edb78eedb66e63c7e064a5687b2", + "data": { + "inGameID": 38191 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38191, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "558bb38ec728f5dcac32939ca881c9686b9adb11", + "data": { + "inGameID": 38191 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38191, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "861d252c51d51a28bf0879a08f60a86c9aa0712c", + "data": { + "inGameID": 38191 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38191, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "39ed825eb74bceb81463e14dbbb22d38f0c10d32", + "data": { + "inGameID": 38191 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38191, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "80a66adef809e97c32e6cce21abf7b8c7c9893f4", + "data": { + "inGameID": 38192 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38192, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a7aa3ac1a2dddb47419b48af3a26697422108361", + "data": { + "inGameID": 38192 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38192, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3aa99683a46a64217b52d243c031f61f1e527dbf", + "data": { + "inGameID": 38192 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38192, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cc9dc74dba73c5821be8b67d9b2d60a5ca1c33f2", + "data": { + "inGameID": 38192 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38192, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3a20a3ceabe9eae9979481ac063754dd0893e934", + "data": { + "inGameID": 38192 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38192, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9ef2db61dedccaf5d4302f838518b81cd27ecdb4", + "data": { + "inGameID": 38192 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38192, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d1220b89115f15b7fa624f4b507fcddbbda07c77", + "data": { + "inGameID": 38192 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38192, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dab73b299fadcbb8e355dc76eaad187863a02d2f", + "data": { + "inGameID": 38193 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38193, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "def8338e8c48c2672d0ba69b5383220644e41216", + "data": { + "inGameID": 38193 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38193, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "714159e094a1c7391fef951e7496df91fa22e264", + "data": { + "inGameID": 38193 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38193, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1c0ed1630f2506f488f2b985ab914b94aa4d3b8d", + "data": { + "inGameID": 38193 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38193, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dcca221f0c54864bfc3b108872331a7337c99f5a", + "data": { + "inGameID": 38193 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38193, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ec0e4bf1996a398e6857a1938ad7747d1a62a5ab", + "data": { + "inGameID": 38193 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38193, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f66c7450caf0459d1e93497111cf95a7d4d2f0f5", + "data": { + "inGameID": 38193 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38193, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aa4f5e0f70c331fd90178d3c518a7bb6116c25ab", + "data": { + "inGameID": 38194 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38194, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9d8d2c9c25d62b094ae54e96580ca2ab40eff832", + "data": { + "inGameID": 38194 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38194, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d7507bd340abd07cca84605a4ff887e85af14196", + "data": { + "inGameID": 38194 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38194, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "04c77dbaa1c377cb2adc6ddcb2b403aa80e633db", + "data": { + "inGameID": 38194 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38194, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "52d8598c53d9afc91e9d0ae08b1a1290b7ddc63f", + "data": { + "inGameID": 38194 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38194, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3cd1a8fbdee55daeaf0c44fe5d7580afe0f9f944", + "data": { + "inGameID": 38194 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38194, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5b22319450e9bdecb0155d1a025123434d11dc0e", + "data": { + "inGameID": 38194 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38194, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0ac0b41f651e007af1924fdc62082f6439a3621b", + "data": { + "inGameID": 38195 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38195, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b48af55008107428c9c8c8ae8e47846cef279d73", + "data": { + "inGameID": 38195 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38195, + "versions": [ + "konaste" + ] + }, + { + "chartID": "cddd11a0735e32dd6192d67e6989b9db2c7ff551", + "data": { + "inGameID": 38195 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38195, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fb4909f9817dfcbe584290ca4ab5393612e34d9e", + "data": { + "inGameID": 38195 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38195, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "108a51d0db11be7f4cf19f5875eba110261eedfe", + "data": { + "inGameID": 38195 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38195, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e261e4f0ce32add26bf828b1b96ba9d8d5d1d160", + "data": { + "inGameID": 38195 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38195, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "84be492a86cfed4d9cbc77619f0791137ed74ba4", + "data": { + "inGameID": 38195 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38195, + "versions": [ + "konaste" + ] + }, + { + "chartID": "253900899550a00ccb51062e800d5d917665daa5", + "data": { + "inGameID": 38195 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38195, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "984ffbed8a8ecf10a1d76348c2d7f3baa4de424c", + "data": { + "inGameID": 38195 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38195, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "df68751a9ab0bf658f2e55fbb6ad0c7e36c47397", + "data": { + "inGameID": 38196 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38196, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cf053084f9770c5864ca78d53f0407bd9171eda8", + "data": { + "inGameID": 38196 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38196, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9b318ef5e27b68e905a52b8cf8fbada6ad833546", + "data": { + "inGameID": 38196 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38196, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b7fb0bb1712a133d264e5a8235b0be897a32d890", + "data": { + "inGameID": 38196 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38196, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "631e40af37dfc7e9b31ba8abd04f22fb78d9e650", + "data": { + "inGameID": 38196 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38196, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "baaf7febaceca46d9c3b0930652faa72e06eadfc", + "data": { + "inGameID": 38196 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38196, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "602d1acef8130414b4aeca6625815fb53bd459a1", + "data": { + "inGameID": 38196 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38196, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a25cc5412b3565431e7503b60d7d9f251c78ccdc", + "data": { + "inGameID": 38196 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38196, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0cb136bffcdd27be00ce592b9e868221a6faaf4b", + "data": { + "inGameID": 38196 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38196, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "117d3af68bde48adbf10d5d3d697e1665e684b16", + "data": { + "inGameID": 38197 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38197, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c4f9c81453772b8a0fe4a8c4c2461e984123de0e", + "data": { + "inGameID": 38197 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38197, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3a58bc2eb910c9978c835720e3460452edf95260", + "data": { + "inGameID": 38197 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38197, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e6e10c33cc828d0924922d9b6c18984f4183d52f", + "data": { + "inGameID": 38197 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38197, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "33daa0b334385961007e55dfedceda6832c96694", + "data": { + "inGameID": 38197 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38197, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "db22d291f66db540fb0e84a9ac5f480a820e0a4d", + "data": { + "inGameID": 38197 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38197, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dbd5b7192bffb1818fc9655a181af279cf6bcbfa", + "data": { + "inGameID": 38197 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38197, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "796c3e599b91983cc6351997be1d7a21a035334b", + "data": { + "inGameID": 38198 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38198, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff9de7fa478c64e7a9e7703767e3f0e1767448c6", + "data": { + "inGameID": 38198 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38198, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0408066c102622ea3be05bfc4aeb62d50ec0a13b", + "data": { + "inGameID": 38198 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38198, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "de78bb0f23c73b16d72231adc0a6071d1e6a6775", + "data": { + "inGameID": 38198 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38198, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a825b059770d8be251e40c12b1ac2065aba280a8", + "data": { + "inGameID": 38198 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38198, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bbc2f482e8a91552cb644b20fa6ab0338275bc8a", + "data": { + "inGameID": 38198 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38198, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8ce54d4f9ec8c79cdf824c3faf532619ec18380", + "data": { + "inGameID": 38198 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38198, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5b50ca93ac2a5a1e580d00a00974be1cae3dd1fc", + "data": { + "inGameID": 38199 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 38199, + "versions": [ + "a3" + ] + }, + { + "chartID": "44e6145e877e2fbf20de88580bfe200f881986c3", + "data": { + "inGameID": 38199 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38199, + "versions": [ + "a3" + ] + }, + { + "chartID": "56d8cba93bc11c00f0a0c5f22bb1d9ae43b221b3", + "data": { + "inGameID": 38199 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38199, + "versions": [ + "a3" + ] + }, + { + "chartID": "1f652425c06441bcefb223cd3519bf57d0fe33c8", + "data": { + "inGameID": 38199 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38199, + "versions": [ + "a3" + ] + }, + { + "chartID": "a5e7cb5fd79cab8fda6b6e31d273b6f6fe755cd4", + "data": { + "inGameID": 38199 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38199, + "versions": [ + "a3" + ] + }, + { + "chartID": "ffd26f23f4a9db3567bed1e9ed690dd2d16554c4", + "data": { + "inGameID": 38199 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38199, + "versions": [ + "a3" + ] + }, + { + "chartID": "d640eb327d7b8ba2f79b3bb2723902aac1d0a089", + "data": { + "inGameID": 38199 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38199, + "versions": [ + "a3" + ] + }, + { + "chartID": "dc6fc169d487b4cc48d76627e2bdd1eede715cd4", + "data": { + "inGameID": 38200 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38200, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9033f3fb90e606754c0ca6b8bd3cce87023100e5", + "data": { + "inGameID": 38200 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38200, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0269001cd1034413298c253636bbdbf951c48224", + "data": { + "inGameID": 38200 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38200, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bad2a29a249e9fe369ffd5020adc8f0b247f7edb", + "data": { + "inGameID": 38200 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38200, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b85f80d74bb4a3edaec589915c29aa3b20653f37", + "data": { + "inGameID": 38200 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38200, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2feec4d47302e393a2bdd4fb9e4517617a5b399f", + "data": { + "inGameID": 38200 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38200, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "531081830c08ed69c5e860d3b6650e892c1a19ac", + "data": { + "inGameID": 38200 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38200, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c39b0a158d51a14b525b5197f32754ae8e980bbe", + "data": { + "inGameID": 38201 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38201, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1d103ee86ad3764a3025155c001fed33c86468a4", + "data": { + "inGameID": 38201 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38201, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4a0bc98f85dc60082e51d5245fac32f7c03d01df", + "data": { + "inGameID": 38201 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38201, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "44b5b20b518132df6a8528dcd937fe04aeefcc12", + "data": { + "inGameID": 38201 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38201, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "356779622afd6a148c8ff03ad68293703499947b", + "data": { + "inGameID": 38201 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38201, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "81ed43f4f35c4ad39a86864190de1a5dd6cad188", + "data": { + "inGameID": 38201 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38201, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8a6794ac4c151c9487f0aaca8accf5757d77df71", + "data": { + "inGameID": 38201 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38201, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "05348e0d61f252b32672b6a90f8b9e0488cc026e", + "data": { + "inGameID": 38202 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38202, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9aa4dbd8ed74e17ff72bcee19ca7ba8d22139a46", + "data": { + "inGameID": 38202 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38202, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ae9dc045c83ea80362b7765b14988ec461155e46", + "data": { + "inGameID": 38202 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38202, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ef8a4a8f7e202c704a5b8c97a004c0ec032dd2e5", + "data": { + "inGameID": 38202 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38202, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6553efe2b176f22cbe2d52e739e86250974f9755", + "data": { + "inGameID": 38202 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38202, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2df0ca0c95acc8fc250ae327198c64ef81f9039e", + "data": { + "inGameID": 38202 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38202, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "475ec9f06a3728139f43b60efa99e5ef81512c58", + "data": { + "inGameID": 38202 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38202, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "708302c33ff6a8fc8107ba758cf7ea10391f038c", + "data": { + "inGameID": 38203 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38203, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "53de2fe5a74ab4322e2075e79dc265c0a5d59f4b", + "data": { + "inGameID": 38203 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38203, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a4b0f82be797034f1e11705b64774e8ba73ca88b", + "data": { + "inGameID": 38203 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38203, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f61ca06685524cdf3739ab6e582dfc88c29cce9", + "data": { + "inGameID": 38203 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38203, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8cea2e04deec4282a59baf3f97a3bc5e1ff1a496", + "data": { + "inGameID": 38203 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38203, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "93e419fe807e2b50b568fc2b1a01d9e787b5ee57", + "data": { + "inGameID": 38203 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38203, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "72eb794f95c7cf526e0fb0c069d6749b54c35501", + "data": { + "inGameID": 38203 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38203, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f0c1ab32a0def1b7a7468ba65079fdab31cd19bf", + "data": { + "inGameID": 38204 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38204, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ebf3cf8d14bec62164bfc32ed5dabfb438a12ee6", + "data": { + "inGameID": 38204 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38204, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6a6696dcff9fe4fb94ccdff27784f66a94217509", + "data": { + "inGameID": 38204 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38204, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a9fb1d90f7c49de81f4a7ee780e8d2b084debb64", + "data": { + "inGameID": 38204 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38204, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f919ad7b723cb36709aad2c01e39cb7f99effdc", + "data": { + "inGameID": 38204 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38204, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b767acf5bacc356cf38a9be1bfbc7a436e593392", + "data": { + "inGameID": 38204 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38204, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d1f2983f8339babfb86f7513bfe07c2e291cabe7", + "data": { + "inGameID": 38204 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38204, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f7629788f656769b9d975b447aae2d583b2a03f5", + "data": { + "inGameID": 38205 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38205, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fcbad48a09453d2c0b284a18e36b79773e1a3798", + "data": { + "inGameID": 38205 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38205, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3a66bb2ce7d38a7fef1fa8e3d881568ed12346ba", + "data": { + "inGameID": 38205 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38205, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6fa3261ba8b6446f943290c6ab0110d8fa41cfa4", + "data": { + "inGameID": 38205 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38205, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5b14e15ad8cf3a9eb756170445b440a1540f225a", + "data": { + "inGameID": 38205 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38205, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4f28a2dbbe373c6260ab6b3860b8e9e56d454ba6", + "data": { + "inGameID": 38205 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38205, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e641b8271688bc31eed18c653faec2f9939c2db9", + "data": { + "inGameID": 38205 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38205, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a1c578a16eeda2c1780e06d6ed04289447e88044", + "data": { + "inGameID": 38205 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38205, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "66fa5ee286acaec77f7530ec36b0b59646775ad2", + "data": { + "inGameID": 38205 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38205, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8938a99ccdf3ee03674456105188f4c82aac3b1f", + "data": { + "inGameID": 38206 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38206, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c7ce1739bad89266911087b092ac4a4f05426c73", + "data": { + "inGameID": 38206 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38206, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6743e987edd59f3257d4f6c8bf7dd5ae2684192b", + "data": { + "inGameID": 38206 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38206, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "676d4699fdb99f617b90155f6a85aa5f918c5715", + "data": { + "inGameID": 38206 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38206, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "031fead8d016a38a06351e240ab906657b97379a", + "data": { + "inGameID": 38206 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38206, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b2ec2ca9b1f3186ba5c0aadfaecf06656197a88c", + "data": { + "inGameID": 38206 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38206, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1bad795ead0ab540a53a1afec19d7d4f53e5512b", + "data": { + "inGameID": 38206 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38206, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c8441a009dad9df22203eb25d2f9b1371d29f732", + "data": { + "inGameID": 38207 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38207, + "versions": [ + "a3" + ] + }, + { + "chartID": "9ff5d4d081c901c700b541e57d19c6c972f28dde", + "data": { + "inGameID": 38207 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38207, + "versions": [ + "a3" + ] + }, + { + "chartID": "327798603aa173044eabdf50e2147aaa22cf343d", + "data": { + "inGameID": 38207 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38207, + "versions": [ + "a3" + ] + }, + { + "chartID": "b37f947110a30092d89b5475b036c6043fa9f5e3", + "data": { + "inGameID": 38207 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38207, + "versions": [ + "a3" + ] + }, + { + "chartID": "8f1a5d0cced072406f9de62a79bea4aac7d5c58b", + "data": { + "inGameID": 38207 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38207, + "versions": [ + "a3" + ] + }, + { + "chartID": "eb81599dd58731b1ca39033e9b1c1a09f58a3fdb", + "data": { + "inGameID": 38207 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38207, + "versions": [ + "a3" + ] + }, + { + "chartID": "9d23e93564f506d90b61319671670de8220ee3cb", + "data": { + "inGameID": 38207 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38207, + "versions": [ + "a3" + ] + }, + { + "chartID": "414158969cd7873b52a5598ae82c1c9ccf9e8b5d", + "data": { + "inGameID": 38207 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38207, + "versions": [ + "a3" + ] + }, + { + "chartID": "9952d95ce71881e207a7a7dc6529d438ecb917f0", + "data": { + "inGameID": 38207 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38207, + "versions": [ + "a3" + ] + }, + { + "chartID": "8c3e7e9a1dbf351bc3d0d245907d4804d535aab3", + "data": { + "inGameID": 38208 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38208, + "versions": [ + "a3" + ] + }, + { + "chartID": "7bc7cc085ba797b0598a60c3946ee04457cd3960", + "data": { + "inGameID": 38208 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38208, + "versions": [ + "a3" + ] + }, + { + "chartID": "d7957414febdca902182a10c10f6d5853bd4ca0b", + "data": { + "inGameID": 38208 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38208, + "versions": [ + "a3" + ] + }, + { + "chartID": "7175a75f662ba9c27729eb82271b1e94b61a6f20", + "data": { + "inGameID": 38208 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38208, + "versions": [ + "a3" + ] + }, + { + "chartID": "66310b5561571bc50793211a004f3a78f2318488", + "data": { + "inGameID": 38208 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38208, + "versions": [ + "a3" + ] + }, + { + "chartID": "c5d20980cab7d4ca4c522752d69b36fed6e8e3c1", + "data": { + "inGameID": 38208 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38208, + "versions": [ + "a3" + ] + }, + { + "chartID": "896eb3d028985d6c53c8bac69b30b34798ccf816", + "data": { + "inGameID": 38208 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38208, + "versions": [ + "a3" + ] + }, + { + "chartID": "01bd85be89d190bec5dc058830f66266985561aa", + "data": { + "inGameID": 38209 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 38209, + "versions": [ + "a3" + ] + }, + { + "chartID": "6cc951faf11bd3a3c2307bec112fc17497f1ae04", + "data": { + "inGameID": 38209 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38209, + "versions": [ + "a3" + ] + }, + { + "chartID": "3ad4ccccf0c0d763f1ff39a7dc432f8a56edc966", + "data": { + "inGameID": 38209 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38209, + "versions": [ + "a3" + ] + }, + { + "chartID": "66a1fd52db25bc90b01193f9a4ed1fcf2c94d080", + "data": { + "inGameID": 38209 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38209, + "versions": [ + "a3" + ] + }, + { + "chartID": "e42c2347bee4928431cf617b89b95ca417e048ad", + "data": { + "inGameID": 38209 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38209, + "versions": [ + "a3" + ] + }, + { + "chartID": "f02851d614631e3311ef3f935a8b77147d527dc7", + "data": { + "inGameID": 38209 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38209, + "versions": [ + "a3" + ] + }, + { + "chartID": "30940a03f02490325eeb2e38aac8bced3fd56b64", + "data": { + "inGameID": 38209 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38209, + "versions": [ + "a3" + ] + }, + { + "chartID": "447ad3a9421459801ea1c82ead899fd7b90b002e", + "data": { + "inGameID": 38210 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38210, + "versions": [ + "a3" + ] + }, + { + "chartID": "482ac608ddb5fc86d2602765d171d03bb4d37043", + "data": { + "inGameID": 38211 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38211, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "83ce9aea64eff2952370fd38781d0e42304bb94d", + "data": { + "inGameID": 38211 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38211, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "91946b3396b20a9b6657033c3bbc60c28c004edc", + "data": { + "inGameID": 38211 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38211, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f3b5b8ee6059e148ab0b31b9db3142fc68c1505b", + "data": { + "inGameID": 38211 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38211, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "152c4adc2d4c4b97699c8ae7713d19f5837c9c12", + "data": { + "inGameID": 38211 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38211, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a59167acea544eb6140feca3f4d1a9b8f22e029e", + "data": { + "inGameID": 38211 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38211, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "269d576d19fb47c3e0575e95da4999498fd701a8", + "data": { + "inGameID": 38211 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38211, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c181465ede0303af10d3dceac880105eb66189ab", + "data": { + "inGameID": 38211 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38211, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6f10a6ce68df783fbcbba2757416e05d372b6ea1", + "data": { + "inGameID": 38211 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38211, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bdd4864c2f15fec9c7a401b0e9c0da10ea78ac45", + "data": { + "inGameID": 38212 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38212, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "911462985b712439e5f7cc0b995949ce79046487", + "data": { + "inGameID": 38212 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38212, + "versions": [ + "konaste" + ] + }, + { + "chartID": "478ec04b1716dab3c9ee451fc1771387141ac106", + "data": { + "inGameID": 38212 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38212, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "db688e3583e44a2bc97b599bf2267fe6ef09d235", + "data": { + "inGameID": 38212 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38212, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ea84635f924db76005826ec6a72c2acf7e532465", + "data": { + "inGameID": 38212 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38212, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4d182c4d70b1e711c142e58ac5e89cd858319409", + "data": { + "inGameID": 38212 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38212, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "83dc1f5efbe15ccffb78118cd70787b6b5e8741f", + "data": { + "inGameID": 38212 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38212, + "versions": [ + "konaste" + ] + }, + { + "chartID": "d60c9ab45fb23b90cbd2300b0a79627384716b1b", + "data": { + "inGameID": 38212 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38212, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "848eca95ad56077aef4f2839fdf995d61fd5e6f6", + "data": { + "inGameID": 38212 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38212, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d7140ecfb8b1fcc22dafc43e163d28c9dc0a3ce", + "data": { + "inGameID": 38213 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38213, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8f0db61a039007a1e5ab09d41668c5663349bcf4", + "data": { + "inGameID": 38213 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38213, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fff2a7619ee525a866f7062ba7ede5cd75a03fab", + "data": { + "inGameID": 38213 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38213, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b782d6727b2f50c739e2efce010e2b8742abc4d4", + "data": { + "inGameID": 38213 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38213, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2a535d13889a6cfce9b455e3ebc1146a90193ffd", + "data": { + "inGameID": 38213 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38213, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a808399300e2466895bd355c239dcf14a59d6805", + "data": { + "inGameID": 38213 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38213, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "98d026f2c8097d611293fdbf8817f6f16aeec8de", + "data": { + "inGameID": 38213 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38213, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c499b87adb42c2b3b444d97deaa58f43248f38b6", + "data": { + "inGameID": 38213 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38213, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aeb3bf91d513c12cbed1b84f7c5ad883890c0d47", + "data": { + "inGameID": 38213 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38213, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aae328bf60e1c29cb84ebf1751272b09cad9bccf", + "data": { + "inGameID": 38214 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38214, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "40e2fe38baad0d0aa7fdf27cc456dc2a111c5fc4", + "data": { + "inGameID": 38214 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38214, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "08d3b2a83d521727f61a92e53383f9c2b95636a6", + "data": { + "inGameID": 38214 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38214, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aec8c305f711d0cedee126f42768f98ad212def0", + "data": { + "inGameID": 38214 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38214, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c7b15f2482332f7c4feb3e33b06b6dc389c08e37", + "data": { + "inGameID": 38214 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38214, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aaec8a72f79941dacd97fe909bfbf8fe12fa5aca", + "data": { + "inGameID": 38214 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38214, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "361c5f5d99ce329063ffb5e90e98118c1cc4a54c", + "data": { + "inGameID": 38214 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38214, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7f06f54196fea314f2006deda633be0ca0d634b1", + "data": { + "inGameID": 38214 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38214, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "547c3f69d242a523b8a25cd93255a7fd37e36ff9", + "data": { + "inGameID": 38214 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38214, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1e36933a25282d988b7c3d46c48cbe1f6416a6a3", + "data": { + "inGameID": 38215 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38215, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c1259087581669540332df2184c24bd26a17dbcd", + "data": { + "inGameID": 38215 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38215, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d9934cf7fda93dcf7546219510fb85a72811e8c7", + "data": { + "inGameID": 38215 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38215, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b2a6493733474f34b7c95637014521384a15b62e", + "data": { + "inGameID": 38215 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38215, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "435b109ead5e4d055daf65d0419fb2df1697a5bd", + "data": { + "inGameID": 38215 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38215, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6639a861a1f9fbfbb0ba8d5b83def94c7fc72d5e", + "data": { + "inGameID": 38215 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38215, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "92f5ec2b7581c3cd37a0e73a83dc631dc84e64db", + "data": { + "inGameID": 38215 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38215, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "855fe87e5b15c3d180367e3459805a853ed4a3e2", + "data": { + "inGameID": 38215 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38215, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bb0fbb95aeced10ba3b727c8c0f89d9c9c193de7", + "data": { + "inGameID": 38215 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38215, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "18c25bfb3476b42c1793121f45d60f6b7f0da99f", + "data": { + "inGameID": 38216 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38216, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3b4b7174aa3e0d523fb69c05969545f09d86f1b3", + "data": { + "inGameID": 38216 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38216, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5e6bb37ffdcdabbf2b5bc24ca178794dab4b4fb5", + "data": { + "inGameID": 38216 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38216, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "86ef409f722d03039f305289ff2a13b3ce357512", + "data": { + "inGameID": 38216 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38216, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d2b6f99b6cc288f99e3ff48ca2622b3c15616548", + "data": { + "inGameID": 38216 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38216, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "373964e67142747cdb8514f85677272224cb4fdc", + "data": { + "inGameID": 38216 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38216, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "758dc13ea09ae3c86a7eb49708a76356e3cce8a0", + "data": { + "inGameID": 38216 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38216, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "09b7955ec592d9259cad747914ce94a9f6d44581", + "data": { + "inGameID": 38216 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38216, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6454f258796ae99b62dd3738e3b524d397ae5504", + "data": { + "inGameID": 38216 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38216, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9257629bd301ffea3af8fb0246a98925dbf2bc70", + "data": { + "inGameID": 38217 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38217, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f648f0a759f839d97ba7b74052407017afb99b5d", + "data": { + "inGameID": 38217 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38217, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ea1e2ccb2551b2337953a84a6e457ac97f063741", + "data": { + "inGameID": 38217 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38217, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "df69e148ab862dc949ab2ac049f6c80d83b774a7", + "data": { + "inGameID": 38217 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38217, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "244859b45a8a473bf284cabe4e0cf0e5ca345f96", + "data": { + "inGameID": 38217 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38217, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c97ee57e2c7fd22fcf33e015394904fffadb820d", + "data": { + "inGameID": 38217 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38217, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "290159d36c3aa04a23f2ed13ffd7e8314a49a604", + "data": { + "inGameID": 38217 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38217, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "574517d142f2c4ccfb5af5e96e6d9e5e0e10d750", + "data": { + "inGameID": 38217 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38217, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "da5f8f7e8e8f31c6491e4fd9369e9c35cf2d8b03", + "data": { + "inGameID": 38217 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38217, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "82527f86a772bb51dfa7c55c693bcb68e2fe846c", + "data": { + "inGameID": 38218 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38218, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "35be36dad8748042ea081c0cea3ad487d4eea3d9", + "data": { + "inGameID": 38218 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "19", + "levelNum": 19, + "playtype": "DP", + "songID": 38218, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c05cb67bb8964a302a95d5712e99ccee49aa5852", + "data": { + "inGameID": 38218 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38218, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "55bf46259250dbaa714609a5676be87a325a3cdd", + "data": { + "inGameID": 38218 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38218, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "44e999e649d771058d8d83a39eafd714ccd0a0b3", + "data": { + "inGameID": 38218 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38218, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2849ab7457e9432073a8584d374d6f15914e270d", + "data": { + "inGameID": 38218 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38218, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9b6f0c33a8ee4a77c20ceb5301885085d20b29f6", + "data": { + "inGameID": 38218 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "19", + "levelNum": 19, + "playtype": "SP", + "songID": 38218, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8961785318ddcf585097bf452db2138856942bf1", + "data": { + "inGameID": 38218 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38218, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5c007fa1634dfd90b541ce1e51365f9ccf604715", + "data": { + "inGameID": 38218 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38218, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b70c9e1fb3aa2836a52b6f723e4a2647a1727307", + "data": { + "inGameID": 38219 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38219, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "624a513d69cd613061d6b7ad079fe3ec4450cbac", + "data": { + "inGameID": 38219 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38219, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2354a00c29532d734f5b8665e9a741eca279ac79", + "data": { + "inGameID": 38219 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38219, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a0552df1dcb9b213f7d8da4f5f6b9222496ebfdd", + "data": { + "inGameID": 38219 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38219, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4988d919214b784c5510de3dd71f226a292e4e6f", + "data": { + "inGameID": 38219 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38219, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7d6943c810b51b92ab7eb16af81d26cf15ea1006", + "data": { + "inGameID": 38219 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38219, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eeb1b3f3bce433b479af34bd5adea24e5d446ce0", + "data": { + "inGameID": 38219 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38219, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0c1581a34390ee24996e48a5cdaddce5c1f76901", + "data": { + "inGameID": 38219 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38219, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "86070984049324ac559a001ff21daf0a182f4b40", + "data": { + "inGameID": 38219 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38219, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b71c1967607894b8104ff1f5aff6d5741cf957f5", + "data": { + "inGameID": 38220 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38220, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bc4c6a9065ace26535e3ef27991ab38405eab2e2", + "data": { + "inGameID": 38220 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38220, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4feb6da2a9d2e5dca35bdfb671accc09bfa3daa6", + "data": { + "inGameID": 38220 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38220, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "de36a7a0ac48def4ea5178908fbe28c9b754357c", + "data": { + "inGameID": 38220 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38220, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "889fd0d685b3607df9279110914677a99d3ed493", + "data": { + "inGameID": 38220 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38220, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d1ec65952b903deb8ab69236368c4ceee29d3171", + "data": { + "inGameID": 38220 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38220, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "108f44b304dad6fa5f39f39b04f7df1e58ebd310", + "data": { + "inGameID": 38220 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38220, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9c5487da69bac20ea87b51a787b96f9bef9e3a84", + "data": { + "inGameID": 38220 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38220, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bda6848b66624c2956a093902392c202844dd3ee", + "data": { + "inGameID": 38220 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38220, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "21403813d21946df57905c40862b938f709a734a", + "data": { + "inGameID": 38221 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38221, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ea03ffbb2f9f8b4b3ad00d0ca8d2568a16cea9d7", + "data": { + "inGameID": 38221 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38221, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6b8fa90664da8953f0f94461a582cf74e6b55984", + "data": { + "inGameID": 38221 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38221, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "31007d117634026397153f6b7732e92e0a485824", + "data": { + "inGameID": 38221 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38221, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8dd1cb122121d497a8df7c03cd8fae842867b3c0", + "data": { + "inGameID": 38221 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38221, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "72436602abb20583f655c15d66f47acb4a722848", + "data": { + "inGameID": 38221 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38221, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a1fd9fb0f24f94c04ebc6b49a9d7f6a5125af605", + "data": { + "inGameID": 38221 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38221, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "37480a9efbd85c6fddb574477aa6712dd6c8875d", + "data": { + "inGameID": 38222 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38222, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "abf32a943592368503bb4a5130c13c7dd072d3ee", + "data": { + "inGameID": 38222 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38222, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "32a31cc310907b42fff4634d6edc937a50b7b6b8", + "data": { + "inGameID": 38222 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38222, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6dec5df06860beaf879d2d35233465539f00c45e", + "data": { + "inGameID": 38222 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38222, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7048a2a308675dbfa66904a5d2db3f7b2d3bf5a0", + "data": { + "inGameID": 38222 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38222, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "acb99775a37463e49d0195cb490ebbbb8f06b4e4", + "data": { + "inGameID": 38222 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38222, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bf0f4bc8e9a856de0984494d5f2518144ec11fea", + "data": { + "inGameID": 38222 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38222, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fdee066db4b34a3668a533b801a29122633995b8", + "data": { + "inGameID": 38222 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38222, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "33ddd2d13b436be5c5b01c61761f7fbc4d83f73f", + "data": { + "inGameID": 38222 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38222, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e460a84e83e59bfd86ddfe7b4b653c5b2135484f", + "data": { + "inGameID": 38223 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38223, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8fec71474b48fc21bfcd04f2730fc2b282861a2f", + "data": { + "inGameID": 38223 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38223, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ec58aa85e723a99464764d02a4446a84e5bea3b8", + "data": { + "inGameID": 38223 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38223, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d739186b7286977254f4570429cfc7e4728a857", + "data": { + "inGameID": 38223 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38223, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bad86273cc44904772f1d722edec79d82c762b97", + "data": { + "inGameID": 38223 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38223, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2fdd718ecbecdf4b88d03dde878dc13531c48ef4", + "data": { + "inGameID": 38223 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38223, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4b2092ba351af10d0260b0a09cf282d6b8eec00e", + "data": { + "inGameID": 38223 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38223, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "430333734d97af8fbafe92bfde323ac1305255a3", + "data": { + "inGameID": 38230 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38230, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e714c2f8fd645d03587e6432287a814cd091bf22", + "data": { + "inGameID": 38230 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38230, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f5b281495dce05af4acb6c5cf772824e8267ca7a", + "data": { + "inGameID": 38230 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38230, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4fc40dd4af404e7052746c98c8b851bfcb49ce86", + "data": { + "inGameID": 38230 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38230, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "add8bb0f0f530905ebb00637668dfb1b0a2e9fe0", + "data": { + "inGameID": 38230 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38230, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e273fa44891feb0cf107952347e1bf382ab6edbb", + "data": { + "inGameID": 38230 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38230, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9cbdb5e4906d020794c85224909262eca9417ddc", + "data": { + "inGameID": 38230 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38230, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "83adc37f0b8489835ad266a76773e51e64f6fc8a", + "data": { + "inGameID": 38231 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38231, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "21d55fd2a71c232ae0157e35d35dd780a08e3839", + "data": { + "inGameID": 38231 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38231, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "da0e9119807563b340903d1f7e5f18d30b56bc5d", + "data": { + "inGameID": 38231 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38231, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "caa6202f692fef98d955f02615232add21f5b1b7", + "data": { + "inGameID": 38231 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38231, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5001f34278e12d6b153830293d7ff8b6c2b2cc62", + "data": { + "inGameID": 38231 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38231, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5a2238147796c16933a11e3a797d8e65ec7f81c8", + "data": { + "inGameID": 38231 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38231, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aed8aab2347707aaf5d61c4ccd0234d8f6b89b28", + "data": { + "inGameID": 38231 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38231, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "870d66c027a1efa198e654e217f7d07039e06046", + "data": { + "inGameID": 38232 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38232, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3f20ce479a379b3652bde366eb576eb7e4d941eb", + "data": { + "inGameID": 38232 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38232, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6d6c9bf04335aa193aa4dedd2e72382fa2e897d1", + "data": { + "inGameID": 38232 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38232, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d0eaf8d4382737d2834fb3dff0286a06cdfab4b5", + "data": { + "inGameID": 38232 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38232, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7671b81b9b7fa2172c24b6e08f9a6da986f42f66", + "data": { + "inGameID": 38232 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38232, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "49bfb6884e8c3e6586f90cc5625de67eaee47351", + "data": { + "inGameID": 38232 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38232, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "848a4c19f354c1b3be1038d658020bf178ae8530", + "data": { + "inGameID": 38232 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38232, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8501b8263e21e94caa509c18de14b894203d6b48", + "data": { + "inGameID": 38233 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38233, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cd193445bb1cc7160dcd15c1def6b6932f96be97", + "data": { + "inGameID": 38233 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38233, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "af99666495b93b2eab7df3645df8b9e431690c8d", + "data": { + "inGameID": 38233 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38233, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1d19d39b39af4c852f68dd7987c5563cd578d56f", + "data": { + "inGameID": 38233 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38233, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "84df2593b38f289a553a104b4e1883cfaaf21b6d", + "data": { + "inGameID": 38233 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38233, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "35cc19456cec6e08a63aa730ab1de858b07456f0", + "data": { + "inGameID": 38233 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38233, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "371fb603a2821f4cca86f7c596b1624952b2ab81", + "data": { + "inGameID": 38233 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38233, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1b23701e4d99533d1b455f1b346061b929df3b8f", + "data": { + "inGameID": 38234 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38234, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "77d16ee562023d730cec0dd59cafd880fb15fe31", + "data": { + "inGameID": 38234 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38234, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "786339b55f0a1756ffbb2020acdddea8a7e0c677", + "data": { + "inGameID": 38234 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38234, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cc50d91700eb9feee0bd899d961b3a4ea66e5eae", + "data": { + "inGameID": 38234 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38234, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b3787624252796598da89650b5ebd26d8abcf037", + "data": { + "inGameID": 38234 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38234, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dc7bb6f2fe51b9bb73654fbfca65ab32dd3123dd", + "data": { + "inGameID": 38234 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38234, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b71ed40f554f465491ad8636b6b2c08e89ee3593", + "data": { + "inGameID": 38234 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38234, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8ba3222902981724ee671f671c1801cdfb00694a", + "data": { + "inGameID": 38235 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38235, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1626dd7e88d9ea6f745ade9f12aa073a7ba5f09b", + "data": { + "inGameID": 38235 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38235, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "efd58efa67cf4a2c135e9a9654ce8bedcb137ea6", + "data": { + "inGameID": 38235 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38235, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e42cdca6fbb691bb9a89b1e044a8044e532bc345", + "data": { + "inGameID": 38235 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38235, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "932f59bc075b81e69d2abf55f3a884b50687c884", + "data": { + "inGameID": 38235 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38235, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "20eb588e28bc1a24b88e6457c250754a6931762c", + "data": { + "inGameID": 38235 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38235, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8ff006c6513abca115f8232552e900c213e2333e", + "data": { + "inGameID": 38235 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38235, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e0956a6d3279384cd054894a9c1673e4737f37a8", + "data": { + "inGameID": 38236 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38236, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "352418a946e10dd4d93632733bbe65ce278d2d32", + "data": { + "inGameID": 38236 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38236, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "652d55ec0775148ac4e75e91cb1a2fc4d166c252", + "data": { + "inGameID": 38236 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38236, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d8390c238e087ceb6053c0e6ab577841eb5af853", + "data": { + "inGameID": 38236 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38236, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f524cffac7cdb6f6188a944f61f9087332047c3", + "data": { + "inGameID": 38236 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38236, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ddb1c9c4bf986d722afd96ea8761bc97e9c93aed", + "data": { + "inGameID": 38236 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38236, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d804bfe52687a949d251fc6ac8679b1e4befa7ca", + "data": { + "inGameID": 38236 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38236, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "878542c00d6d1fafe8b5b998f817330c890d4ce5", + "data": { + "inGameID": 38237 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38237, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d9cd711fc9916beda884ae4f20f79e368e3c9c68", + "data": { + "inGameID": 38237 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38237, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "81d9858773c07ea5f0dba96251376840a232a2af", + "data": { + "inGameID": 38237 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38237, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a374307223cc014081720b50907cc8bb09920b51", + "data": { + "inGameID": 38237 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38237, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "21e373554c24640bc5fb12444be97bba17bb3f78", + "data": { + "inGameID": 38237 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38237, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c7476bb4bdff8bc69a3764cecb5ce2a9ef8655ff", + "data": { + "inGameID": 38237 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38237, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6bf4f70caa3ba2b3905b737c5871217c89a5aea2", + "data": { + "inGameID": 38237 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38237, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8d2d763669138de949d1dbf3539eb76249f0d63b", + "data": { + "inGameID": 38238 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38238, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0acc63ae0ee2216f27a323b6364ced6bc53b7598", + "data": { + "inGameID": 38238 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38238, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dda69235c0813f90bb34afa1fa08b2a226ca0257", + "data": { + "inGameID": 38238 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38238, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "af5840f91ebbe67b23c069f863d433ec534c8a6a", + "data": { + "inGameID": 38238 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38238, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5e70c97e2c150d6c0d79aa3852d2a230c5f692e5", + "data": { + "inGameID": 38238 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38238, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "feca2947f0a82d5cea8a615e93f7848c93ef6166", + "data": { + "inGameID": 38238 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38238, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "72d1116f810ed06cabdb36d0e0e1cc99c2d12ec3", + "data": { + "inGameID": 38238 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38238, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6802617cbb68880ad90ae720ae825f333a04067a", + "data": { + "inGameID": 38240 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38240, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e6d4855de03101913438725f405095ab392475a6", + "data": { + "inGameID": 38240 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38240, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2bc113a38a867918807efdf512c6803cd94056e1", + "data": { + "inGameID": 38240 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38240, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "68860e8fbc94533d9e93c149c1418ee6457d1a51", + "data": { + "inGameID": 38240 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38240, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ddfbd80a0c2cc4820d6e270ea8f3176a9b2e7fe9", + "data": { + "inGameID": 38240 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38240, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9189b48cfa126dd7e0520605cbd94a72ad8f6f04", + "data": { + "inGameID": 38240 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38240, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "23b1dcc048ce37f2130a25ac1ffddc67f808a354", + "data": { + "inGameID": 38240 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38240, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4444cc13a02555738c2b7ae61512c068ecf3471d", + "data": { + "inGameID": 38241 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38241, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "90b5268c08ef83d2aa4bdd79182ec6b7b7fc470b", + "data": { + "inGameID": 38241 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38241, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e562c76cbeae4f6d017e255e1450de8383e80841", + "data": { + "inGameID": 38241 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38241, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b4f3cc6f78a83d8b4d52c3364d83a71ac50decb6", + "data": { + "inGameID": 38241 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38241, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2eb4db38c2d7f1550b58dfd75530ec4cbfc78761", + "data": { + "inGameID": 38241 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38241, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1d7ae9140d4ea1a6ece6c9898f4911d005e4517a", + "data": { + "inGameID": 38241 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38241, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7ebbe58e2d4c1e8ba2ef47852c76e59de6a736e3", + "data": { + "inGameID": 38241 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38241, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8c313cd2376b03e87259d36abf7f367692c920d7", + "data": { + "inGameID": 38242 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38242, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d5f9df4857c2c5535bad1ed9735bce5490fa378", + "data": { + "inGameID": 38242 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38242, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b9dc520bbc80870408a23f7c6ad2b22575c62719", + "data": { + "inGameID": 38242 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38242, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c923d805ee60d2c33bcba890c9a3daf2cf489423", + "data": { + "inGameID": 38242 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38242, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "891d714405a038857d24b4ce78e374bb6aa4ea43", + "data": { + "inGameID": 38242 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38242, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "31b182139e109031abedb815715f9ef69405bec6", + "data": { + "inGameID": 38242 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38242, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "01600081ced63eae8867ee5aa15e27fa4aa65287", + "data": { + "inGameID": 38242 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38242, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8ca6c3580e1e8e65c456365b9b34f0691419d919", + "data": { + "inGameID": 38243 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38243, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "782cfa18f9fcd80132a74f827512c8a4c7d5c3c1", + "data": { + "inGameID": 38243 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38243, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "07df1db2abd43cf09a04bbf985d21577c90d8fa1", + "data": { + "inGameID": 38243 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38243, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f2e2ce601705e6038dc69bdd38b8c6da8407e445", + "data": { + "inGameID": 38243 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38243, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "152d35a135ca937e62cfb23e141104ef1d6632a1", + "data": { + "inGameID": 38243 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38243, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6de33cd8731a98dba6740cc63c528709ce7bc423", + "data": { + "inGameID": 38243 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38243, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d1ff87f4bd07eb6a072e6a649b898f019e4876c5", + "data": { + "inGameID": 38243 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38243, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "93349eaa9cbf4f29a7fa0cba434a5732e4c1e01e", + "data": { + "inGameID": 38244 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38244, + "versions": [ + "a3" + ] + }, + { + "chartID": "0e72a96a069d0031b84a77833d24d3261ed28b98", + "data": { + "inGameID": 38244 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38244, + "versions": [ + "a3" + ] + }, + { + "chartID": "e37f2356ead77bb63046e1d064e9b24af626ecff", + "data": { + "inGameID": 38244 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38244, + "versions": [ + "a3" + ] + }, + { + "chartID": "7dff0dbdbd7c5584fe9f423fa98e46b43523c1bf", + "data": { + "inGameID": 38244 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38244, + "versions": [ + "a3" + ] + }, + { + "chartID": "fe4287d326227e9a68dbc0da254dc431ab16fc3d", + "data": { + "inGameID": 38244 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38244, + "versions": [ + "a3" + ] + }, + { + "chartID": "8a8e48a35d91aa8447c0dfb6aa7478201e9d604c", + "data": { + "inGameID": 38244 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38244, + "versions": [ + "a3" + ] + }, + { + "chartID": "bb00f338dc5f7c69765cee7a8d6649c10f2eac3f", + "data": { + "inGameID": 38244 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38244, + "versions": [ + "a3" + ] + }, + { + "chartID": "4edd48eb6afdf53d1b643d13c40fa59f0ea5fd9f", + "data": { + "inGameID": 38244 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38244, + "versions": [ + "a3" + ] + }, + { + "chartID": "fc753043ce8d798098e8d299ece26d2226908658", + "data": { + "inGameID": 38244 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38244, + "versions": [ + "a3" + ] + }, + { + "chartID": "d0d0d59f51d252e28b5d6bba84b52cacfec645c7", + "data": { + "inGameID": 38245 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38245, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dc281dd0f458205adf520e4966de690cc6ce0b5c", + "data": { + "inGameID": 38245 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38245, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "75e4b933418e86cdda4fbbfe3215bd918d38295b", + "data": { + "inGameID": 38245 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38245, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "af32b0ebd57c1ff4184f4e7ceb248729a9a1be76", + "data": { + "inGameID": 38245 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38245, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f777b00bffc1f5270a655ce172f393634edc2712", + "data": { + "inGameID": 38245 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38245, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fd1d5114a386a2e4743a0e0f0d83a5ffae14e3a6", + "data": { + "inGameID": 38245 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38245, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f0b892e3e28f72fd18c20fd6d17fe9c997576b56", + "data": { + "inGameID": 38245 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38245, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f447c0c3ca653f4c84ed19d16495df927a39fcd", + "data": { + "inGameID": 38246 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38246, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2a8b190c419d87362798811a45a957fa27e11a82", + "data": { + "inGameID": 38246 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38246, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2965fcb4134e36ad115fe9d16a443be2ac1f83d0", + "data": { + "inGameID": 38246 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38246, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "facc54a1a5da1356c83ba202b09d6c04b139c8e7", + "data": { + "inGameID": 38246 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38246, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "92b4804df607cfcf982cb76d4d894d40de86a4d4", + "data": { + "inGameID": 38246 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38246, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f6b2ee1f3cbae0271be912b174e5c46881c68015", + "data": { + "inGameID": 38246 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38246, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7d6dabe4f23858f62a0fbd6ef817b6a26ede327b", + "data": { + "inGameID": 38246 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38246, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e0c22ce181dab490a54fc68ddd2dbf82c336a18c", + "data": { + "inGameID": 38247 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38247, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "37b66762e877c30d6f67da1fd8588df9da84bdf4", + "data": { + "inGameID": 38247 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38247, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "66d2348bb814f66ed8e4a08b867fdfca0de1c6ef", + "data": { + "inGameID": 38247 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38247, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a918dd3a1996ecc1545a68864ccc657a6ae9aa1c", + "data": { + "inGameID": 38247 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38247, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "09a8a5c27da2078c0a3d854078bda5f2588ae6b2", + "data": { + "inGameID": 38247 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38247, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a01722c01b81b376c689790a42e4b3aef8eb873f", + "data": { + "inGameID": 38247 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38247, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "339cdecf8739a5e0b5b9f171d617c87599055034", + "data": { + "inGameID": 38247 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38247, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c3366689e168563956bd01dde82afaf8ad32d134", + "data": { + "inGameID": 38248 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38248, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fc25ad82e29337f83a70a650b7c1b2e21015cb25", + "data": { + "inGameID": 38248 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38248, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f2ed29bc549e9b5a3e886536651b927174625cdf", + "data": { + "inGameID": 38248 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38248, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8885318eaac31f7daebb6b28dfcbf52f94c1010e", + "data": { + "inGameID": 38248 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38248, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8c4420bd83e266fb2bb8448ad8b986bb4c46651c", + "data": { + "inGameID": 38248 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38248, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9a589b1fcaf89ae9022a67d364425113dd05dd8b", + "data": { + "inGameID": 38248 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38248, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "69ae6a71a42f7c4cbfeacb1db4ae40987d3d1fa6", + "data": { + "inGameID": 38248 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38248, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "06c313e6fe2ff24ee180b847212134cc62d78e7c", + "data": { + "inGameID": 38249 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38249, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9e1f33d26394e8d59c5a3dfbc6be9e0669727da6", + "data": { + "inGameID": 38249 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38249, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6d2f0cbe2c4520de5cc5cb61684d59ae3fe21e11", + "data": { + "inGameID": 38249 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38249, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8ed61f89982127bd4d658b0392b55a7763b3672", + "data": { + "inGameID": 38249 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38249, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4bf2e8a098fe643c8a5b8ce4b8fd313c6e71f167", + "data": { + "inGameID": 38249 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38249, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a1852b01fa29f21362d56814dc96f8338493ad4b", + "data": { + "inGameID": 38249 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38249, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fb045747bfc0dc6d444e32936744c7916c8ea249", + "data": { + "inGameID": 38249 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38249, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "265c022a7533cc49132d8a4a2399e85d81ff4a15", + "data": { + "inGameID": 38250 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38250, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6d878c347dd05b1e49fae1626efbf1ea9717658b", + "data": { + "inGameID": 38250 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38250, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "63fd324a7be1346658c0d0995681a9d325c41471", + "data": { + "inGameID": 38250 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38250, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9ea46f584ec8593f408ed2ece9a05826e319cb3f", + "data": { + "inGameID": 38250 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38250, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b960302fa336bf6e679ed9b677edd99c70f7c9f9", + "data": { + "inGameID": 38250 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38250, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "625cef6861c0def363e32e0d8996ecc156169d12", + "data": { + "inGameID": 38250 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38250, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2578bc0399195571b68ffa4392e9b1ba014a99be", + "data": { + "inGameID": 38250 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38250, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7e3ed05472f91ef1288a06d4e40a6abd9dd00ebb", + "data": { + "inGameID": 38251 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38251, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d8399545b48b7d458b1aa0487e6393e1a93dcb57", + "data": { + "inGameID": 38251 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38251, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4303ff3106fee8d2e95a15aa66acfc4f20b889d0", + "data": { + "inGameID": 38251 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38251, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e264abb1667a179878a7ed15627c7a0ab7c39236", + "data": { + "inGameID": 38251 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38251, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "09c42b6f5056d89db942a226febc953918889302", + "data": { + "inGameID": 38251 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38251, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0f53062828e321c53b841da7888939b02ce3273e", + "data": { + "inGameID": 38251 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38251, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8ea5e42b2aa49b6e3b44523cf035ff3d0e91a274", + "data": { + "inGameID": 38251 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38251, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cd77ff6e795d62da127c8622b13866ba83e3adb1", + "data": { + "inGameID": 38252 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38252, + "versions": [ + "a3" + ] + }, + { + "chartID": "c8e0af004bc842dd43ec6d07c8592be2da3a34a2", + "data": { + "inGameID": 38252 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38252, + "versions": [ + "a3" + ] + }, + { + "chartID": "23ef0a57facf59caecec6542451d50226ba2b9bf", + "data": { + "inGameID": 38252 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38252, + "versions": [ + "a3" + ] + }, + { + "chartID": "23e364b8d8ea4d85fdc17c62b7872cc91a27a626", + "data": { + "inGameID": 38252 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38252, + "versions": [ + "a3" + ] + }, + { + "chartID": "8dd06ee55c4cafa5ee3e8bd5a4a034adab5f51bf", + "data": { + "inGameID": 38252 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38252, + "versions": [ + "a3" + ] + }, + { + "chartID": "97b5cbf5cbd3aaf8c619302565b7fa7ed2911263", + "data": { + "inGameID": 38252 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38252, + "versions": [ + "a3" + ] + }, + { + "chartID": "9b481969a80beaf2d16192f688383a02de6d55a1", + "data": { + "inGameID": 38252 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38252, + "versions": [ + "a3" + ] + }, + { + "chartID": "6f04413d520a46652762eed4670a503bb6252620", + "data": { + "inGameID": 38253 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38253, + "versions": [ + "a3" + ] + }, + { + "chartID": "48ffa26fdb1c696554ee6ac891746250d5df568d", + "data": { + "inGameID": 38253 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38253, + "versions": [ + "a3" + ] + }, + { + "chartID": "7b7769e73548c043c0d2177c2873daa2f29a8cf3", + "data": { + "inGameID": 38253 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38253, + "versions": [ + "a3" + ] + }, + { + "chartID": "715c8e99be614e5d32da048bf63de20212b7b66e", + "data": { + "inGameID": 38253 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38253, + "versions": [ + "a3" + ] + }, + { + "chartID": "0acd1934057b53e203c7dd16aa562d1796cdb97e", + "data": { + "inGameID": 38253 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38253, + "versions": [ + "a3" + ] + }, + { + "chartID": "31c367a04a2bb7f1b6f65fff1bf654fcf1112e37", + "data": { + "inGameID": 38253 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38253, + "versions": [ + "a3" + ] + }, + { + "chartID": "398d0e912d24a38259bdcec3fd83cec91e09192f", + "data": { + "inGameID": 38253 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38253, + "versions": [ + "a3" + ] + }, + { + "chartID": "50941a71892825e78a46a7a15a33fe454e8baa84", + "data": { + "inGameID": 38254 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38254, + "versions": [ + "a3" + ] + }, + { + "chartID": "89de92814e4969723cecbd03973179bf2082d70f", + "data": { + "inGameID": 38254 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38254, + "versions": [ + "a3" + ] + }, + { + "chartID": "4d170506cba7b22d82b8267af1ad528fc156a1e4", + "data": { + "inGameID": 38254 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38254, + "versions": [ + "a3" + ] + }, + { + "chartID": "f0640385ba45588277c36d97c090dce00aff84db", + "data": { + "inGameID": 38254 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38254, + "versions": [ + "a3" + ] + }, + { + "chartID": "4715e51bc6f38fb7fe806655e2965e9431c33133", + "data": { + "inGameID": 38254 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38254, + "versions": [ + "a3" + ] + }, + { + "chartID": "36e303538131206b1bff9e07eefc86dd862ceea3", + "data": { + "inGameID": 38254 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38254, + "versions": [ + "a3" + ] + }, + { + "chartID": "9c3c9886cfd5073c08e01187274f9926a4c4c786", + "data": { + "inGameID": 38254 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38254, + "versions": [ + "a3" + ] + }, + { + "chartID": "ea32a378746d66398ca3879a582356d9eb63002b", + "data": { + "inGameID": 38255 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38255, + "versions": [ + "a3" + ] + }, + { + "chartID": "4a4896893f49a5ce726e071903c17200007aaea7", + "data": { + "inGameID": 38255 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38255, + "versions": [ + "a3" + ] + }, + { + "chartID": "96121b0e0bbeb9b4f23186f0861b6fb64aefbe8f", + "data": { + "inGameID": 38255 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38255, + "versions": [ + "a3" + ] + }, + { + "chartID": "7964425a7c143fa97fedc108260ea2a98ceca09e", + "data": { + "inGameID": 38255 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38255, + "versions": [ + "a3" + ] + }, + { + "chartID": "55b33b089d5316c3133cdeb88f228fd37bfba715", + "data": { + "inGameID": 38255 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38255, + "versions": [ + "a3" + ] + }, + { + "chartID": "ce7c187c86674d55f047f673662a3d1920e66835", + "data": { + "inGameID": 38255 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38255, + "versions": [ + "a3" + ] + }, + { + "chartID": "676844cf0b51a2f016808b74e7103bead00496f0", + "data": { + "inGameID": 38255 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38255, + "versions": [ + "a3" + ] + }, + { + "chartID": "9353a4e5c7d4cce64bc36e03b44a637d67577289", + "data": { + "inGameID": 38255 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38255, + "versions": [ + "a3" + ] + }, + { + "chartID": "997658b509d31678e8b60a9f21a1443f61be5650", + "data": { + "inGameID": 38255 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38255, + "versions": [ + "a3" + ] + }, + { + "chartID": "2adddd37d166caacdcdb5c1f6b25c979f0e66310", + "data": { + "inGameID": 38256 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38256, + "versions": [ + "a3" + ] + }, + { + "chartID": "1627fdc097adcfadf7c36a7e3f05e21da9b00c77", + "data": { + "inGameID": 38256 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38256, + "versions": [ + "a3" + ] + }, + { + "chartID": "34c22c74e30acb25eb404c73c10926940049485c", + "data": { + "inGameID": 38256 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38256, + "versions": [ + "a3" + ] + }, + { + "chartID": "8ad723cf41d6407848f57e6c96fd9c3c9a484afa", + "data": { + "inGameID": 38256 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38256, + "versions": [ + "a3" + ] + }, + { + "chartID": "31266f8f959fb8074ed46166c6fcb5ee3116ba6b", + "data": { + "inGameID": 38256 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38256, + "versions": [ + "a3" + ] + }, + { + "chartID": "d49eb83e7a3142423fc7fe59e8873a3eaa3c92b9", + "data": { + "inGameID": 38256 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38256, + "versions": [ + "a3" + ] + }, + { + "chartID": "4805bd6bc54f33b22fd1f7a5ad890bb09c81eb25", + "data": { + "inGameID": 38256 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38256, + "versions": [ + "a3" + ] + }, + { + "chartID": "9f441c3ad2a13e362d022598d9dfa8713d2a4a83", + "data": { + "inGameID": 38256 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38256, + "versions": [ + "a3" + ] + }, + { + "chartID": "4282969261aa0b6c997fa6d4720122426408052a", + "data": { + "inGameID": 38256 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38256, + "versions": [ + "a3" + ] + }, + { + "chartID": "3049019d765a14ef5fd712fe953ff3a87387f924", + "data": { + "inGameID": 38257 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38257, + "versions": [ + "a3" + ] + }, + { + "chartID": "2e23bdc01df054ec52d120fca06a72b0d15f28a0", + "data": { + "inGameID": 38257 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38257, + "versions": [ + "a3" + ] + }, + { + "chartID": "6caf8e14cf76adab9130502ad6892e09a0d7f046", + "data": { + "inGameID": 38257 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38257, + "versions": [ + "a3" + ] + }, + { + "chartID": "4cc6ecf922ed7d39847e59edca496e729b72aa0d", + "data": { + "inGameID": 38257 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38257, + "versions": [ + "a3" + ] + }, + { + "chartID": "08487a712330ffd7e57ac483d09e01d3a867311d", + "data": { + "inGameID": 38257 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38257, + "versions": [ + "a3" + ] + }, + { + "chartID": "ef02e0bde898922b4b710514bb33bd2aac0ce30b", + "data": { + "inGameID": 38257 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38257, + "versions": [ + "a3" + ] + }, + { + "chartID": "a72171443327302d55df40f7d79cf7bec9adb512", + "data": { + "inGameID": 38257 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38257, + "versions": [ + "a3" + ] + }, + { + "chartID": "727f5b04811bdb5270be347c4f815cdb234cd35b", + "data": { + "inGameID": 38258 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38258, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8774fadc3ade9c6bae8b8042d9ca1687787d4e13", + "data": { + "inGameID": 38258 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38258, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "58abba6920498efcdc91b2fa716c496b5f552d65", + "data": { + "inGameID": 38258 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38258, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c0c72a18d718a70ef1ad4e772e229af228e4f17d", + "data": { + "inGameID": 38258 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38258, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9a1389d717f050eba3f9911a6206a71e33c6cd73", + "data": { + "inGameID": 38258 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38258, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9bbce7e96f0c480f1f908a3e5e24b0c2031778f9", + "data": { + "inGameID": 38258 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38258, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bb4982412008fd23a6ca38598d8b2434e59e79ed", + "data": { + "inGameID": 38258 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38258, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8e5d5aba23a752a159fd70dc6b497cd4ee3a3d29", + "data": { + "inGameID": 38259 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38259, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "379d560b466e3840ecc47a3b5b27d277b0b5bc52", + "data": { + "inGameID": 38259 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38259, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a33dcc3e9032d9136258f9e6cb37bc6b0c0fad64", + "data": { + "inGameID": 38259 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38259, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3cc4b32ba65339e7b77ddaad4ec59ed5f0c0830e", + "data": { + "inGameID": 38259 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38259, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2bceb75e3245b733fc33723163c1c5368c4fd490", + "data": { + "inGameID": 38259 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38259, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3253089ce0f39303743b01c5ac789ba4293ba679", + "data": { + "inGameID": 38259 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38259, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c39f9b3478dc0397615a8f67409f5d7fe4fe482a", + "data": { + "inGameID": 38259 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38259, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "293f0dc44d052cf6c8bbf7b83a59c08dfcccf85a", + "data": { + "inGameID": 38260 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38260, + "versions": [ + "a3" + ] + }, + { + "chartID": "c23d235e73891d352d2652cced0f8b69c71ce432", + "data": { + "inGameID": 38260 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38260, + "versions": [ + "a3" + ] + }, + { + "chartID": "3936ac254cfdf3d86e1a17b7fec027fedeaff6a2", + "data": { + "inGameID": 38260 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38260, + "versions": [ + "a3" + ] + }, + { + "chartID": "6f2c25d52c3baf25f539e19898f97e634e0bd05c", + "data": { + "inGameID": 38260 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38260, + "versions": [ + "a3" + ] + }, + { + "chartID": "bb69bdcf1602fc35dd51e149ad89e23c652d64ae", + "data": { + "inGameID": 38260 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38260, + "versions": [ + "a3" + ] + }, + { + "chartID": "a2c89962e06138b6c7bd67940756e8bf8a5c7a44", + "data": { + "inGameID": 38260 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38260, + "versions": [ + "a3" + ] + }, + { + "chartID": "ff4483c885ec1300f2d41f7090121b44da894820", + "data": { + "inGameID": 38260 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38260, + "versions": [ + "a3" + ] + }, + { + "chartID": "7ea93977fa325bac338450cbacca6c786a0c916f", + "data": { + "inGameID": 38260 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38260, + "versions": [ + "a3" + ] + }, + { + "chartID": "d5e0d51aa1b61258236bfaa35f8dc026dde6da41", + "data": { + "inGameID": 38260 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38260, + "versions": [ + "a3" + ] + }, + { + "chartID": "562d85441cf711524dc3be6ea607803b50b37f53", + "data": { + "inGameID": 38261 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38261, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9803a2522a74fda08a6005f63a170c40925f5b92", + "data": { + "inGameID": 38261 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38261, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7c14698d4de158bd474fd340ee9108ab41b5ec37", + "data": { + "inGameID": 38261 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38261, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6965bca00aae9f0da5d0fbc14afea0fb12e6c1d6", + "data": { + "inGameID": 38261 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38261, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4a26f223b47178df6eba20451b28f445fcd11148", + "data": { + "inGameID": 38261 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38261, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "060706d7b42e873dfff114a6bc0e00de46e43f29", + "data": { + "inGameID": 38261 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38261, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4149d3eac12726cc0873dbfbb901682b34bb0888", + "data": { + "inGameID": 38261 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38261, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7348cd356e26fbedc2f0c960e8d2252c656d2b00", + "data": { + "inGameID": 38261 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38261, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7572f97b9fa1db588812cf0e29ac63eb0cec8bf3", + "data": { + "inGameID": 38261 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38261, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bceb43daa032ca1772b1e0024e394c47f3528a08", + "data": { + "inGameID": 38262 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38262, + "versions": [ + "a3" + ] + }, + { + "chartID": "8073aa233c89839fcdafc6c69e890590b7aa4461", + "data": { + "inGameID": 38262 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38262, + "versions": [ + "a3" + ] + }, + { + "chartID": "d98491c2261ea29aefaf2704512dc38a5ed03409", + "data": { + "inGameID": 38262 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38262, + "versions": [ + "a3" + ] + }, + { + "chartID": "f8b959e8b8ce1c2ebecce0d6bde6132817c9d920", + "data": { + "inGameID": 38262 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38262, + "versions": [ + "a3" + ] + }, + { + "chartID": "eb201570f4226dafc005e90989d8f51ffbc1e0d1", + "data": { + "inGameID": 38262 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38262, + "versions": [ + "a3" + ] + }, + { + "chartID": "7acdb8bb5a95c12aee5eb546d9723d2ce4073d1d", + "data": { + "inGameID": 38262 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38262, + "versions": [ + "a3" + ] + }, + { + "chartID": "e8bb49c962af8e25e15144d4c8e28dda23703d83", + "data": { + "inGameID": 38262 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38262, + "versions": [ + "a3" + ] + }, + { + "chartID": "e20e227ff7b7b7b2f85c4ff6b04bea97a109a75e", + "data": { + "inGameID": 38262 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38262, + "versions": [ + "a3" + ] + }, + { + "chartID": "76cffadacb4309d32a3def14cc7c81bdb35276f4", + "data": { + "inGameID": 38262 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38262, + "versions": [ + "a3" + ] + }, + { + "chartID": "14bef22622974f4e7bf30398f1bff99d757f9f4c", + "data": { + "inGameID": 38263 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38263, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "75667f400276f8982562b056c72fd8914b4b8e02", + "data": { + "inGameID": 38263 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38263, + "versions": [ + "konaste" + ] + }, + { + "chartID": "caede516b38e1bb247d95f7d390ad205d90980a4", + "data": { + "inGameID": 38263 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38263, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "beae913e811290dcd5da916eee7acad39e31c2cb", + "data": { + "inGameID": 38263 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38263, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6963e70c4f38455360bdbca7f4a2f01f33efe6dc", + "data": { + "inGameID": 38263 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38263, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "12df5d777a231d24604baa8af074b7f3a1b6eddd", + "data": { + "inGameID": 38263 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38263, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cbef574d038749d0890757e08a0639100f80ba6b", + "data": { + "inGameID": 38263 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38263, + "versions": [ + "konaste" + ] + }, + { + "chartID": "1e6c57c7ff4403b1be24aa966c4cb79ad3ca621b", + "data": { + "inGameID": 38263 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38263, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "adf93444ab81ae15dd50120f75f8787a1eaa99d9", + "data": { + "inGameID": 38263 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38263, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "29c5c87180a877075087dcbcfe8b52b564a79605", + "data": { + "inGameID": 38264 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38264, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f652746055243a828dfaf50b8665544e2034f761", + "data": { + "inGameID": 38264 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38264, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "54851b1d20722a5526ecee737fa18540b2ad9889", + "data": { + "inGameID": 38264 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38264, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7952e3621038f90adaefbe4dd67a5336a25462a0", + "data": { + "inGameID": 38264 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38264, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "04f2bf60a2bdf6c0890c5d8e46b4f3b517b86104", + "data": { + "inGameID": 38264 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38264, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce8bf9e4018efc0132588ab2adb1edd6ead10783", + "data": { + "inGameID": 38264 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38264, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ec1e1fecdb77e414c37e06b6777ab018c0b727fe", + "data": { + "inGameID": 38264 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38264, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "07024738e6c26408a82d31c37c32906907f38619", + "data": { + "inGameID": 38265 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38265, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "75fd0eee4b25ee4f673843c6dd26de1a8b7ff2f9", + "data": { + "inGameID": 38265 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38265, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "606f26595b33a8f7ec0f51a65e6ff2d4c79272ae", + "data": { + "inGameID": 38265 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38265, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b3231b213171f4255c860a6bd89471c9704b94ac", + "data": { + "inGameID": 38265 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38265, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1e086a1164d7b308f698d8a5f0e65609dcd30b6f", + "data": { + "inGameID": 38265 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38265, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "86d0a2b49b05bf3bb48b80da94fe360cc53ab356", + "data": { + "inGameID": 38265 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38265, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "191073b1d99c8bf8f21bfa63b2754c3fb17f3753", + "data": { + "inGameID": 38265 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38265, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3f83a51e0b75950c7fddb51415e4d84cde4c888b", + "data": { + "inGameID": 38265 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38265, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "89c3825e1cbb928e48ff0bab5b629b9ead5c986f", + "data": { + "inGameID": 38265 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38265, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c97bf55b40ea9537e24069d970d6108e7b6d5e70", + "data": { + "inGameID": 38266 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38266, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c9f8b467d53191a2d50c1c612b7034d00b3619f9", + "data": { + "inGameID": 38266 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38266, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "92db173eb831b47821fd37ab28849958803986a1", + "data": { + "inGameID": 38266 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38266, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f20b25e8950f7519b358175551d67883c67c07cc", + "data": { + "inGameID": 38266 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38266, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cc7cb5961bde6ee4798751d0209274a58e70d9e2", + "data": { + "inGameID": 38266 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38266, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ba433ad929c0e88568acedfa89df57b5140df8df", + "data": { + "inGameID": 38266 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38266, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ca4169cee75da7594e498b44213bc26b94206359", + "data": { + "inGameID": 38266 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38266, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "edd4c6c7f64b385902377045873e8ed4962a0a34", + "data": { + "inGameID": 38267 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38267, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9feb4eb04858da1d41ee038c4808a6a55e6e801a", + "data": { + "inGameID": 38267 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38267, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "90420f9b297d4b9fac51a94a16a7770bfa6ae9fa", + "data": { + "inGameID": 38267 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38267, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "04b90d564a9a950a19d635c5127c78e6d28a9f6e", + "data": { + "inGameID": 38267 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38267, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9e4ebdd8cc97a38d5a078bb7910b4f64d0b92df5", + "data": { + "inGameID": 38267 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38267, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1b167fac7e1623bed9f80c36d7a717e33e8110c9", + "data": { + "inGameID": 38267 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38267, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3bd169923d0dc64d2cbb4139513b8fccf606de93", + "data": { + "inGameID": 38267 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38267, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0f306a84be2081f19609667724cb4bb5305f6ea3", + "data": { + "inGameID": 38267 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38267, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c2d6c1e37d1bd35b3943a9ac63d2fe2aeef03f3e", + "data": { + "inGameID": 38267 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38267, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "749b7f9a8022490de959792f72cb9fd284535209", + "data": { + "inGameID": 38268 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38268, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "81f8965e2724b840502ba09fa9b08e6a7967e0f3", + "data": { + "inGameID": 38268 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38268, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b6ba78a525a2d9a4eed88445aee525c6122ba86d", + "data": { + "inGameID": 38268 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38268, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "233493cef8c0d03a97cc16271f6bbbbcb6d06d39", + "data": { + "inGameID": 38268 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38268, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eb0eb9956beaa0bc24aca1f8f72578bad8a71e0d", + "data": { + "inGameID": 38268 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38268, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7b6db50699a9a1f217114154da33d93801f8e5f1", + "data": { + "inGameID": 38268 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38268, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f6563c7589e2918e6b6cb0658f5707a1ae8341d2", + "data": { + "inGameID": 38268 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38268, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "af5930460dddeb69f3fc85fd63e69fc37eb04911", + "data": { + "inGameID": 38269 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38269, + "versions": [ + "a3" + ] + }, + { + "chartID": "05fbfc52e59d63f43a0688b9744953806d04d717", + "data": { + "inGameID": 38269 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38269, + "versions": [ + "a3" + ] + }, + { + "chartID": "c1564734aea29fd31451e513c6045aa4e6a239f9", + "data": { + "inGameID": 38269 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38269, + "versions": [ + "a3" + ] + }, + { + "chartID": "933b2f504d1eeb9745ec4832f5ed635230610ed5", + "data": { + "inGameID": 38269 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38269, + "versions": [ + "a3" + ] + }, + { + "chartID": "7c03aa4baa6e385e4abcdf48ed6892d75ae16f12", + "data": { + "inGameID": 38269 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38269, + "versions": [ + "a3" + ] + }, + { + "chartID": "ea4d20df1b0e60e12c4c337cdee1544b3cabc9aa", + "data": { + "inGameID": 38269 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38269, + "versions": [ + "a3" + ] + }, + { + "chartID": "68cea57a32b9aff9cfd4af4c4764504e33722a04", + "data": { + "inGameID": 38269 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38269, + "versions": [ + "a3" + ] + }, + { + "chartID": "483c9482d50764437de2dd65f952e077af7cad63", + "data": { + "inGameID": 38270 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38270, + "versions": [ + "a3" + ] + }, + { + "chartID": "dbd3f922534d68550544eb0136064611313f0db6", + "data": { + "inGameID": 38270 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38270, + "versions": [ + "a3" + ] + }, + { + "chartID": "39588b000bb745197c37897af0a636f64c2d9317", + "data": { + "inGameID": 38270 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38270, + "versions": [ + "a3" + ] + }, + { + "chartID": "56e5e0f23f5a5a9f02de0513e798a1d50b74b50a", + "data": { + "inGameID": 38270 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38270, + "versions": [ + "a3" + ] + }, + { + "chartID": "48f33ad7b4a6b07e1ee4fadff07d70915be79864", + "data": { + "inGameID": 38270 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38270, + "versions": [ + "a3" + ] + }, + { + "chartID": "ccdb217015264b9081858431274a5791337ad20a", + "data": { + "inGameID": 38270 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38270, + "versions": [ + "a3" + ] + }, + { + "chartID": "9b75987d128918f9644c78ac1db4b038d1f09602", + "data": { + "inGameID": 38270 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38270, + "versions": [ + "a3" + ] + }, + { + "chartID": "d86ba8238097ae8fe4b1a74b8b74bde3c3568298", + "data": { + "inGameID": 38271 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38271, + "versions": [ + "a3" + ] + }, + { + "chartID": "a59372a4b1854661526bf8af3196c98cf353926a", + "data": { + "inGameID": 38271 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38271, + "versions": [ + "a3" + ] + }, + { + "chartID": "30a6cfca01413ef4dc15ebe7970044112c8af15b", + "data": { + "inGameID": 38271 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38271, + "versions": [ + "a3" + ] + }, + { + "chartID": "6d3cab8a6a116334bf626ffd77495bb972328918", + "data": { + "inGameID": 38271 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38271, + "versions": [ + "a3" + ] + }, + { + "chartID": "34451bf1b274102bf66ceef07ecd4845168e608e", + "data": { + "inGameID": 38271 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38271, + "versions": [ + "a3" + ] + }, + { + "chartID": "6cf467d28ec74586a84f47dda4c1e2323616c6a1", + "data": { + "inGameID": 38271 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38271, + "versions": [ + "a3" + ] + }, + { + "chartID": "a237693d2603b345a0811635c1c2f668a2f11523", + "data": { + "inGameID": 38271 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38271, + "versions": [ + "a3" + ] + }, + { + "chartID": "f45e7405353cd8803fd40b4bddd017d98c00a62c", + "data": { + "inGameID": 38272 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38272, + "versions": [ + "a3" + ] + }, + { + "chartID": "b67d6f398970bd56e8849321a91458245eb0a2a0", + "data": { + "inGameID": 38272 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38272, + "versions": [ + "a3" + ] + }, + { + "chartID": "8f32deb1e3e3164852b02db25d40c5e78db4dbc6", + "data": { + "inGameID": 38272 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38272, + "versions": [ + "a3" + ] + }, + { + "chartID": "ee2db0b1f0dd2fc52715796ed1292c4a38773427", + "data": { + "inGameID": 38272 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38272, + "versions": [ + "a3" + ] + }, + { + "chartID": "529ead466d356130588cc6cc2b20ec9760625fa5", + "data": { + "inGameID": 38272 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38272, + "versions": [ + "a3" + ] + }, + { + "chartID": "8d18a1914649e65db4b994b029013e360d8ff807", + "data": { + "inGameID": 38272 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38272, + "versions": [ + "a3" + ] + }, + { + "chartID": "898741035d7f126bd6deacab6e19f6af9e692147", + "data": { + "inGameID": 38272 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38272, + "versions": [ + "a3" + ] + }, + { + "chartID": "545eb91e3ae09a9fec93ca44a14030a1c3499fd2", + "data": { + "inGameID": 38273 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38273, + "versions": [ + "a3" + ] + }, + { + "chartID": "7936be8082404ca412feb884905a2273a2eeec6b", + "data": { + "inGameID": 38273 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38273, + "versions": [ + "a3" + ] + }, + { + "chartID": "84f74f61cb0f1b9c9235614dbf976acd946b5e77", + "data": { + "inGameID": 38273 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38273, + "versions": [ + "a3" + ] + }, + { + "chartID": "48203e50b0c64ef5031411b0d0d1f651a1f646bf", + "data": { + "inGameID": 38273 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38273, + "versions": [ + "a3" + ] + }, + { + "chartID": "6aaf8f48246f1c10f77486b6e1a65d30a1cb0fdf", + "data": { + "inGameID": 38273 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38273, + "versions": [ + "a3" + ] + }, + { + "chartID": "6243934bf44766b6755811e2ae1f0e80254794a6", + "data": { + "inGameID": 38273 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38273, + "versions": [ + "a3" + ] + }, + { + "chartID": "73384c7933fd077a35964fc0cab2f8a842f29206", + "data": { + "inGameID": 38273 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38273, + "versions": [ + "a3" + ] + }, + { + "chartID": "dcb812f58fb8731e3c83595123368170a8da7eb4", + "data": { + "inGameID": 38274 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38274, + "versions": [ + "a3" + ] + }, + { + "chartID": "3c3ed94281e5ec31bab468b1d07ee29c9d2c0f7f", + "data": { + "inGameID": 38274 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38274, + "versions": [ + "a3" + ] + }, + { + "chartID": "6b13179333286c1c94ef1b1598316d66f5f3f157", + "data": { + "inGameID": 38274 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38274, + "versions": [ + "a3" + ] + }, + { + "chartID": "7b549fffbcbcd87a7b48246b11d974e85ac2b3db", + "data": { + "inGameID": 38274 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38274, + "versions": [ + "a3" + ] + }, + { + "chartID": "9ca8777945ba26f3f4e81c636a73476d0b4b721f", + "data": { + "inGameID": 38274 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38274, + "versions": [ + "a3" + ] + }, + { + "chartID": "f01ac9f47892ea6b6164035d1a0fb2cf96bd4368", + "data": { + "inGameID": 38274 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38274, + "versions": [ + "a3" + ] + }, + { + "chartID": "6b46bda15ce3154234188d0c870e2e573eacefc0", + "data": { + "inGameID": 38274 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38274, + "versions": [ + "a3" + ] + }, + { + "chartID": "75cba1e7fd8915d8af6321d7c2bedd356a3fdd49", + "data": { + "inGameID": 38275 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38275, + "versions": [ + "a3" + ] + }, + { + "chartID": "062c123a1d2e833789d00d87e13e0a52d99f04cb", + "data": { + "inGameID": 38275 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38275, + "versions": [ + "a3" + ] + }, + { + "chartID": "add8563e378794b8f0cdd0fd192f5b0fef990f91", + "data": { + "inGameID": 38275 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38275, + "versions": [ + "a3" + ] + }, + { + "chartID": "24f2a11d025d4d43014de73fc2c4378b806950cc", + "data": { + "inGameID": 38275 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38275, + "versions": [ + "a3" + ] + }, + { + "chartID": "9acf258ee411d6dc5b548baaeac57b2bac76681b", + "data": { + "inGameID": 38275 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38275, + "versions": [ + "a3" + ] + }, + { + "chartID": "0ced8e602f0951ec82148f8de0182726ffbed9c2", + "data": { + "inGameID": 38275 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38275, + "versions": [ + "a3" + ] + }, + { + "chartID": "799de181d35fd802bd7b49d396bd31613cb955e1", + "data": { + "inGameID": 38275 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38275, + "versions": [ + "a3" + ] + }, + { + "chartID": "8195f7ecefee578c14bc65f6c5d27fc46d208afc", + "data": { + "inGameID": 38276 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38276, + "versions": [ + "a3" + ] + }, + { + "chartID": "a4c5903713afa9a977d8655d6c1f0d3b543e5dda", + "data": { + "inGameID": 38276 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38276, + "versions": [ + "a3" + ] + }, + { + "chartID": "bc4c3f5e60515b12c6fb11f454ec1c5823649981", + "data": { + "inGameID": 38276 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38276, + "versions": [ + "a3" + ] + }, + { + "chartID": "8f79a20c202201404978c8bb0722de259b35499a", + "data": { + "inGameID": 38276 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38276, + "versions": [ + "a3" + ] + }, + { + "chartID": "c7ababdb89ef98ad42a2ff66f3bb777305ba4697", + "data": { + "inGameID": 38276 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38276, + "versions": [ + "a3" + ] + }, + { + "chartID": "4664932725eb617aed71c122d477fadfb6d61fbb", + "data": { + "inGameID": 38276 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38276, + "versions": [ + "a3" + ] + }, + { + "chartID": "8774119545e55b8ba06bde76fb713a5fe4e53ede", + "data": { + "inGameID": 38276 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38276, + "versions": [ + "a3" + ] + }, + { + "chartID": "31c2ef1715f6d717f910d7b57ab876ef00ac11b9", + "data": { + "inGameID": 38277 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38277, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "25529e0f3364c27d15f8274609feaf6bc7195294", + "data": { + "inGameID": 38277 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38277, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4125d8824d5cf64891daabea8c069e7b05144062", + "data": { + "inGameID": 38277 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38277, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dffc0996d75aa12fe15b8b488799e6f90f3fd0bf", + "data": { + "inGameID": 38277 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38277, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ddc4be9cd1c860eaf4e39b3cea631363ae55c772", + "data": { + "inGameID": 38277 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38277, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1827b21244bd632b112277b982062c35aa5b9ebe", + "data": { + "inGameID": 38277 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38277, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fe494c8c1cd5cde6f2952f253e333a27553a8464", + "data": { + "inGameID": 38277 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38277, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "703a16dc099b731dee734a06c2590bc573e17e08", + "data": { + "inGameID": 38278 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38278, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dce6470113035acb0802cad747a5f9d5c325c3c2", + "data": { + "inGameID": 38278 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38278, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "07570e507724452290bf9e029cc27353efd18cc6", + "data": { + "inGameID": 38278 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38278, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4058f3b5e81440790204c14eb4116d47c261864b", + "data": { + "inGameID": 38278 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38278, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f1ca9008edfb3c7768fab3934b206597d1c0c001", + "data": { + "inGameID": 38278 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38278, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "09dd3feabad08d0f4c647dc80fd9ddc904729de2", + "data": { + "inGameID": 38278 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38278, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5be40349d21d86fd1928e63c237f32290dbe95e1", + "data": { + "inGameID": 38278 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38278, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "822eb5135c8fbe109c568dd59982a88b63b11ab8", + "data": { + "inGameID": 38278 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38278, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "80c8eccabb3a84db190cef4dbd01021e4b69bc40", + "data": { + "inGameID": 38278 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38278, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff4827de2f4a5712ebc6eb8d30aebaa8150c6704", + "data": { + "inGameID": 38279 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38279, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f77f1dbfbc7c53d28ad553a56222b0a9fdde8d3d", + "data": { + "inGameID": 38279 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38279, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ec55790ac6364d8b6172846a81b803d135c37ee3", + "data": { + "inGameID": 38279 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38279, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5a649258b9387fc4e6594f9dfffc0b92bf494f3e", + "data": { + "inGameID": 38279 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38279, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cde2fbbae9567c2cc2bd1899c3cb83350ddfa818", + "data": { + "inGameID": 38279 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38279, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1119f2541dff26f3613192549c35f0f1ca0d0df0", + "data": { + "inGameID": 38279 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38279, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "519ed54cf2126e22225dba7f255b9fef9f7759ff", + "data": { + "inGameID": 38279 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38279, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a7b63521cc885c71b6efaf924ec96912f147396b", + "data": { + "inGameID": 38280 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38280, + "versions": [ + "a3" + ] + }, + { + "chartID": "d00c3fb3b3986ffb3f6e18e05d2ca36bb54676f3", + "data": { + "inGameID": 38280 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38280, + "versions": [ + "a3" + ] + }, + { + "chartID": "23c09e477bccbbf1aae812e08a5a0c1cebfbeb2f", + "data": { + "inGameID": 38280 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38280, + "versions": [ + "a3" + ] + }, + { + "chartID": "834ca2cab0a4a59617756c18627f3758af095b19", + "data": { + "inGameID": 38280 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38280, + "versions": [ + "a3" + ] + }, + { + "chartID": "c33422091ec27c4f3d5570f177fcb5022b53ccb1", + "data": { + "inGameID": 38280 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38280, + "versions": [ + "a3" + ] + }, + { + "chartID": "f845c430493ed0e091967bc620ef3352da4e5cc7", + "data": { + "inGameID": 38280 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38280, + "versions": [ + "a3" + ] + }, + { + "chartID": "0b326e2fb0f81bc445e5bfe6fade58627fae253a", + "data": { + "inGameID": 38280 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38280, + "versions": [ + "a3" + ] + }, + { + "chartID": "c4b1325f6e46568a6369ec88711eebe49fd81342", + "data": { + "inGameID": 38280 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38280, + "versions": [ + "a3" + ] + }, + { + "chartID": "2a96dee4a5db5911f8d6bb3e0e1b567ddebb09cb", + "data": { + "inGameID": 38280 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38280, + "versions": [ + "a3" + ] + }, + { + "chartID": "75ef812f531e5c6eb977e5235003a54bd229ecf3", + "data": { + "inGameID": 38281 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38281, + "versions": [ + "a3" + ] + }, + { + "chartID": "47bcae12a17c2e145c400341974b3868b17d1ea7", + "data": { + "inGameID": 38281 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38281, + "versions": [ + "a3" + ] + }, + { + "chartID": "4fdb1c6a4f270f452fbffe247af01877cc46f09e", + "data": { + "inGameID": 38281 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38281, + "versions": [ + "a3" + ] + }, + { + "chartID": "7106073ee9aaef6601e27970b6ea7031d317e39c", + "data": { + "inGameID": 38281 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38281, + "versions": [ + "a3" + ] + }, + { + "chartID": "750336559f27f21dc77e0bd054552d38e64ee24d", + "data": { + "inGameID": 38281 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38281, + "versions": [ + "a3" + ] + }, + { + "chartID": "d794f2f73b4406668bcc33d2c2d3d9b7ddd7cb15", + "data": { + "inGameID": 38281 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38281, + "versions": [ + "a3" + ] + }, + { + "chartID": "b75a5c42a26a088d6ddfba3a58f3aecc65363828", + "data": { + "inGameID": 38281 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38281, + "versions": [ + "a3" + ] + }, + { + "chartID": "cb97000e20ac79eddc7f1fd6a916d213ff71379d", + "data": { + "inGameID": 38281 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38281, + "versions": [ + "a3" + ] + }, + { + "chartID": "ab6847d7ef1f00271804acfb775a876733e3afba", + "data": { + "inGameID": 38281 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38281, + "versions": [ + "a3" + ] + }, + { + "chartID": "b24a780d34786d45005db90d77c94f9cb58b740f", + "data": { + "inGameID": 38282 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38282, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "268ec5a4ed50c61b2a7d583c4397a399bfaa95c6", + "data": { + "inGameID": 38282 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38282, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "79122ad4c2a744fdbdb89304f7b8bfe25e0f5438", + "data": { + "inGameID": 38282 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38282, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e64aab15b70159d76b3e963f25e28615410b774e", + "data": { + "inGameID": 38282 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38282, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8264c009ab724c41f66a2f54ff0ee434e7cd9406", + "data": { + "inGameID": 38282 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38282, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8563d53c0297a48ef4915a22786a1d0ca24e74c4", + "data": { + "inGameID": 38282 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38282, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "95a4267dcd957ce29d926d5a4a2130ef262bc407", + "data": { + "inGameID": 38282 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38282, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "211f43e643e14668eef60f037c4b47f59317f4e0", + "data": { + "inGameID": 38282 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38282, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b51a47ee9c42549dab9f5e184b3471eb957b16d3", + "data": { + "inGameID": 38282 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38282, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f627ab7893a08e7f8909301a2739dbb43c4693c9", + "data": { + "inGameID": 38283 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38283, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c693c7440b5057f4fbf8c4792882ec998a9c7833", + "data": { + "inGameID": 38283 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38283, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e7c1c443e1101d3bfc0df4f9cdb441b08d690ada", + "data": { + "inGameID": 38283 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38283, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "152bd6bee5c0b2152369eaa1f656268fc9fb6146", + "data": { + "inGameID": 38283 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38283, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "edef052cbf2f54b6ef5a6316e37f1516a620ad8f", + "data": { + "inGameID": 38283 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38283, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b5180546905bd7d5a5bc76c0d7ae49edd31cead8", + "data": { + "inGameID": 38283 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38283, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d0e2055cdddfd6b5a0ca4fbec825d891331cf39a", + "data": { + "inGameID": 38283 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38283, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "df1ec493033aaf33e14541a8345490ddf2b4dfeb", + "data": { + "inGameID": 38284 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38284, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a761632a99f8d4464b03bb1b835ed915c6374ab8", + "data": { + "inGameID": 38284 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38284, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3ae0f518b0f30f5a860b3dc0e93e5569873db51a", + "data": { + "inGameID": 38284 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38284, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c7b8fdc24f4e10ec8f7f5113e8f720ad948eb799", + "data": { + "inGameID": 38284 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38284, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ac5894c48f6d30ccfc0575eaab4c354a1cd33e6", + "data": { + "inGameID": 38284 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38284, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9fee79d99ed7396491146c34651cb78dd9b292a1", + "data": { + "inGameID": 38284 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38284, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fdbde6379b8ffac0cc0e1a25d25e3ee22728869b", + "data": { + "inGameID": 38284 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38284, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3262efcb1a160c27da099d703e572ff165b2225a", + "data": { + "inGameID": 38284 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38284, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fbb65d35c4f75531a8fe466ee5c37117c73db5ae", + "data": { + "inGameID": 38284 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38284, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "40f66ec825e22d9596cf003a0bc638edb7d44e4e", + "data": { + "inGameID": 38285 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38285, + "versions": [ + "a3" + ] + }, + { + "chartID": "df62252eec663f1646b250e20a15c9802f07b165", + "data": { + "inGameID": 38285 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38285, + "versions": [ + "a3" + ] + }, + { + "chartID": "dc324483b104a5a7a4431d15043ced0d58498c48", + "data": { + "inGameID": 38285 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38285, + "versions": [ + "a3" + ] + }, + { + "chartID": "7841649917af06fc60ceacd32395bbf17c6752cb", + "data": { + "inGameID": 38285 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38285, + "versions": [ + "a3" + ] + }, + { + "chartID": "9f7fa709dfe9ec4c2628ec71bc82c6409be188c7", + "data": { + "inGameID": 38285 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38285, + "versions": [ + "a3" + ] + }, + { + "chartID": "ca9581e5987c6e804ed2e6a24844cb153f94e5cb", + "data": { + "inGameID": 38285 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38285, + "versions": [ + "a3" + ] + }, + { + "chartID": "c2af52d06c7236701fdea6d2738fd890311afc9a", + "data": { + "inGameID": 38285 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38285, + "versions": [ + "a3" + ] + }, + { + "chartID": "2fd92549b6cd17a9af04c6874caf60624f1bd3f1", + "data": { + "inGameID": 38285 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38285, + "versions": [ + "a3" + ] + }, + { + "chartID": "f65c3545e9df00e12c9ed4874a2920e96d1367ae", + "data": { + "inGameID": 38285 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38285, + "versions": [ + "a3" + ] + }, + { + "chartID": "8aaf218b8d1b4d6e0aeef534c7e01a80c7bfab2b", + "data": { + "inGameID": 38286 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38286, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "62f22e2302f79e128e1aca9288c66c332ea1fb0c", + "data": { + "inGameID": 38286 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38286, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce3e83c625025d485144fb214c221e5b91183f80", + "data": { + "inGameID": 38286 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38286, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f8225d374fae55eeadb54270edfa51f8c784fb2e", + "data": { + "inGameID": 38286 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38286, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b7766f9b62fcabd562b0fe5d9c4337de5a249191", + "data": { + "inGameID": 38286 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38286, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a84339a694997d0c159e41076345383515872c43", + "data": { + "inGameID": 38286 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38286, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "64a3359f04f306e0f1313e6d3913477f2f293ca0", + "data": { + "inGameID": 38286 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38286, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "77c4c6652572c34b960d8c4e875c6ea536b53488", + "data": { + "inGameID": 38287 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38287, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3712788aa2a0a26101692b0b869024ede5f04a6e", + "data": { + "inGameID": 38287 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38287, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce064b5ed57fbd3a56d7fdc1a2fdb12ac48bdbcb", + "data": { + "inGameID": 38287 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38287, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "033c1c8e311d60473da9ef708cc45b1372a27b4c", + "data": { + "inGameID": 38287 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38287, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "59e63098412308e2ab5844f954171453b3779808", + "data": { + "inGameID": 38287 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38287, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8e41b5c06cf10ffd066c84240e6b157dd7791c02", + "data": { + "inGameID": 38287 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38287, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "197827b08e6b25c2dd55ee2a02124dca37036c1e", + "data": { + "inGameID": 38287 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38287, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a6a2b773b736876e5cbda66ad736b7c6c332b132", + "data": { + "inGameID": 38288 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38288, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f0ff9427c4e78e3c9d9bc825356759785418f4c", + "data": { + "inGameID": 38288 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38288, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "768da068c64fe5218de46c0abf14102985599718", + "data": { + "inGameID": 38288 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38288, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c1948d681d2ba9c379a302873777ef5bda0398a5", + "data": { + "inGameID": 38288 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38288, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8beefec1a4ad5ec21d5f57b48f6d83327796f252", + "data": { + "inGameID": 38288 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38288, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9dadd356ed5b4cb01b4d8bddb1a9f6bb47ced1b7", + "data": { + "inGameID": 38288 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38288, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e55f23be4effae2fa2030ed60ba128434b387f7d", + "data": { + "inGameID": 38288 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38288, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "909837c93edfd085f727ccd542b17d7eaed941e4", + "data": { + "inGameID": 38289 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38289, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b191c60020fd8fab2d93da0c8214c84c8b48fe72", + "data": { + "inGameID": 38289 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38289, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "20a4a1fddb02931936303c10510419098e904128", + "data": { + "inGameID": 38289 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38289, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2137e3295e4767ba3f8d8883162b9c92215156a9", + "data": { + "inGameID": 38289 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38289, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f4e55da6e5178608d9b00b7cd33efa96e009c0d7", + "data": { + "inGameID": 38289 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38289, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5bf8f0559791ebf1505783bbc7b682e31226539d", + "data": { + "inGameID": 38289 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38289, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7a56f49ece9539130ee2350b9793ef2bf1027515", + "data": { + "inGameID": 38289 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38289, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "167a7ce1daf167f28ef983979c5785e6f6c6f823", + "data": { + "inGameID": 38290 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38290, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c2d86b3cb615289628ed781dd148b0e9ecf8e0ea", + "data": { + "inGameID": 38290 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38290, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "08c0ea285ccb1676379f4288d4af7daa05a5a39c", + "data": { + "inGameID": 38290 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38290, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bac9b6f797a4b6a8baf7917729a698395d5d6fdb", + "data": { + "inGameID": 38290 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38290, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fb8683de4e1fe3589517b433460d58d93750049b", + "data": { + "inGameID": 38290 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38290, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f719592f6b19308ad83e90e488e2ded969ce656e", + "data": { + "inGameID": 38290 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38290, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3dc438c1e72c88efffc96ea8fe524a925c21c651", + "data": { + "inGameID": 38290 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38290, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "81e19414f97ebca8ff60862e77dd1f85bd9447c9", + "data": { + "inGameID": 38291 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38291, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f0204da9b535c1a7f3e3cb36ea5b777081130536", + "data": { + "inGameID": 38291 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38291, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e1442942eb49ffae458e6eb99046a4e42cd9b110", + "data": { + "inGameID": 38291 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38291, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8705a43a921aaa4a7a63d8b5ba78e155e3627947", + "data": { + "inGameID": 38291 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38291, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ef9c58b3fcd0752fad2f30e4a66b70b3d1c5282b", + "data": { + "inGameID": 38291 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38291, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7ef78b9f6da108cd0374071ecfbb5e8595bf29d6", + "data": { + "inGameID": 38291 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38291, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "23ae33900b193a0530369b48c387aeb93b82d581", + "data": { + "inGameID": 38291 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38291, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "618ebf12d02a939d2484390a2635c9fe9155beaa", + "data": { + "inGameID": 38292 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38292, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ae70c8e9b547ebf00f5910b81be3bf0080b05610", + "data": { + "inGameID": 38292 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38292, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1b8dd9285fb88f15789793c9f6cea41a063d70b8", + "data": { + "inGameID": 38292 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38292, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a33aadf2612db65d74cdd4df87c14a109bd697b4", + "data": { + "inGameID": 38292 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38292, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "306fb424161838c967cdbbf091c4f14067575981", + "data": { + "inGameID": 38292 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38292, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cd8847e689247260d1b8932e119256c110e7df17", + "data": { + "inGameID": 38292 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38292, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1a28f38f17132958cbf96a0181eef59a2772e06d", + "data": { + "inGameID": 38292 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38292, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2442306c98d22cc94c81ea2320991c7868060a98", + "data": { + "inGameID": 38293 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38293, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "06817a7148234f88e62900b31cf49b965090e9d8", + "data": { + "inGameID": 38293 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38293, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fa7ab0762fd351669609fe0530d9251d46734eaf", + "data": { + "inGameID": 38293 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38293, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "33d893bf9cfe9842ad7c337ae9017159236af294", + "data": { + "inGameID": 38293 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38293, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bfea24e263bd7b66d9718d00db9a3869d418453c", + "data": { + "inGameID": 38293 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38293, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9836d1e13f665ecfeb66b571eea24c2e9a8a7caa", + "data": { + "inGameID": 38293 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38293, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "705d8f3cfe98f122872fde9acfd69306a9001f44", + "data": { + "inGameID": 38293 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38293, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0fa59545c7ce3e87fcd9206be5d16ab123d182f7", + "data": { + "inGameID": 38294 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38294, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9942a62f9ca2f364ffe27e31b86447aeb9dd9d59", + "data": { + "inGameID": 38294 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38294, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e8a17c70cdb58d55d4e2f99e9666e4041c24fca6", + "data": { + "inGameID": 38294 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38294, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4cc73f923bff97e49a66b1dcd20081db185e4af6", + "data": { + "inGameID": 38294 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38294, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e434341d849fbda665b1fcd2ebb8f55bcf3b89d9", + "data": { + "inGameID": 38294 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38294, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "edb3ebfa2c45653f7518897c0f28cc732c94143f", + "data": { + "inGameID": 38294 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38294, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "16bea12edcc24312be8064952e0a9d0cd4c1f2de", + "data": { + "inGameID": 38294 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38294, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9c8935bb64a2246bb77e1245d715449a20d2fc0e", + "data": { + "inGameID": 38295 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38295, + "versions": [ + "a3" + ] + }, + { + "chartID": "1c2217667dc26ad704bf140ed7496a45ef075a2b", + "data": { + "inGameID": 38295 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38295, + "versions": [ + "a3" + ] + }, + { + "chartID": "e0a2da9c01f8c01ad713718670b1bc52401f89ab", + "data": { + "inGameID": 38295 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38295, + "versions": [ + "a3" + ] + }, + { + "chartID": "f02be2363bd024982ceb7a468d857da28dc32ac5", + "data": { + "inGameID": 38295 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38295, + "versions": [ + "a3" + ] + }, + { + "chartID": "9591a66c35f36ed7945c08f622ba419f02808305", + "data": { + "inGameID": 38295 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38295, + "versions": [ + "a3" + ] + }, + { + "chartID": "cb959b15aafee471b59a252af4a6cea1bb578e99", + "data": { + "inGameID": 38295 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38295, + "versions": [ + "a3" + ] + }, + { + "chartID": "0dbb852f6c02d37f972c4a4b485eb6242dbfc42d", + "data": { + "inGameID": 38295 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38295, + "versions": [ + "a3" + ] + }, + { + "chartID": "1dc68e128ed30c04b51ffdf70dbed98d2a7cf91b", + "data": { + "inGameID": 38296 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38296, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7d9733cb4112048e82cd4ed015318094da5f2ad3", + "data": { + "inGameID": 38296 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38296, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "200919ba0e607b67ee939ac9dfa1bb258717c517", + "data": { + "inGameID": 38296 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38296, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a801cfba8dd194c896dc70d6ac384d32f5b5c4ee", + "data": { + "inGameID": 38296 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38296, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6103e56bbc8b36585e5c6a5e88806b59124cce10", + "data": { + "inGameID": 38296 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38296, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6f26ec8a3181df77b4f4c330e81197a222b0e17c", + "data": { + "inGameID": 38296 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38296, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "da8b69af9bbea6915676e9548f5f315518f60cf6", + "data": { + "inGameID": 38296 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38296, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "34c76ab716849139f8825a03ded88e59e721e237", + "data": { + "inGameID": 38297 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38297, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "75c851ea059272367e3c24b695322aa77e541d93", + "data": { + "inGameID": 38297 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38297, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce5dbd0b237fb0646056ef75a1869cb3649eeba2", + "data": { + "inGameID": 38297 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38297, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6a48a49ade71924e01b3255e58242284991931b0", + "data": { + "inGameID": 38297 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38297, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bf221140cc7dc12791d6ff9fdcf33de269ccfc09", + "data": { + "inGameID": 38297 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38297, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d8a0a87e6b73c500e9da65d2c7248aa92972f6cd", + "data": { + "inGameID": 38297 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38297, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6aef62689550c1464860d8341bc665209e1b0c9d", + "data": { + "inGameID": 38297 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38297, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "843fdca1700226a27e368e12c805a9fb3f969d90", + "data": { + "inGameID": 38298 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38298, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "187e353f8939c24eafb58b9bd8dd7779e863f5a2", + "data": { + "inGameID": 38298 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38298, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3192467d117bb2fb6cae47072eeba43ec329755c", + "data": { + "inGameID": 38298 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38298, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3410111075cbc6ecf24ce72d49d1779185649c44", + "data": { + "inGameID": 38298 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38298, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "91a6f93b9a8f4aa95ffd6d97aaa3902fac3e1d86", + "data": { + "inGameID": 38298 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38298, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9336a01a101b9cbb86139832981ab716a498f368", + "data": { + "inGameID": 38298 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38298, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "31bbfc138235e27e9044c000e9f1f446a20a9c98", + "data": { + "inGameID": 38298 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38298, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6eb4137dc0514aa9337fd7a3a9e3e6fa14527d2d", + "data": { + "inGameID": 38299 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38299, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ed9b7fe544e4196b77b9e3e2a712fcccc5bb6461", + "data": { + "inGameID": 38299 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38299, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b3ef418592fdb958f295722f61dd030fb12f508a", + "data": { + "inGameID": 38299 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38299, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "22ede861daf8d314f93a1b8768962f74d52f46c2", + "data": { + "inGameID": 38299 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38299, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8edd7370a06dca40278431eece78b866a5de1f56", + "data": { + "inGameID": 38299 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38299, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6ae8a47630e7794b68e25dd3e2c995cec4595f65", + "data": { + "inGameID": 38299 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38299, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "487c3fed65451880d31c11639dc3da5f8c059aec", + "data": { + "inGameID": 38299 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38299, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "87afcb63fab0c9ce4327b0ee3c349edb40e27309", + "data": { + "inGameID": 38299 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38299, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "23adbe125694d3bc091513acfa7cdb1ff58ccfa1", + "data": { + "inGameID": 38299 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38299, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3c6c9f1f33506d34d6afc9d72630e3aedc8fe489", + "data": { + "inGameID": 38300 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38300, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c750536dca0e7d2552203d1321835dcef2e73f9d", + "data": { + "inGameID": 38300 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38300, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5bee84ff6d9203feaff6bc4a86e2d532a93d6543", + "data": { + "inGameID": 38300 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38300, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5326bae9eb21ddd85a90027b16e7ec195e17874c", + "data": { + "inGameID": 38300 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38300, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8ffe5070824221aed5748376bfe9c12a4346a55", + "data": { + "inGameID": 38300 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38300, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "66e96c12acdde307b32cc8124315ef4ddafed6a2", + "data": { + "inGameID": 38300 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38300, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4774d6dd6bfce76b1bc5be5db0a194eef33f15cf", + "data": { + "inGameID": 38300 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38300, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "135a7b3796bd05233cba30dbcbfd86b4e9914448", + "data": { + "inGameID": 38300 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38300, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3a0cb1da45dbf811f118138dd88169ab477025d8", + "data": { + "inGameID": 38300 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38300, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dea8fc36d6f5a8659d492fedc627339429a01e60", + "data": { + "inGameID": 38301 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38301, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d4f7ff7a0a4f493e137260b573f1adb4a51f72d", + "data": { + "inGameID": 38301 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38301, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "16e228022e50fc595de483847cc1330a792d6c47", + "data": { + "inGameID": 38301 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38301, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c8de9edf8015120c83e80cca90a73d8d608d7caf", + "data": { + "inGameID": 38301 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38301, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "56432fea307cb94705a88f4151af21b4fbed2aa2", + "data": { + "inGameID": 38301 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38301, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ea7e6b2bdfff1f0d6c7967e544cb499d77b2c7da", + "data": { + "inGameID": 38301 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38301, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "24f5925568ab42314678338d07596d511fa17a37", + "data": { + "inGameID": 38301 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38301, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8dbf09de873380e3a31d9fbe31a1b198b3555e3d", + "data": { + "inGameID": 38302 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38302, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce19284482f6acfa441ec15ea630befe7ce61c83", + "data": { + "inGameID": 38302 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38302, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f93a32146ecd5dd88f36173a1bc19e10bbb3e77", + "data": { + "inGameID": 38302 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38302, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b905b787a992358c5dca56c92f94d760e6d511c4", + "data": { + "inGameID": 38302 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38302, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "041d75274cae1fab95592f28e1ce844e2f144496", + "data": { + "inGameID": 38302 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38302, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eb38b7f022a4f72f88dee0e1d19a03edb28ba4b0", + "data": { + "inGameID": 38302 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38302, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e8b29a96577c1c4f6e7611b407c79e43e8f8e691", + "data": { + "inGameID": 38302 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38302, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9c1158dc7e4ce9977d29fe8a0c137700c37f512b", + "data": { + "inGameID": 38303 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38303, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fd8e586570956ce543333133aff74e4c05632772", + "data": { + "inGameID": 38303 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38303, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0c009084403388cc4f8c968335fab357729f35c3", + "data": { + "inGameID": 38303 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38303, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cca7a181daa58f7345809b0177fb4535daa71770", + "data": { + "inGameID": 38303 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38303, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a0a42daa10ac791a01ce9f0d4b2b57f98dedb304", + "data": { + "inGameID": 38303 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38303, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6d8199be33e3dc775af35d07266c4252f416a846", + "data": { + "inGameID": 38303 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38303, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "efaedc16345a863123389319597b23aa468b7daa", + "data": { + "inGameID": 38303 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38303, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9b772683d856d78a9385e17f9cd6614c7faf16cd", + "data": { + "inGameID": 38304 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38304, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "28c01c2e7876bc93ce74495f66c7c7a43c8c01c7", + "data": { + "inGameID": 38304 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38304, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d0a65c1db9b0ff0fe4fe3a0220f0c2095a86ec9", + "data": { + "inGameID": 38304 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38304, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "140e976612ea85b612f9d713d81676cd00043832", + "data": { + "inGameID": 38304 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38304, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b1d7b03c2f63df3451f679ad9ee6ad0e6ff68a9c", + "data": { + "inGameID": 38304 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38304, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2b3c37452d0c93d17012de81d01b92b07176108e", + "data": { + "inGameID": 38304 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38304, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ba8a65e567dca5779344136d6f97ee9fdd3814b5", + "data": { + "inGameID": 38304 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38304, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bc1128010f615c71460d5e6501fefaa4f891c11e", + "data": { + "inGameID": 38305 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38305, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a562cdfed055224062de0f04679a97094ae6f4cd", + "data": { + "inGameID": 38305 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38305, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8b00828446a47cee7dacf5cca9dd3a1a65b6b3d", + "data": { + "inGameID": 38305 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38305, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8dbd7d7daeb68413e47a1cbb1f13b5bcfa416e4b", + "data": { + "inGameID": 38305 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38305, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5ddbf012acfdaca6fb2c7124e18f357e46b55b37", + "data": { + "inGameID": 38305 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38305, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "23ef50b19a5b9a71995563738ab9e29ebd9bfd4b", + "data": { + "inGameID": 38305 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38305, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ad292543d44b3605dacc9a1097c20ce6c207a287", + "data": { + "inGameID": 38305 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38305, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d7c2167cb306e5852a4f4a3c1c5f88da260b0f80", + "data": { + "inGameID": 38306 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38306, + "versions": [ + "a3" + ] + }, + { + "chartID": "4f107e7fad8c6b219ab80794e24d72b73eb8cc64", + "data": { + "inGameID": 38306 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38306, + "versions": [ + "a3" + ] + }, + { + "chartID": "4465150804cef00efef67a080f1a9e30871f7a1a", + "data": { + "inGameID": 38306 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38306, + "versions": [ + "a3" + ] + }, + { + "chartID": "5966c492082091d1fbf74f24be983a92541290f0", + "data": { + "inGameID": 38306 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38306, + "versions": [ + "a3" + ] + }, + { + "chartID": "499d994599433aa65f3278cff4e6cb15f13ab329", + "data": { + "inGameID": 38306 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38306, + "versions": [ + "a3" + ] + }, + { + "chartID": "f1f2e0cebf2d6320df66c4eec9d92ed51b1a0e2f", + "data": { + "inGameID": 38306 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38306, + "versions": [ + "a3" + ] + }, + { + "chartID": "8f1aa1c49b00be9ea90f78d02de0c2e41b51a331", + "data": { + "inGameID": 38306 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38306, + "versions": [ + "a3" + ] + }, + { + "chartID": "0ef642653d6405d0c35e8ab6e7d90e7c3fe26e30", + "data": { + "inGameID": 38306 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38306, + "versions": [ + "a3" + ] + }, + { + "chartID": "4258bd76be30ffab861fa1f100b5f27b9ae1c124", + "data": { + "inGameID": 38306 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38306, + "versions": [ + "a3" + ] + }, + { + "chartID": "e5fbf22cc9d1df7d006dbbb62274796219a742cf", + "data": { + "inGameID": 38307 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38307, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "51ecd99ca14bf8668760f8687eeef814304f599e", + "data": { + "inGameID": 38307 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38307, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "22506a8c5bce0f9fe95cff9d4648bb2121c3797e", + "data": { + "inGameID": 38307 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38307, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1248d0e05b8ff8afe0a7366fc6ccc50e739249ca", + "data": { + "inGameID": 38307 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38307, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "338f728fcff51dd5c1491b311ecb94c65f1d840b", + "data": { + "inGameID": 38307 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38307, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e72a54e91f4182b5448c201804f5e677c2551383", + "data": { + "inGameID": 38307 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38307, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "de5f31072bdbbe4726e83ae86a531894a5348b40", + "data": { + "inGameID": 38307 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38307, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "568ca5210e9790944457a675cfdc4216f58aec52", + "data": { + "inGameID": 38308 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38308, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ed164b8504e05a632115e377085c5695f9935634", + "data": { + "inGameID": 38308 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38308, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ec0708bfaf85df9b6681d0fd4eeacd0f029a5425", + "data": { + "inGameID": 38308 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38308, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c9ac7d651fa83163a0e302cf33cddb875453bae1", + "data": { + "inGameID": 38308 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38308, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "00c1d7b773477da1ab8c3cc6c1a4fff14e93ae37", + "data": { + "inGameID": 38308 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38308, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2597287a55a5a3757573b9d48799c9ec9ac05c8d", + "data": { + "inGameID": 38308 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38308, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c3d17f7c7c49a1e513bc91de41cf54208b7e521d", + "data": { + "inGameID": 38308 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38308, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a58a10e8a653fa1f2f55fde5bc0fdc87604bfedf", + "data": { + "inGameID": 38308 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38308, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7cd0c00597a1950cba77c4cda206abba3aff4a04", + "data": { + "inGameID": 38308 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38308, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "83415d5f9f03d3cd3587dd93d0b12c18e343e374", + "data": { + "inGameID": 38309 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38309, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9a4fee5e1d80d315e42f0430273e4fc38e700ee3", + "data": { + "inGameID": 38309 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38309, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b62768c00c787fba05ce9dc65f95a99bd2fc248a", + "data": { + "inGameID": 38309 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38309, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "313bef4bd537ef6a41fa7c5bdbdb1eecb797d0f0", + "data": { + "inGameID": 38309 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38309, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d532aa60e2a48b6b2cb290b1cd085993121e17e5", + "data": { + "inGameID": 38309 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38309, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "23df4b57f966e65a6ae3626fee63dad7164407a9", + "data": { + "inGameID": 38309 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38309, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9bc68644d4ffb9f2827c7c4abda8ce3a73cd853e", + "data": { + "inGameID": 38309 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38309, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d6b2b5dcb267c686f5ffca7d858d5b95ce0aee80", + "data": { + "inGameID": 38310 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38310, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "66f39aada3f1b6241278de5f8dc26add8cffac08", + "data": { + "inGameID": 38310 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38310, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "403b15139948788fba70acf883b0a012d93bae4b", + "data": { + "inGameID": 38310 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38310, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "51b7afe28e3447f4c1455490cb51d165dbc5e981", + "data": { + "inGameID": 38310 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38310, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "352015023298208582ec4aac102f326c1f7936c5", + "data": { + "inGameID": 38310 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38310, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "91282b7e2a36732151e3b7bb11f912cd3b2da7a8", + "data": { + "inGameID": 38310 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38310, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "09f19b0fee276e88b852112f8a6fe5fad1374c77", + "data": { + "inGameID": 38310 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38310, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "35ef789c176b2b7fce610802617b9b1c987df5b3", + "data": { + "inGameID": 38310 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38310, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1674f89bf45e5cc90e5236a16ee3336e4007585e", + "data": { + "inGameID": 38310 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38310, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6296a2b753a6adc8fd6a3ab7ad1df1efffad96e6", + "data": { + "inGameID": 38311 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38311, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c180bbee39f403c750ae50dad54a33c5830c3175", + "data": { + "inGameID": 38311 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38311, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4cae1f19606d855caacde7aca41f6b0fed4bb10a", + "data": { + "inGameID": 38311 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38311, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fd76fb5c991624a5e8271a7de6e0aacd8ae5ec52", + "data": { + "inGameID": 38311 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38311, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eb3bcbc36c008136d3bc209240c1bcf840addf03", + "data": { + "inGameID": 38311 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38311, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "34c79873068cc6eb2626a90937ebc36ba809adba", + "data": { + "inGameID": 38311 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38311, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3636ec96f98479eb3149583961fdb05b980a3a82", + "data": { + "inGameID": 38311 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38311, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6bd79679e9cb402a7ce6f4bf59a6701a6b8b3daf", + "data": { + "inGameID": 38311 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38311, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e64ebec2a88bcba8273bcc518b0653dd6feab266", + "data": { + "inGameID": 38311 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38311, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "887f5043df62feee9d843d00a608c6d3474cfc26", + "data": { + "inGameID": 38312 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38312, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2dd4b22a89e74ae7d505f34e5c8fb8f4c2eafcf9", + "data": { + "inGameID": 38312 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "19", + "levelNum": 19, + "playtype": "DP", + "songID": 38312, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d04040bbe7ec51f02aebe8bc842a59c2aa8974d7", + "data": { + "inGameID": 38312 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38312, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4118f1c276b23a6a01f18ab9a7daa0fa2537c415", + "data": { + "inGameID": 38312 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38312, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3010a70021624afef17fc6116213170070954e97", + "data": { + "inGameID": 38312 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38312, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d999b5de1341c68a531e84acd83c1332d0e5208b", + "data": { + "inGameID": 38312 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38312, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aa76e8a307f2926eabfc938fab9a40194dc6d513", + "data": { + "inGameID": 38312 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "19", + "levelNum": 19, + "playtype": "SP", + "songID": 38312, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a2221da951fcdfaf00655b39367d24261e71bd32", + "data": { + "inGameID": 38312 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38312, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1a6825c9b2553780a181f9dae08b51d502deb6de", + "data": { + "inGameID": 38312 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38312, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "39b641cf582f07a568ad6f8144a03a9cb9ce5555", + "data": { + "inGameID": 38313 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38313, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6fc1b605d3adad7571614dba7c462bf93189c670", + "data": { + "inGameID": 38313 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38313, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a50a1927dd2098c7327d6cd98413ce1969ce6c9a", + "data": { + "inGameID": 38313 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38313, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0b303d46349873350cd5958aba9d4c2863e53673", + "data": { + "inGameID": 38313 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38313, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "26617e21921f4ed415259889cda684a75e54e9cb", + "data": { + "inGameID": 38313 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38313, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "708ac2c4daa81ea8ea2355eaac1eee4ee04091ce", + "data": { + "inGameID": 38313 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38313, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "63b8e66a87d383a8b41cef2441169d6e72e5f164", + "data": { + "inGameID": 38313 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38313, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9dfc6e6f9ff67a3a74a32ac3cc96f52ba5cad7df", + "data": { + "inGameID": 38313 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38313, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2b2abc5a0c98ce970e340efcca381a55192c0b33", + "data": { + "inGameID": 38313 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38313, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d09d723014c8fc57e4554c497eea0521d534ac07", + "data": { + "inGameID": 38314 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38314, + "versions": [ + "a3" + ] + }, + { + "chartID": "df2593c85942572d8ddd237755b10df19aef0e19", + "data": { + "inGameID": 38314 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38314, + "versions": [ + "a3" + ] + }, + { + "chartID": "0c49920dbe066722034c124fdb52dc61eaccf827", + "data": { + "inGameID": 38314 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38314, + "versions": [ + "a3" + ] + }, + { + "chartID": "8abc96228ff07d240ebdafc37725ecd940c723db", + "data": { + "inGameID": 38314 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38314, + "versions": [ + "a3" + ] + }, + { + "chartID": "cfd9896bd91b6e5425378da8a4bafc4462689a29", + "data": { + "inGameID": 38314 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38314, + "versions": [ + "a3" + ] + }, + { + "chartID": "66f366fd3a1dd994426f1bfb40ceced29786d21d", + "data": { + "inGameID": 38314 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38314, + "versions": [ + "a3" + ] + }, + { + "chartID": "4dca015f26cbef38739bddc21a9819a02296b7c0", + "data": { + "inGameID": 38314 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38314, + "versions": [ + "a3" + ] + }, + { + "chartID": "e9cd42296d2effa341a91d3715f72da546d36dc8", + "data": { + "inGameID": 38314 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38314, + "versions": [ + "a3" + ] + }, + { + "chartID": "7f8c14ca7202ef0b9e32c4f11918ffd333f9c3ce", + "data": { + "inGameID": 38314 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38314, + "versions": [ + "a3" + ] + }, + { + "chartID": "9bfa9d575108ea8f792ba26dc6490b72664b3008", + "data": { + "inGameID": 38315 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38315, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "418031fa4ae7055307f66cc01cc408841fdf34db", + "data": { + "inGameID": 38315 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38315, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3659a4d60fc7c601706ef492d6c5b593fadc6ca7", + "data": { + "inGameID": 38315 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38315, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8c297762d16a3a85416577b8bd3e40d7ebffe37a", + "data": { + "inGameID": 38315 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38315, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "59a4cbc8bffbfe619ef06f46fda84b8e2c380656", + "data": { + "inGameID": 38315 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38315, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "21d458bc599173f0d005006685b8b9e0b15d7b56", + "data": { + "inGameID": 38315 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38315, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9b608ea216b98936699339f6aab38e9b75fca268", + "data": { + "inGameID": 38315 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38315, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fef2f080873a3b1d245cad7a3eec093dd8100d15", + "data": { + "inGameID": 38316 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38316, + "versions": [ + "a3" + ] + }, + { + "chartID": "eefd0a441cd5a22679699d54a372cc8a86b27e16", + "data": { + "inGameID": 38316 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38316, + "versions": [ + "a3" + ] + }, + { + "chartID": "e7053dc512d67c20f85fb5458c0237277de6f8f5", + "data": { + "inGameID": 38316 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38316, + "versions": [ + "a3" + ] + }, + { + "chartID": "752ea497cd40af732a329975c798d11ce7fd434c", + "data": { + "inGameID": 38316 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38316, + "versions": [ + "a3" + ] + }, + { + "chartID": "2b8edbe4c3cd21dd9439438144619a8ad4e461c6", + "data": { + "inGameID": 38316 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38316, + "versions": [ + "a3" + ] + }, + { + "chartID": "4c077a68a4d57ab90a2cbfe712cad30104958e10", + "data": { + "inGameID": 38316 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38316, + "versions": [ + "a3" + ] + }, + { + "chartID": "987a6e7a5ae7f8bd166d474ac810d8f6781703ba", + "data": { + "inGameID": 38316 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38316, + "versions": [ + "a3" + ] + }, + { + "chartID": "29356c8eda58884fe25c3b114bc2c9c736640584", + "data": { + "inGameID": 38316 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38316, + "versions": [ + "a3" + ] + }, + { + "chartID": "17584964d73d121085a4940404498f222fd5f4f7", + "data": { + "inGameID": 38316 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38316, + "versions": [ + "a3" + ] + }, + { + "chartID": "bad2390c03a7adc15012e703afb22abd36b2e625", + "data": { + "inGameID": 38317 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38317, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "776b4790fff8f22b7c69d914614436140bbe2061", + "data": { + "inGameID": 38317 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38317, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "736cc56a7cd010f64eb2d11b5b00eab844a8f326", + "data": { + "inGameID": 38317 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38317, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e8d1c1ea658bd4fbe6727be55e637ec67b3d948d", + "data": { + "inGameID": 38317 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38317, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6701f2461169f054b9086a76bd07c966617265e4", + "data": { + "inGameID": 38317 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38317, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "422db4740e1fb43f5128701217eb078314dc66c2", + "data": { + "inGameID": 38317 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38317, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "743476240bcfdd31046679b47e23faeaeb19e5ff", + "data": { + "inGameID": 38317 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38317, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9dd420f945aef7e31fc85b3c46c0436dc20cf34b", + "data": { + "inGameID": 38318 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38318, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8bada86916730ff159880dcdc3215638f3a403be", + "data": { + "inGameID": 38318 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38318, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b4c60a7c824f6c31998ae927084913d07fbcdd28", + "data": { + "inGameID": 38318 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38318, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "06067fca09ed42a1438225357042c0a772417a6d", + "data": { + "inGameID": 38318 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38318, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6274547d15645d479dee632605cf756b0a599527", + "data": { + "inGameID": 38318 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38318, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e321fd349b99ff1b78e449abd81685296700fa66", + "data": { + "inGameID": 38318 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38318, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ac92129e8696201dd4ca72a5b6ccc1c984b72422", + "data": { + "inGameID": 38318 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38318, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6515bfd9bede88f567fdd2d0a6bc5437a8b62e1b", + "data": { + "inGameID": 38319 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38319, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9bc9a82f1116f19811563de3894577d67bb6be38", + "data": { + "inGameID": 38319 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38319, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a0958b661a0bd5fe06ee06e978fb4beaa3a7f6e9", + "data": { + "inGameID": 38319 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38319, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "32bbc2412622d729e6070628e53fba085f542c93", + "data": { + "inGameID": 38319 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38319, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8207046d24d666cf70125e4effddad7a9a5affae", + "data": { + "inGameID": 38319 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38319, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7eb311995b352084af8df40fa8b482ac81b13111", + "data": { + "inGameID": 38319 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38319, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0ee89c8c362424717b6d5cd173c63f7be529758e", + "data": { + "inGameID": 38319 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38319, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d43b17ce754890c0fda3555077a54b692a8517d4", + "data": { + "inGameID": 38320 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38320, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "536624acbed865f6649cdc3870d30649b28d514f", + "data": { + "inGameID": 38320 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38320, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "469975144ecfbd9dd22493c7d013dc2a1f75543a", + "data": { + "inGameID": 38320 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38320, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d53a18b0c45413d51323b173bb4e235a8c6f61b6", + "data": { + "inGameID": 38320 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38320, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ab15ac98185f450f261f33e01f3a724e929fa99", + "data": { + "inGameID": 38320 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38320, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c40990991fa3fbabc7d596df8fcbde6fac579c1c", + "data": { + "inGameID": 38320 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38320, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8f693e52583fdffcb0d2163e5c555f5b98011bcd", + "data": { + "inGameID": 38320 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38320, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3b7fd7da4458a3a950a7efb216b567e7c6832a4c", + "data": { + "inGameID": 38321 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38321, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f47ef72cad812237aaa51838378aa19bca87c945", + "data": { + "inGameID": 38321 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38321, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "81047a66df62ab26fab436dac66e725f9a0f7906", + "data": { + "inGameID": 38321 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38321, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6f742005b4df07eba7670d68639ab61f92dfa55c", + "data": { + "inGameID": 38321 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38321, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b4e176261c6d52b100a92fe66d17709e09cae421", + "data": { + "inGameID": 38321 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38321, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c9bbcabaa4f7bda482781da4a22dd257867d6dd9", + "data": { + "inGameID": 38321 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38321, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "492d74f639d8647f6158c0afcc02ed9633c9fb0f", + "data": { + "inGameID": 38321 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38321, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "adb8576be1041b4d4189a6a7b52cca74ccb63319", + "data": { + "inGameID": 38322 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38322, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1f9d5a5b1f63512a825284bace4c4ef57daef011", + "data": { + "inGameID": 38322 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38322, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f877b018df13fd7ced16f5b4c8cb66ef87855813", + "data": { + "inGameID": 38322 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38322, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b9e68a192f7df43293a4529823359cce3560bf35", + "data": { + "inGameID": 38322 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38322, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b3ca392eb7c63ef10d3d0a77cc2dbdc409b7ee57", + "data": { + "inGameID": 38322 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38322, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b2eb589bf0e034bef517097c05cd1926c4bbd76e", + "data": { + "inGameID": 38322 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38322, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e1a07315f4fdf91523e01206dd0fed67faf9ffa4", + "data": { + "inGameID": 38322 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38322, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aca6d314e3b29535c4ce3bbf8036d696d7302684", + "data": { + "inGameID": 38323 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38323, + "versions": [ + "a3" + ] + }, + { + "chartID": "c5fa1c69f1cf4e5cf7188ff1b71e2291e8103ef6", + "data": { + "inGameID": 38323 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38323, + "versions": [ + "a3" + ] + }, + { + "chartID": "1b0dfb22b3a130718ffcc31d1800fc6b40980810", + "data": { + "inGameID": 38323 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38323, + "versions": [ + "a3" + ] + }, + { + "chartID": "9292c8d819d7cf1574bee97d77bb861f762f19be", + "data": { + "inGameID": 38323 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38323, + "versions": [ + "a3" + ] + }, + { + "chartID": "5b75c52b44efa094d4865141439486c38a55c4ad", + "data": { + "inGameID": 38323 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38323, + "versions": [ + "a3" + ] + }, + { + "chartID": "eca0865c75172279774f23c32edf6d2dcb1a4966", + "data": { + "inGameID": 38323 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38323, + "versions": [ + "a3" + ] + }, + { + "chartID": "d4166d5cd1293cb6c8456897a823a1ddc8575f3d", + "data": { + "inGameID": 38323 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38323, + "versions": [ + "a3" + ] + }, + { + "chartID": "7789a220be08a6ba766f559889439aa5fcf6bb44", + "data": { + "inGameID": 38323 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38323, + "versions": [ + "a3" + ] + }, + { + "chartID": "f86bc7396cb320520c33e9430c7dd2356c7b4f44", + "data": { + "inGameID": 38323 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38323, + "versions": [ + "a3" + ] + }, + { + "chartID": "641418f5b906b533005eae448ce9c22fbd8c7332", + "data": { + "inGameID": 38324 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38324, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "03270dcad5619dff02378ea091795266540f6233", + "data": { + "inGameID": 38324 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38324, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2d43687ea7c06258ccf82b5ae33461f9bddc9f9b", + "data": { + "inGameID": 38324 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38324, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "af6b9042b606080c9e1b1e28bd0d14566ac501b1", + "data": { + "inGameID": 38324 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38324, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "58bd9a35a16584efcfd292f12e5785733701ed4e", + "data": { + "inGameID": 38324 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38324, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bec7bd4a0e2947724f6f209b7f4ec8853411f7ac", + "data": { + "inGameID": 38324 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38324, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "046d7d21f094c6af556e49928327ade64c3961f2", + "data": { + "inGameID": 38324 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38324, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "90585c5ec54434f8d05600f3db3ac8bf21e6ac2c", + "data": { + "inGameID": 38325 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38325, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7562ca3b058fb5c03a7e631f3894bc1556c4bc6b", + "data": { + "inGameID": 38325 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38325, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3e984cc3477c35e699765497c9882585f90131ae", + "data": { + "inGameID": 38325 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38325, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "468b8bcfebc64c5d150407085e6d96c12cc83369", + "data": { + "inGameID": 38325 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38325, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f53a95db5d2d01725d7b4a39392f169d4507775d", + "data": { + "inGameID": 38325 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38325, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "084deb5fcc5650728334ecee3fc404c207ade445", + "data": { + "inGameID": 38325 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38325, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0743968b45dba98bd4ce4635f04bd2e6cf450f82", + "data": { + "inGameID": 38325 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38325, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1c84d2c054b2fcb41256b18423676aef7c92f5cb", + "data": { + "inGameID": 38326 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38326, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aa4b6d46ccd840c1277fbfa86fd4f85e203a0dd0", + "data": { + "inGameID": 38326 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38326, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "504a05680e121b3c52bf45e2042aa1f8e4731fc4", + "data": { + "inGameID": 38326 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38326, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "29fd28c499be8d50f5a0a972151ccfcce12b3b2c", + "data": { + "inGameID": 38326 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38326, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "06855886976d3fade3dfff12ba3548e20f500d82", + "data": { + "inGameID": 38326 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38326, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "27abe4ef09cd903b73c12e4593519ab3afddadac", + "data": { + "inGameID": 38326 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38326, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "acdf389a9322cb7e38aa355f37a858b4ed2f3db9", + "data": { + "inGameID": 38326 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38326, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "11d4fd79e203e19a904c34534093c1c852b48006", + "data": { + "inGameID": 38331 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38331, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0f32588684b4cf9dc2860d182e0939b1a29cf13a", + "data": { + "inGameID": 38331 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38331, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "478aaf79583aa766cb39f0e7e1f8be33b9b854e0", + "data": { + "inGameID": 38331 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38331, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "16691894450c8370b2314d44bf6c5d429ba82850", + "data": { + "inGameID": 38331 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38331, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9522a87ddb57c0deae6429ad8ef66aa0ace3524e", + "data": { + "inGameID": 38331 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38331, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "86902f4eed99df9249660cc5607d8d5baa46acc4", + "data": { + "inGameID": 38331 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38331, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c6148b3a09662587a207963164fc60f404adf1a6", + "data": { + "inGameID": 38331 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38331, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8301fafbb8d14df3c40e0842d086f4d4d697d274", + "data": { + "inGameID": 38332 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38332, + "versions": [ + "a3" + ] + }, + { + "chartID": "fcfd75332664ae05fb64284e9c718e3354cbad83", + "data": { + "inGameID": 38332 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38332, + "versions": [ + "a3" + ] + }, + { + "chartID": "348a3e3b36dfc7ca58a5465ef0533f283081a452", + "data": { + "inGameID": 38332 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38332, + "versions": [ + "a3" + ] + }, + { + "chartID": "0d10b8d1bbd129ccb1ae96dafcffd04d66507111", + "data": { + "inGameID": 38332 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38332, + "versions": [ + "a3" + ] + }, + { + "chartID": "09a69529141270000035a07d7a40886d65cd5028", + "data": { + "inGameID": 38332 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38332, + "versions": [ + "a3" + ] + }, + { + "chartID": "18dbab76869e594caaa673e4fc5837bc331fc780", + "data": { + "inGameID": 38332 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38332, + "versions": [ + "a3" + ] + }, + { + "chartID": "d5dfd30e6e50d477a37b696e0302f091699ae208", + "data": { + "inGameID": 38332 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38332, + "versions": [ + "a3" + ] + }, + { + "chartID": "d99dda78c54193f838465f707b26839aecf7deab", + "data": { + "inGameID": 38333 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38333, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5069c33606ebc4afa4b7753fc755ba088d22898a", + "data": { + "inGameID": 38333 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38333, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "01babb8aeb3a74df4d2cb5e6f834844555ffb008", + "data": { + "inGameID": 38333 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38333, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3fddd440708ea1f0c61a28a2734b68885ef8411d", + "data": { + "inGameID": 38333 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38333, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "362962decea4424883bea1c052fdf062a49fd52b", + "data": { + "inGameID": 38333 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38333, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8c1fe408b40d14e4cc89bdd56e09c4d937cf3eba", + "data": { + "inGameID": 38333 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38333, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3a507b8129b7158378ec9bb4377004ab7eb579a7", + "data": { + "inGameID": 38333 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38333, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "50f99d563909aa28d8b6ae8befd50c292041ca58", + "data": { + "inGameID": 38334 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38334, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "110a47f6c4ac837f59f031a4ae2ccf6274bfcca5", + "data": { + "inGameID": 38334 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38334, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cedd4f0ed9f8780ca15f3f1b0efbd0b38c9b5472", + "data": { + "inGameID": 38334 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38334, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8b339cdf6bca0fc34075a140581d955a2e92f7b3", + "data": { + "inGameID": 38334 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38334, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d140cf911aedb6e80f4dc7c7e7ed673122e349cf", + "data": { + "inGameID": 38334 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38334, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "141381492bf3ca697d4218dfda1a4e14849bf5bd", + "data": { + "inGameID": 38334 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38334, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2e5784e5150cffd9852f1eb1ea320d9b66e80950", + "data": { + "inGameID": 38334 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38334, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "103755ad2793f1f93c0a32810b1499b4388fc543", + "data": { + "inGameID": 38335 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38335, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ddec44efdcc27a5d54fe95661550e256b2eebd3d", + "data": { + "inGameID": 38335 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38335, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d1d83cbcb15baa563f35bd9f5a2c7ab0018f6518", + "data": { + "inGameID": 38335 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38335, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8618dc85cf37a62edac821e0a27efff4912a33a7", + "data": { + "inGameID": 38335 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38335, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d86da0472537d5139aa3b529ab57fd059fc8c7c0", + "data": { + "inGameID": 38335 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38335, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f17c844e6739f59741a4edaebbaa45dd53e5e951", + "data": { + "inGameID": 38335 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38335, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c48f6c6143636acadcc73ae39162c979fe0930b5", + "data": { + "inGameID": 38335 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38335, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a87404e05163be5706e3434b4781c1995ebbcd58", + "data": { + "inGameID": 38335 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38335, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "43116cdef2eb7614d0292d0d67e5b76ffcf5f766", + "data": { + "inGameID": 38335 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38335, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5b4952cf28dca72fb5e7c737a2d1e49289230fd8", + "data": { + "inGameID": 38336 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38336, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e5e4ede71f1cd374d0eed2a140345a08d61c5b55", + "data": { + "inGameID": 38336 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38336, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ba08e22dc3e87073f3929474cccd6efbe739f737", + "data": { + "inGameID": 38336 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38336, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3f2f0949ca857b0be435b907c0edb4e733054cd5", + "data": { + "inGameID": 38336 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38336, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "48afc15fd2efb10a76fb44874668660ada658c43", + "data": { + "inGameID": 38336 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38336, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b585c6c95cbf36d21ca0c7d05328c86fe8e0e4d2", + "data": { + "inGameID": 38336 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38336, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "91dc5b8920452564131db98c81b08b217e81533b", + "data": { + "inGameID": 38336 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38336, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7d2c362e83710e936709887b47f2dc717271797e", + "data": { + "inGameID": 38337 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38337, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ab102ed9ea415f0f9e431bcdd21f41a8229848f0", + "data": { + "inGameID": 38337 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38337, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "097296c0b2b8550db26e65102507dac4787da2e5", + "data": { + "inGameID": 38337 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38337, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5e49cd66939c83c0907175803f956f41a889382b", + "data": { + "inGameID": 38337 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38337, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "44c1ffe702238579a1bbba9ef744d7bc9e8ff67c", + "data": { + "inGameID": 38337 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38337, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "797072dd436e1d76ee33ce761c204d5de4dcc97f", + "data": { + "inGameID": 38337 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38337, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5e04a21bf1300ded9e67ccd2ae0d6def2f3d7feb", + "data": { + "inGameID": 38337 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38337, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "232d260ec03aca08eba897c3fc87a388cbca0ed3", + "data": { + "inGameID": 38338 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38338, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9c92bf6e1819f732292ea205830c5d2bafd4d1e4", + "data": { + "inGameID": 38338 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38338, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fd9ce753252725a0406ce52cdad2429c12a4207a", + "data": { + "inGameID": 38338 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38338, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b3390c497f23e336598d3542e4e3417bb99cff97", + "data": { + "inGameID": 38338 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38338, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0735db223bebccbe9cf9a6f807e635e528718ba8", + "data": { + "inGameID": 38338 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38338, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b7f259cc279d67b919b76470c9779f91a95bc0c8", + "data": { + "inGameID": 38338 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38338, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b97998c8de7635aaa939b74ca6d9a859d92c45dc", + "data": { + "inGameID": 38338 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38338, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "78f40e20305c88e1b2e74f8e9d97dfda97c68471", + "data": { + "inGameID": 38339 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38339, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dd2f47f9891452dc55f017d1d468221584c00842", + "data": { + "inGameID": 38339 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38339, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1c1adcf5d132634ae28c34ca0590298dff814a15", + "data": { + "inGameID": 38339 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38339, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a7f33b9e5e365b4b215a6a9b1cd2570dc5ab5653", + "data": { + "inGameID": 38339 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38339, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2d068d8ddcc5451883d69e0640a01410948961c6", + "data": { + "inGameID": 38339 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38339, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fa281947023993f886ba99b091622116a6d615cc", + "data": { + "inGameID": 38339 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38339, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "866af2f7b01ed64e923ccdf22b4c4ef15eca9d5a", + "data": { + "inGameID": 38339 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38339, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "da7e5f225a31a1839eba0c6360f7f103c0c557b9", + "data": { + "inGameID": 38340 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38340, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8531202d4203d3a26efd6df5ab0d6f005027e578", + "data": { + "inGameID": 38340 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38340, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3eaae9b0a9bfb9271d58036a7b7402f7f253a105", + "data": { + "inGameID": 38340 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38340, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9ce7f6fe6eacd34421e48184c0be1508be08edcc", + "data": { + "inGameID": 38340 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38340, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0051e2cab46a1235bead6029b19ad2d982584515", + "data": { + "inGameID": 38340 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38340, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6ab93bc9306815d28c0b935f3174ad33f9fe8a69", + "data": { + "inGameID": 38340 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38340, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b224068c2a9a78ef82ebbe29a5997826f2205649", + "data": { + "inGameID": 38340 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38340, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "936e5fd4857a419752974002cd25b314da09f62c", + "data": { + "inGameID": 38341 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38341, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "708f5e9ff0c34fca1475de8e390f283e7cda5140", + "data": { + "inGameID": 38341 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38341, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "616a02e87d3fccc5534f86b60b6238bfd8b7ffb4", + "data": { + "inGameID": 38341 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38341, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bfcb4b3007f0a8adcad280cc5ada608b23543b30", + "data": { + "inGameID": 38341 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38341, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c5e893fd306cf39c3d56dd7c4003e15aeade157a", + "data": { + "inGameID": 38341 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38341, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "06d06be8554b817c434d58889fb8292dbbaaa206", + "data": { + "inGameID": 38341 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38341, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "08bb283303ca63eedf66bb15d61adf2cfb25fa40", + "data": { + "inGameID": 38341 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38341, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4b229e32cbc467840b2623cec334eb9b84cb6383", + "data": { + "inGameID": 38341 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38341, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5838fa7b9bfdaa2056bb09ef9c09935bde549d8c", + "data": { + "inGameID": 38341 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38341, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7be32b28882e9000ec8516d28ee1cf9283561249", + "data": { + "inGameID": 38342 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38342, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "85dde42e0b54fce5b2806453d1e64362213e170f", + "data": { + "inGameID": 38342 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38342, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dd8a0385e69ff6e61d94a5db96fa705c9040c269", + "data": { + "inGameID": 38342 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38342, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "72bc10af1a45114d2a9b6d443532968654f268f0", + "data": { + "inGameID": 38342 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38342, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5d9125136d4a0cff3a7ffc4f67711de7de1552cd", + "data": { + "inGameID": 38342 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38342, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5aba82650db1ec3ca31212fc8051274eac851366", + "data": { + "inGameID": 38342 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38342, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4db6d5128f8d9da7ee41bafacb452bf91d0301a4", + "data": { + "inGameID": 38342 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38342, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3036e29875db11422372d979d83f664cfc421981", + "data": { + "inGameID": 38343 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38343, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "86e5b46be197960ad1fb7f2fd1fb534275b5d5f1", + "data": { + "inGameID": 38343 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38343, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0451ee4c44a664a04585767be30eaaaa18f26050", + "data": { + "inGameID": 38343 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38343, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1a3eebd8207aa93b00dd59e259745cf73053bce7", + "data": { + "inGameID": 38343 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38343, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f5868599bb1242f21335a638232626c3370f1848", + "data": { + "inGameID": 38343 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38343, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c648b026ce11835612898048f55dfe10767d206e", + "data": { + "inGameID": 38343 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38343, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9bc55480c9be3e64a55817590cc3fb26a6a32aed", + "data": { + "inGameID": 38343 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38343, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f61afa883b5d009c2df9ee3a3c2e49de435f7601", + "data": { + "inGameID": 38344 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38344, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d81282b194a83c8f42ce8bc40b83b76aa1d9fc70", + "data": { + "inGameID": 38344 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38344, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "18c9c1297fad548043d2e5bd48ffcad87f8e736a", + "data": { + "inGameID": 38344 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38344, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "78a24c7d9b75cfd880023b3e1ec6f25bc3e62aa1", + "data": { + "inGameID": 38344 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38344, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5ae5e96f02fe3ad90558a00885f6e4662ad99345", + "data": { + "inGameID": 38344 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38344, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0405b0aba57b48323b2dd0e0328b2849e8ec62e0", + "data": { + "inGameID": 38344 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38344, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b4ba0ff893420a1afc1c5456b62d4a0235fa5aa3", + "data": { + "inGameID": 38344 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38344, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "de8dc1d5e14845d2d7da6d0e74f0fa7322fe0fb6", + "data": { + "inGameID": 38345 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38345, + "versions": [ + "a3" + ] + }, + { + "chartID": "c4fc56b07ad321e20c0d94f0cc14d9348fadf29b", + "data": { + "inGameID": 38345 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38345, + "versions": [ + "a3" + ] + }, + { + "chartID": "9eaeae165034ce4d0a852cc10c9b466d4e654764", + "data": { + "inGameID": 38345 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38345, + "versions": [ + "a3" + ] + }, + { + "chartID": "6c3c61bddcd3abe70e43643799f4fa5bbdbcfafa", + "data": { + "inGameID": 38345 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38345, + "versions": [ + "a3" + ] + }, + { + "chartID": "8ce35b2ae5b8844df9393c4aab6f81ca83a2e0c0", + "data": { + "inGameID": 38345 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38345, + "versions": [ + "a3" + ] + }, + { + "chartID": "4fe8b2a710c0451408317c38f762e16b2a2c1030", + "data": { + "inGameID": 38345 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38345, + "versions": [ + "a3" + ] + }, + { + "chartID": "df7dc701001c1b22ffe26941fd33439749fb38b7", + "data": { + "inGameID": 38345 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38345, + "versions": [ + "a3" + ] + }, + { + "chartID": "5e389c32c9909a0f1432369bfb95aaad4dceacda", + "data": { + "inGameID": 38346 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38346, + "versions": [ + "a3" + ] + }, + { + "chartID": "85dda83aa5d6e1093bddfe5d77388264d2aea1f7", + "data": { + "inGameID": 38346 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38346, + "versions": [ + "a3" + ] + }, + { + "chartID": "0e0328006a558f34e56d18af6ad76293deff8915", + "data": { + "inGameID": 38346 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38346, + "versions": [ + "a3" + ] + }, + { + "chartID": "69acccdaab3ae56d1ca2e21c66f8d79ca3ca24b8", + "data": { + "inGameID": 38346 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38346, + "versions": [ + "a3" + ] + }, + { + "chartID": "a287668f453d5aa0cd6a30ee4047d0f839f504a7", + "data": { + "inGameID": 38346 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38346, + "versions": [ + "a3" + ] + }, + { + "chartID": "59072e60b915948b805cd3c52d088918c9af400f", + "data": { + "inGameID": 38346 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38346, + "versions": [ + "a3" + ] + }, + { + "chartID": "3cde682c16bdf9fa0abf315b09ff07a456a3bdfc", + "data": { + "inGameID": 38346 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38346, + "versions": [ + "a3" + ] + }, + { + "chartID": "1350d0e37045e1ecbd394ff1623155205d87325e", + "data": { + "inGameID": 38347 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38347, + "versions": [ + "a3" + ] + }, + { + "chartID": "7b38b7cea8f734d10e8ec780c45eae3c3a51419c", + "data": { + "inGameID": 38347 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38347, + "versions": [ + "a3" + ] + }, + { + "chartID": "cf6f51739a4975b0da607a5dc637cd197d387c12", + "data": { + "inGameID": 38347 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38347, + "versions": [ + "a3" + ] + }, + { + "chartID": "c81f1625e0e6170ae5f34beaac0deed21460780f", + "data": { + "inGameID": 38347 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38347, + "versions": [ + "a3" + ] + }, + { + "chartID": "04ce706d03cd71435aa21da33e1446bd55a1e7b8", + "data": { + "inGameID": 38347 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38347, + "versions": [ + "a3" + ] + }, + { + "chartID": "9cc2ed126dddb294f9e5003dbc07f1c1c7710263", + "data": { + "inGameID": 38347 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38347, + "versions": [ + "a3" + ] + }, + { + "chartID": "42c4881ff3f25173a26aee0bf78df10f11ac490d", + "data": { + "inGameID": 38347 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38347, + "versions": [ + "a3" + ] + }, + { + "chartID": "8e5c168ad16fb44a9df02d66d3064ecb8d224d35", + "data": { + "inGameID": 38348 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38348, + "versions": [ + "a3" + ] + }, + { + "chartID": "36c08d226c199db678818e1b655b45d6ad774bca", + "data": { + "inGameID": 38348 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38348, + "versions": [ + "a3" + ] + }, + { + "chartID": "9cc218a3bf84f74223c8d28b33312ee661c7a8fb", + "data": { + "inGameID": 38348 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38348, + "versions": [ + "a3" + ] + }, + { + "chartID": "4698e3517537f220f195704089bbf2df1e1399d3", + "data": { + "inGameID": 38348 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38348, + "versions": [ + "a3" + ] + }, + { + "chartID": "4551afc95afad09f8b949d64ef3436a368d1756a", + "data": { + "inGameID": 38348 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38348, + "versions": [ + "a3" + ] + }, + { + "chartID": "d101ec8eb0ef115938d1c64cf29e58ae9800d421", + "data": { + "inGameID": 38348 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38348, + "versions": [ + "a3" + ] + }, + { + "chartID": "76e0232a14717f34e40fadd1bbe589ee098508ce", + "data": { + "inGameID": 38348 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38348, + "versions": [ + "a3" + ] + }, + { + "chartID": "5aea26525bc0175fecf8099e95b9cc87a6cde130", + "data": { + "inGameID": 38349 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38349, + "versions": [ + "a3" + ] + }, + { + "chartID": "0eb07c6a25c986cc0cea220d2768ff69a14f5e74", + "data": { + "inGameID": 38349 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38349, + "versions": [ + "a3" + ] + }, + { + "chartID": "fc133fd3f1a667d4449220ef77bac53bb6f7f417", + "data": { + "inGameID": 38349 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38349, + "versions": [ + "a3" + ] + }, + { + "chartID": "2e7cb8b059a81989d5f7f7ae119d7827d39ad1f1", + "data": { + "inGameID": 38349 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38349, + "versions": [ + "a3" + ] + }, + { + "chartID": "11179d7484e2041a5e2d6d7f9615368f92bbc60b", + "data": { + "inGameID": 38349 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38349, + "versions": [ + "a3" + ] + }, + { + "chartID": "ab8ba79aafbb8e433d2f1cb3ce0534e885a33193", + "data": { + "inGameID": 38349 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38349, + "versions": [ + "a3" + ] + }, + { + "chartID": "6cf628f46f9a1aa83be80b41400b632beb19e056", + "data": { + "inGameID": 38349 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38349, + "versions": [ + "a3" + ] + }, + { + "chartID": "faa3c92906f4c163180d056e230e2471fd343c59", + "data": { + "inGameID": 38350 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38350, + "versions": [ + "a3" + ] + }, + { + "chartID": "bb2496042f093b47fe4335db49cc719961382cdb", + "data": { + "inGameID": 38350 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38350, + "versions": [ + "a3" + ] + }, + { + "chartID": "39953360b17a83833372f04c980748010c66a644", + "data": { + "inGameID": 38350 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38350, + "versions": [ + "a3" + ] + }, + { + "chartID": "000ab502991d9f910c7d485cb8353fdc79c0d34d", + "data": { + "inGameID": 38350 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38350, + "versions": [ + "a3" + ] + }, + { + "chartID": "b35c95d50e423487604336a5f554d80b311c0c35", + "data": { + "inGameID": 38350 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38350, + "versions": [ + "a3" + ] + }, + { + "chartID": "d952986de2ef379459e7ba52e02859ec3d587dd4", + "data": { + "inGameID": 38350 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38350, + "versions": [ + "a3" + ] + }, + { + "chartID": "18be1a8cee9371fc8037599e5169a911db65d099", + "data": { + "inGameID": 38350 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38350, + "versions": [ + "a3" + ] + }, + { + "chartID": "9a6528bb4a46b684d03108d46abcd4dc69506e61", + "data": { + "inGameID": 38351 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38351, + "versions": [ + "a3" + ] + }, + { + "chartID": "f38ccbb67763f17f23a542cc378e480cd0c9e2e3", + "data": { + "inGameID": 38351 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38351, + "versions": [ + "a3" + ] + }, + { + "chartID": "8b399db5a760f6562f1eb91bc76b755669b647dd", + "data": { + "inGameID": 38351 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38351, + "versions": [ + "a3" + ] + }, + { + "chartID": "f231f8e1c8704544aed27830b1fda78fc7d16fb1", + "data": { + "inGameID": 38351 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38351, + "versions": [ + "a3" + ] + }, + { + "chartID": "f97bb166d9fe626098020cd0610b315f3c74dd47", + "data": { + "inGameID": 38351 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38351, + "versions": [ + "a3" + ] + }, + { + "chartID": "d2568bd649041be47486ff3ada0bd21f45705a7a", + "data": { + "inGameID": 38351 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38351, + "versions": [ + "a3" + ] + }, + { + "chartID": "dd1b30befcedb98d4fd2e3b05a864aaa8e9bb234", + "data": { + "inGameID": 38351 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38351, + "versions": [ + "a3" + ] + }, + { + "chartID": "c0c4287ad5780d03c62085643cde8cac6e79effd", + "data": { + "inGameID": 38352 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38352, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4442547ae7dd841bf5318501bac5674f20f597cc", + "data": { + "inGameID": 38352 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38352, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8a9864a56ca4486716d2da58a350af521e47f22f", + "data": { + "inGameID": 38352 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38352, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "57d74918ee82f2203738cbfd094791dd45c661fe", + "data": { + "inGameID": 38352 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38352, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c28c38877ed7ecf8600137e5e1c066fc4205d2f5", + "data": { + "inGameID": 38352 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38352, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5ca50a9aa090d5f3e3a52ba441e723124c427a0e", + "data": { + "inGameID": 38352 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38352, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "160f2abd43024db34aa35f9cb0bfc4529ebf8d6d", + "data": { + "inGameID": 38352 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38352, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "babda1c357aeef01eddabff10ea6775d07bf8746", + "data": { + "inGameID": 38352 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38352, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f906c12946974bfc7ef6cd722e4f537a4732b9b", + "data": { + "inGameID": 38352 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38352, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4e5b6b018aaaba22566029c7b304a8c79354cfba", + "data": { + "inGameID": 38353 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38353, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "15188978b92272eb42203c7cf25e4374e50cfe7a", + "data": { + "inGameID": 38353 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38353, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "61029edc628461111b57e439eabe8486f3cc4471", + "data": { + "inGameID": 38353 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38353, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c41a6199b797908242bc80349824411cc697dfec", + "data": { + "inGameID": 38353 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38353, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bc6dd31354598db7ddcebabf3c029cbf7bd376bf", + "data": { + "inGameID": 38353 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38353, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d1e692e64d6956f40cb2208845062d3caecca89b", + "data": { + "inGameID": 38353 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38353, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8ffb907d0eeb79d6c0e9e08845f22d03c68ff50d", + "data": { + "inGameID": 38353 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38353, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "59172219d59eb2cdfeb377d03bbd0c4c8940b639", + "data": { + "inGameID": 38354 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38354, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d72103ad8515602694b3a7d261d377980147a855", + "data": { + "inGameID": 38354 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38354, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce06e99b36309a6cd37d870f8a89185d72f0359d", + "data": { + "inGameID": 38354 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38354, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "566c2272a3a5a5f1577537d79f4a282a9e11eeb8", + "data": { + "inGameID": 38354 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38354, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ba902b46dca40c9c81f7881205880e8366117023", + "data": { + "inGameID": 38354 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38354, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e1bc27eb4612fcab7ce8685d87e1e2ba0be11211", + "data": { + "inGameID": 38354 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38354, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8704ce2e674e3122357751f205a6ff832b9840ed", + "data": { + "inGameID": 38354 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38354, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "abcd44037264a273f405ec2ec739356a5dd549e7", + "data": { + "inGameID": 38355 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38355, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "68b3da2008bcfd56b0d3e4a21e928a8b108b0748", + "data": { + "inGameID": 38355 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38355, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a5126807c112fce78dd5945f9867c056b394c646", + "data": { + "inGameID": 38355 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38355, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce79ec526d12dec1634aa742280a3c89c7c069a9", + "data": { + "inGameID": 38355 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38355, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a16a169a6a26f5df232f02184f7abd41be5e9eda", + "data": { + "inGameID": 38355 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38355, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "14bfab73ffb239ccab7a737078f2e67a99539457", + "data": { + "inGameID": 38355 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38355, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e28249293da4f5c03b3f21945c174b892f7f5c15", + "data": { + "inGameID": 38355 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38355, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2ec69e69c853a18f96646afdca28c9bb09354be8", + "data": { + "inGameID": 38356 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38356, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "63f7d65bd80c2ea362c96af7c3917048ffbd8a18", + "data": { + "inGameID": 38356 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38356, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7f713040e2f025ec69882060f9cf85eb63ffb77e", + "data": { + "inGameID": 38356 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38356, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ef79241aaa30fc698bfd74c90f3354c705cc2e4", + "data": { + "inGameID": 38356 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38356, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bd7a1c7e9ff0ca584e76a8673cccec837da3cb11", + "data": { + "inGameID": 38356 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38356, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6c82e51a9a48eced0a6f99354b4f13c6ffd221a9", + "data": { + "inGameID": 38356 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38356, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "54a54efafd5b15932e17646ded7f889f31001dac", + "data": { + "inGameID": 38356 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38356, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "821f57f48559df79f5a7432686484d4430a641e2", + "data": { + "inGameID": 38357 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38357, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "41e0a4673437e8d2a37a4ef31ed22607f4a3ddea", + "data": { + "inGameID": 38357 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38357, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f5dda4904e48891c0d81f82159cf4dea47e9aaf2", + "data": { + "inGameID": 38357 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38357, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4362528f2ac713b8f64bdabe703682d7e7f262a3", + "data": { + "inGameID": 38357 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38357, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4ddde1f5f77f4b8c9e81799a938fc035a12a66bc", + "data": { + "inGameID": 38357 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38357, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "64bd3f4e87af127ac92299ceced45f3eb34a813c", + "data": { + "inGameID": 38357 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38357, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1664387521ede59a9a09ac10ac8313da14fb3daa", + "data": { + "inGameID": 38357 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38357, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "04d1f54ead8595739e69f4c097dca5775bdd3240", + "data": { + "inGameID": 38358 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38358, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9108219370639021e8c38171e120efd969697bf9", + "data": { + "inGameID": 38358 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38358, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1a8479a4ba282cb6fc8bfb888dc1cc845c2499e8", + "data": { + "inGameID": 38358 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38358, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8b27d03c69b4bdc0822663ca52f2559bb03de849", + "data": { + "inGameID": 38358 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38358, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bba5dfe76015a9da69a266c126139a355de21427", + "data": { + "inGameID": 38358 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38358, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "62fe509ecfb40b4aaf61ef3d3ef8065d0fdc973c", + "data": { + "inGameID": 38358 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38358, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dc2c68c5a27f948ef54c96a8bd08ee8b7896c9a4", + "data": { + "inGameID": 38358 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38358, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d83881d8db664ea428d194f88e95c78579bbabe", + "data": { + "inGameID": 38358 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38358, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aaa80b2b9dad5dd25fcff16d44fd60032247c39a", + "data": { + "inGameID": 38358 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38358, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8091d1915d1b4e5cd4f7aa03ea4775e01c51385b", + "data": { + "inGameID": 38359 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38359, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5b0f6e91de98379e40725f607b113d6b1e39ffec", + "data": { + "inGameID": 38359 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38359, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "be9a775e82f2382d122a0ec61528528e0b41e5f5", + "data": { + "inGameID": 38359 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38359, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "22e36cb3dc8998653b639204c6baf9beb9c152e3", + "data": { + "inGameID": 38359 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38359, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ad8777d25406ce0cef483887fed07a76cf6223ba", + "data": { + "inGameID": 38359 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38359, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e735efd0d2a665b0737b70af1866b3bae0fe266f", + "data": { + "inGameID": 38359 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38359, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "162aa2955f522190f6759665f06416a4cc36dbf8", + "data": { + "inGameID": 38359 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38359, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce01748e3f2be1206fcf18ff5b710ae3dcc31886", + "data": { + "inGameID": 38360 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38360, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2908d5b7a91ba9ea36e6ca3962bdb0d4018f9c46", + "data": { + "inGameID": 38360 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38360, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0758981146c91b36eca2b09c09b1b8dbc6991b6c", + "data": { + "inGameID": 38360 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38360, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8b06d32884ff46afb5366be51d0db04c57d63749", + "data": { + "inGameID": 38360 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38360, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "981c7c3d44b7ad0e93924449f24bf37cb6fdd442", + "data": { + "inGameID": 38360 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38360, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "68846ecf70dad7eccbc3ade4a708d090af0aacf0", + "data": { + "inGameID": 38360 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38360, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bad78a7d2c4ebaeabdcca0cd17ed58ddba89a619", + "data": { + "inGameID": 38360 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38360, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d182e7fec82ceae1f32741613b16a0b03748b148", + "data": { + "inGameID": 38361 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38361, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "11070c78d6108247894636c4f7966e9f408d46f1", + "data": { + "inGameID": 38361 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38361, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "df9012af97e3e0a64ff601df2dd3bb7dfb253caf", + "data": { + "inGameID": 38361 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38361, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b3d4f00b92d29012aa4a052ad64fb0fc21f012bb", + "data": { + "inGameID": 38361 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38361, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c7560ef942f9d468a07ed15768104a8034f3609a", + "data": { + "inGameID": 38361 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38361, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "284cf30fa26d126285710201c59a51c2af3c533b", + "data": { + "inGameID": 38361 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38361, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "278305f329186c2cccfb2c3e7c36d73fa8666da6", + "data": { + "inGameID": 38361 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38361, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "01f5083190d5732ea8a8e3ffc49319209d15c4d6", + "data": { + "inGameID": 38362 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38362, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "78b550acdeef58a8c710b146275bc9a08b85413f", + "data": { + "inGameID": 38362 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38362, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0f713d9e8baa00c9cc957b0710128bc768610678", + "data": { + "inGameID": 38362 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38362, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "26a56c771b411cf99108b85680fd12114347e136", + "data": { + "inGameID": 38362 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38362, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0db172855d66f80c8b254abe21ebf49abc0310f7", + "data": { + "inGameID": 38362 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38362, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "20ceb0927b265350e190c3fe71181940339278ef", + "data": { + "inGameID": 38362 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38362, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "58df836e101b8202fa1cc6c489a2c1c435d1084f", + "data": { + "inGameID": 38362 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38362, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fdac4540611b2fcfe928b749e08daf1f4262a4e6", + "data": { + "inGameID": 38363 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38363, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "68c77001e27b59938dce67621e0d24b5cd7161ed", + "data": { + "inGameID": 38363 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38363, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "713757616222df04b297f2656f9451d98ef83743", + "data": { + "inGameID": 38363 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38363, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "28a8f79566b0f0e5e61e05366c97b70e5725308a", + "data": { + "inGameID": 38363 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38363, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "35d2ea9341706b82b15b49f7ccfa46af257c679a", + "data": { + "inGameID": 38363 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38363, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "299fe01fc9162087bd658933aa3eae2d920c1ffe", + "data": { + "inGameID": 38363 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38363, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a339dfcf77aecf789a39bb4e4249445243ee9617", + "data": { + "inGameID": 38363 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38363, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3e63dd6a49e62d58cf056a5c68fb098cc55042e1", + "data": { + "inGameID": 38363 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38363, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3787039e377f50f4dd5d19a277c98719706e4225", + "data": { + "inGameID": 38363 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38363, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "47db304d70165377783e460ebe4b2b12288ee62a", + "data": { + "inGameID": 38364 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38364, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2ce5d9f13ba4923426291e260664c1c7c58d5dc3", + "data": { + "inGameID": 38364 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38364, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c408fe9e5a455f7267f836e2ed3d74cc01fd1060", + "data": { + "inGameID": 38364 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38364, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9756db3a3b7ec5741be0c9511bce52bd471c2f56", + "data": { + "inGameID": 38364 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38364, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2114a7608f6817565773b431830278fce8d1c012", + "data": { + "inGameID": 38364 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38364, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3be997cbb03906ea6eb83af66b336aca4d0b0ac0", + "data": { + "inGameID": 38364 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38364, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "834f8c929f78df01ed945c2e54eb154ca43b6d72", + "data": { + "inGameID": 38364 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38364, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d1f794351c48f14399010a33d0a42c79a0762143", + "data": { + "inGameID": 38365 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38365, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6fd1d410d8d7232368711b1b7c7e48393dc15cd4", + "data": { + "inGameID": 38365 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38365, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f6d6e41d71872839df5ed9e409ba077b70213ec", + "data": { + "inGameID": 38365 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38365, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "68a947ca9a254ebfb1b8a642d163a7102dacf780", + "data": { + "inGameID": 38365 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38365, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aff5361cacf20d0a993865be3dd5625f39c0e5f1", + "data": { + "inGameID": 38365 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38365, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d79afcd4d5245e8873600d23fa612c85783f7f9b", + "data": { + "inGameID": 38365 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38365, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d5be11c6ee268c41f914cf2d3dcb26aa735c415f", + "data": { + "inGameID": 38365 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38365, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2a5647d98b2fd0b4c93b64560432fc628418fb3e", + "data": { + "inGameID": 38366 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38366, + "versions": [ + "a3" + ] + }, + { + "chartID": "a11e9c029842c53a444d1d1024b0d8948161b2c1", + "data": { + "inGameID": 38366 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38366, + "versions": [ + "a3" + ] + }, + { + "chartID": "e4ba11c979f0c534390be1865cffbef006c5aa2e", + "data": { + "inGameID": 38366 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38366, + "versions": [ + "a3" + ] + }, + { + "chartID": "fc264fdd45fe7f2e93ecb66104671bd7dbf68c93", + "data": { + "inGameID": 38366 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38366, + "versions": [ + "a3" + ] + }, + { + "chartID": "38f50e60d6c8e978670a0adf053140ae0cfac0ea", + "data": { + "inGameID": 38366 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38366, + "versions": [ + "a3" + ] + }, + { + "chartID": "4d768abe2e9334a912a5a917d297c7c712472679", + "data": { + "inGameID": 38366 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38366, + "versions": [ + "a3" + ] + }, + { + "chartID": "2714086dff77a2cefaf63fe6c767482a8580fc4d", + "data": { + "inGameID": 38366 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38366, + "versions": [ + "a3" + ] + }, + { + "chartID": "33fcb1382dcf64b33ecbb26bc504b696a99bdcfc", + "data": { + "inGameID": 38367 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38367, + "versions": [ + "a3" + ] + }, + { + "chartID": "488d3180b1d4eb15d6d56f0fd4f30ce1ff27842d", + "data": { + "inGameID": 38367 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38367, + "versions": [ + "a3" + ] + }, + { + "chartID": "31699ad0a006fc60f8a467b20dea4be8d37ecc57", + "data": { + "inGameID": 38367 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38367, + "versions": [ + "a3" + ] + }, + { + "chartID": "544c290a630af8a7dcf82db836cdc743c4e7494d", + "data": { + "inGameID": 38367 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38367, + "versions": [ + "a3" + ] + }, + { + "chartID": "9758a5cd806e85791ee94d8b79beeaf2c8da96de", + "data": { + "inGameID": 38367 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38367, + "versions": [ + "a3" + ] + }, + { + "chartID": "740deca4e500d8d8a773b90541c1b5542be3e413", + "data": { + "inGameID": 38367 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38367, + "versions": [ + "a3" + ] + }, + { + "chartID": "b7aa999f68c865fc610ca9c0d985698475481a4a", + "data": { + "inGameID": 38367 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38367, + "versions": [ + "a3" + ] + }, + { + "chartID": "8b4e4270a018c3bd10b9af4a5eebe001b1fdfe00", + "data": { + "inGameID": 38368 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38368, + "versions": [ + "a3" + ] + }, + { + "chartID": "b315570e35208b938920723a84654cbe635c2145", + "data": { + "inGameID": 38368 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38368, + "versions": [ + "a3" + ] + }, + { + "chartID": "c98556479632b1da50d7d3e618008615618ddfca", + "data": { + "inGameID": 38368 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38368, + "versions": [ + "a3" + ] + }, + { + "chartID": "aec1ee8562e06473da643093be38d17ffe2a9eb7", + "data": { + "inGameID": 38368 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38368, + "versions": [ + "a3" + ] + }, + { + "chartID": "b3365f410e61f7fe905254c0f973a070082ba6f6", + "data": { + "inGameID": 38368 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38368, + "versions": [ + "a3" + ] + }, + { + "chartID": "e20502992d2131e7ebe17ea573041617713d3d40", + "data": { + "inGameID": 38368 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38368, + "versions": [ + "a3" + ] + }, + { + "chartID": "e3fd5308216d0d94bb2300b8e303e269bfa9d767", + "data": { + "inGameID": 38368 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38368, + "versions": [ + "a3" + ] + }, + { + "chartID": "3c4ecc34e5a138763a908ba1dc3fe40492cbc5e3", + "data": { + "inGameID": 38369 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38369, + "versions": [ + "a3" + ] + }, + { + "chartID": "1e3830a4710568eb264fe9c863170d9d16888f4b", + "data": { + "inGameID": 38369 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38369, + "versions": [ + "a3" + ] + }, + { + "chartID": "859521df31f2df55e53d8a7bf2a7c62bf565cf80", + "data": { + "inGameID": 38369 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38369, + "versions": [ + "a3" + ] + }, + { + "chartID": "ced66ec6aa5f5fc835eec0297a712dc3fc259c15", + "data": { + "inGameID": 38369 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38369, + "versions": [ + "a3" + ] + }, + { + "chartID": "cb32f6793d41b94587c8f28b7000bbe3895d9248", + "data": { + "inGameID": 38369 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38369, + "versions": [ + "a3" + ] + }, + { + "chartID": "22630a6c423613ff55194eaf8b1d0be721f63ae0", + "data": { + "inGameID": 38369 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38369, + "versions": [ + "a3" + ] + }, + { + "chartID": "1527e18bd5bde290184096a694c525eb79e77c01", + "data": { + "inGameID": 38369 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38369, + "versions": [ + "a3" + ] + }, + { + "chartID": "3223efbda7bea4184200f8f75d12b7e94fa643b6", + "data": { + "inGameID": 38370 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38370, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "49a450f6453e42e3325f8acd4e25c32ba7235f4b", + "data": { + "inGameID": 38370 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38370, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2a9d8a53115bfbda467464d6817c7cb256d81057", + "data": { + "inGameID": 38370 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38370, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "644fd821976ed29cc0baa67494235306d41ad38c", + "data": { + "inGameID": 38370 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38370, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ffe33e518e87540c3185cc48c73bec9e5cced727", + "data": { + "inGameID": 38370 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38370, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "488a1c73dd94acdf3ea71a5a3d6fc2ebf87ef6e6", + "data": { + "inGameID": 38370 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38370, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "606d1f45989ba1ca42d3e30290bf543cc54adc28", + "data": { + "inGameID": 38370 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38370, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e1a5f228cd37158b822674f241686784e1d62de1", + "data": { + "inGameID": 38371 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38371, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1150c60632a84d7783354e4c1af4725579178bb7", + "data": { + "inGameID": 38371 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38371, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8a69f32469e148daebe38d7fc5c6504809132425", + "data": { + "inGameID": 38371 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38371, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce8bcd5c99c35159222efea27975f7ded2265f53", + "data": { + "inGameID": 38371 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38371, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6d14b91ea1d8bf84e8f089e14344fbfe72c0f887", + "data": { + "inGameID": 38371 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38371, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bed33bc1f7f72db0c8cc5690bb12a031e0990d60", + "data": { + "inGameID": 38371 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38371, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7ae28a4e3427312b1ffa1e6a1f9517a545b618ed", + "data": { + "inGameID": 38371 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38371, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "583e6ab4af46a3ffde1662acb747a9a920dc95ed", + "data": { + "inGameID": 38372 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38372, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e67924f063688b896735733710592a40ef0d121b", + "data": { + "inGameID": 38372 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38372, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "43f387c88f7fac405e99b5a377aca0429e86f018", + "data": { + "inGameID": 38372 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38372, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f68051e470186570ddbe9acb41708f1d5963bf38", + "data": { + "inGameID": 38372 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38372, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f8a0c0037384262fdf7472d984878cfa644de8f3", + "data": { + "inGameID": 38372 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38372, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4fc38af5518456612dcca06eceb41b27de5cc5ee", + "data": { + "inGameID": 38372 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38372, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "76b31589d84d15777e438ea5e31c269d02bbbd5f", + "data": { + "inGameID": 38372 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38372, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f240f84cb1fba4b7d04faeac1761c50c50e41cb1", + "data": { + "inGameID": 38373 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38373, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6caf8a43d5be69f97cfb15cd3473e1f3351bffe5", + "data": { + "inGameID": 38373 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38373, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "862dd9c70008fd2671bc9ee29a5b49d12b87d050", + "data": { + "inGameID": 38373 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38373, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bfeb44e77faed882d5c4c0940c0bc720b4399dfc", + "data": { + "inGameID": 38373 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38373, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7afa36bdfa4bcf16717a7a8baf96a966339e991d", + "data": { + "inGameID": 38373 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38373, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "19f24badf78a09f15c4c66c909788bc16c012979", + "data": { + "inGameID": 38373 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38373, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5408306e8788d6c36846972d23bdab4dfd2bb8ee", + "data": { + "inGameID": 38373 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38373, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ffb2dc4f2f447081f36d08041de7c50603401e5d", + "data": { + "inGameID": 38374 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38374, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fd390270af05230f9dbe9e4370557f4887123557", + "data": { + "inGameID": 38374 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38374, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "96786530658f1d13b47ad33f156ceea7c8038fe1", + "data": { + "inGameID": 38374 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38374, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ad243a0ad8fcf94e7495393ac4b1bc8de6eafd8", + "data": { + "inGameID": 38374 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38374, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0955338a7db41455e2cfcb854be1caa26fa94d8c", + "data": { + "inGameID": 38374 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38374, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e511f0b772207b45a48aa33ca99ef075f581c865", + "data": { + "inGameID": 38374 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38374, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1d39d29402964a1bf9c8579bb631dfbd7eaade1b", + "data": { + "inGameID": 38374 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38374, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e4eac0dfacfd5a9ef28fbcabe5791e2f61d65cb3", + "data": { + "inGameID": 38375 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38375, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6e8d7aaa6b762f87afcadb4a781c0e69641594f8", + "data": { + "inGameID": 38375 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38375, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f708978fb3cf3456ffd0cb80de7d285a06230d6c", + "data": { + "inGameID": 38375 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38375, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d0d5f8ec9ae14be62125c98d9b298308c3aa0f3b", + "data": { + "inGameID": 38375 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38375, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8a06510ab7db7c897567ff8a16c0bfbcdd50cb6a", + "data": { + "inGameID": 38375 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38375, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b31d0a4769fb589cdd2c5767eeffb2fbff77843f", + "data": { + "inGameID": 38375 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38375, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "604a886a1238b3c85a7e9fe76fcb1ab40d01ea16", + "data": { + "inGameID": 38375 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38375, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ea6f613385d19b498429a18fde7c7e01c631e281", + "data": { + "inGameID": 38376 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38376, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4dce514f42f16fa24e4d878104ec63ce102d8bb0", + "data": { + "inGameID": 38376 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38376, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "34e3d08d01db8ad32dabffa517ac93a5484a0b59", + "data": { + "inGameID": 38376 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38376, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6d0a336359c5efa7adf8a0265dc8f08e15c5ecca", + "data": { + "inGameID": 38376 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38376, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e405f0f756f504e440b60dd226ec55618b169c40", + "data": { + "inGameID": 38376 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38376, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "236a3de52299a9198696d9907bd6259e9a932e3f", + "data": { + "inGameID": 38376 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38376, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a050c95b726e41133aebc97ae27116db69859593", + "data": { + "inGameID": 38376 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38376, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dedf057ccdf0589c38a7d0a4ef93403f50b4e720", + "data": { + "inGameID": 38377 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38377, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6e3d8daf97a051b981ee21a7b71aee5c3be7f8b0", + "data": { + "inGameID": 38377 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38377, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "49e6da9c96543052352e9580390ddfd19c7f1629", + "data": { + "inGameID": 38377 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38377, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fabc672c422cdb8b05e6e5bc9481022fabf7b149", + "data": { + "inGameID": 38377 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38377, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "33977be12c4a276dc5ec4ed20a228971e8ba850a", + "data": { + "inGameID": 38377 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38377, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0c30301d404d7573acebf6bdf08993a53d4e0747", + "data": { + "inGameID": 38377 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38377, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "09fbf933ec93f96bb72fa86ee5ab148912dd381d", + "data": { + "inGameID": 38377 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38377, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bacf609081668937e1b180766794450342da8eb2", + "data": { + "inGameID": 38378 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38378, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2aa904228fe157e0f04b181140f43fce9dbba87d", + "data": { + "inGameID": 38378 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38378, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b0b41db11b5ad8872058a86f8eff9424a5727f62", + "data": { + "inGameID": 38378 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38378, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d6d9624873e8c08a6c20fbce5c39564ca90dac98", + "data": { + "inGameID": 38378 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38378, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a1e2f612835c518e3bbef0dc17cc28c432aa11e9", + "data": { + "inGameID": 38378 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38378, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "566715fa2966bc961e4280dbf431d50c17f7a2c4", + "data": { + "inGameID": 38378 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38378, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "30d10294e07e4f98a3566dd3b295835a5a821c45", + "data": { + "inGameID": 38378 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38378, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "82c8355536dd5e04c45c61c4bf9e551a53471b55", + "data": { + "inGameID": 38379 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38379, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f7e791926d9724e7c75a002a72b5a6f94cbe2421", + "data": { + "inGameID": 38379 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38379, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "57f4d5bf2a88269a089933bc799a48bf33cfebd1", + "data": { + "inGameID": 38379 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38379, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3393044f4109c5244a3eabc7230a6536a56b0e19", + "data": { + "inGameID": 38379 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38379, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2d8aaba0c0562df75d56c8fff48fee5513b8b031", + "data": { + "inGameID": 38379 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38379, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9afdda42ab5f34d6f77c64606d39ba545089530e", + "data": { + "inGameID": 38379 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38379, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0e405a309e518aa0d4fc0024f494ccda4c7cabe9", + "data": { + "inGameID": 38379 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38379, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "82fd4b3c1f2224838dcce6ddd63afce0a67faee0", + "data": { + "inGameID": 38380 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38380, + "versions": [ + "a3" + ] + }, + { + "chartID": "eb3e561a812990136ae11961d4b7b3247f7a861a", + "data": { + "inGameID": 38380 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38380, + "versions": [ + "a3" + ] + }, + { + "chartID": "c05466748a4616651c53dc281ec9fe19d240123c", + "data": { + "inGameID": 38380 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38380, + "versions": [ + "a3" + ] + }, + { + "chartID": "5f90935931a9a1dfbd5826fd61768855ab5c0c76", + "data": { + "inGameID": 38380 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38380, + "versions": [ + "a3" + ] + }, + { + "chartID": "9976d44750e70c5a558c900f5fe42a691ff0bf74", + "data": { + "inGameID": 38380 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38380, + "versions": [ + "a3" + ] + }, + { + "chartID": "41cf1e315fbffbe7249d11cc95412628a9d3d376", + "data": { + "inGameID": 38380 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38380, + "versions": [ + "a3" + ] + }, + { + "chartID": "60db2d04b46dd0bbe94f96b254833c57947e68f3", + "data": { + "inGameID": 38380 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38380, + "versions": [ + "a3" + ] + }, + { + "chartID": "134737bffab762c0ef3cac265bfa5058ae512879", + "data": { + "inGameID": 38381 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38381, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "92412c0c23ec59cf989424644ac2dfcc51176a2d", + "data": { + "inGameID": 38381 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38381, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b92ebc30df517c93a01fbd7f1304d5b47d990dd2", + "data": { + "inGameID": 38381 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38381, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d6ca444c78e51e41a4bce99eca9204e1e8773cd7", + "data": { + "inGameID": 38381 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38381, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cc62e08b57b69192ff1b2b15448db812e108793f", + "data": { + "inGameID": 38381 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38381, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4c87ece3c70d60c2a71b9003f9208aeb7fe54c84", + "data": { + "inGameID": 38381 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38381, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "05cf8880f4879fcdcd9ddf4ee98c2624ebcb7c34", + "data": { + "inGameID": 38381 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38381, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a0875d573f4ae2900cc5e5d60d89655bc77dfada", + "data": { + "inGameID": 38382 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38382, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "01c7450a154b3d614524bfc504fec5c2dbfc79f7", + "data": { + "inGameID": 38382 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38382, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cdfb943f4b7d240c1b86689da9e2ef336edfc7c8", + "data": { + "inGameID": 38382 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38382, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2676e8603c74e836a1a90059209baccaae2c759f", + "data": { + "inGameID": 38382 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38382, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6edcf399ec656d5d184d75c6b2e408545b995093", + "data": { + "inGameID": 38382 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38382, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9b31fb883e709afdea11fa921eaaa77bd2bc97c3", + "data": { + "inGameID": 38382 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38382, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "965d93beaac6214b3e926526360241092d6557d5", + "data": { + "inGameID": 38382 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38382, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "15c24841b86775a8f9edc30ae262e510aa043486", + "data": { + "inGameID": 38383 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38383, + "versions": [ + "a3" + ] + }, + { + "chartID": "a5846b9d7c27a6d16dd29bc6bb7e53c1f275e377", + "data": { + "inGameID": 38383 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38383, + "versions": [ + "a3" + ] + }, + { + "chartID": "ef03b2c4e3ce7bf93aab05140b9e93025e7f40b3", + "data": { + "inGameID": 38383 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38383, + "versions": [ + "a3" + ] + }, + { + "chartID": "cd4d968a042af1407bb9b59e1d8b57ce8257db4b", + "data": { + "inGameID": 38383 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38383, + "versions": [ + "a3" + ] + }, + { + "chartID": "96c4ae7896a8439464992b40201d9ac4621457b6", + "data": { + "inGameID": 38383 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38383, + "versions": [ + "a3" + ] + }, + { + "chartID": "97be42d05106c622dc9f99b3a10e021d97d2fe6c", + "data": { + "inGameID": 38383 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38383, + "versions": [ + "a3" + ] + }, + { + "chartID": "9198fa3153a9a1ea0b33f6b8b2f4e57f227713f0", + "data": { + "inGameID": 38383 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38383, + "versions": [ + "a3" + ] + }, + { + "chartID": "9eb760fc07af44459510dc3687710a99fe8aae6d", + "data": { + "inGameID": 38384 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38384, + "versions": [ + "a3" + ] + }, + { + "chartID": "bb70902fa6211f27229756907ea31fff13eaf615", + "data": { + "inGameID": 38384 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38384, + "versions": [ + "a3" + ] + }, + { + "chartID": "6126602458f3343c0d0f25c44dedf35605a36002", + "data": { + "inGameID": 38384 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38384, + "versions": [ + "a3" + ] + }, + { + "chartID": "618b564bcca79a397ecf6f52daec4480f28ae12f", + "data": { + "inGameID": 38384 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38384, + "versions": [ + "a3" + ] + }, + { + "chartID": "b64dfe6531fa1d2580f49f577e239a70876e6332", + "data": { + "inGameID": 38384 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38384, + "versions": [ + "a3" + ] + }, + { + "chartID": "6f66954870f94497fa498547824a84f183b438c8", + "data": { + "inGameID": 38384 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38384, + "versions": [ + "a3" + ] + }, + { + "chartID": "aae0b52b8c3ef37585a7f0a87e30c0ffe09a9610", + "data": { + "inGameID": 38384 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38384, + "versions": [ + "a3" + ] + }, + { + "chartID": "430dff475e24168fc1033813d9d627e47c12e67c", + "data": { + "inGameID": 38385 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38385, + "versions": [ + "a3" + ] + }, + { + "chartID": "ffdf5d9c4d929a0669c412b68792570edd3c17ef", + "data": { + "inGameID": 38385 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38385, + "versions": [ + "a3" + ] + }, + { + "chartID": "b751cd66e1e6d650c3be255d74b629183a7d6dde", + "data": { + "inGameID": 38385 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38385, + "versions": [ + "a3" + ] + }, + { + "chartID": "1742847c43f97cf6abb0bbb9da3de353e3e56315", + "data": { + "inGameID": 38385 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38385, + "versions": [ + "a3" + ] + }, + { + "chartID": "eab92eae2028da9b69a15c176b3738476b321e17", + "data": { + "inGameID": 38385 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38385, + "versions": [ + "a3" + ] + }, + { + "chartID": "c22d02028dbaab713050d1182d76258886051e2e", + "data": { + "inGameID": 38385 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38385, + "versions": [ + "a3" + ] + }, + { + "chartID": "83eabf02ea03b7516d5015d67616206a56f8b9c4", + "data": { + "inGameID": 38385 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38385, + "versions": [ + "a3" + ] + }, + { + "chartID": "334546a7bdfcbbb908c2e3a9e5eaf56c15d40882", + "data": { + "inGameID": 38386 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38386, + "versions": [ + "a3" + ] + }, + { + "chartID": "5fb4b7d88081e9346b3de92dc55cafa0f75bd73f", + "data": { + "inGameID": 38386 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38386, + "versions": [ + "a3" + ] + }, + { + "chartID": "d7178e0a79ff66f0f892fb3e7c82ad614a64d3fd", + "data": { + "inGameID": 38386 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38386, + "versions": [ + "a3" + ] + }, + { + "chartID": "11207f2f9683760d213ee992e9c0a09db8d0c77d", + "data": { + "inGameID": 38386 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38386, + "versions": [ + "a3" + ] + }, + { + "chartID": "9d4b6741f2911b658a128f22289dd0b8f37ba55c", + "data": { + "inGameID": 38386 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38386, + "versions": [ + "a3" + ] + }, + { + "chartID": "ebbd677e0862f253316413811de8ac204570def4", + "data": { + "inGameID": 38386 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38386, + "versions": [ + "a3" + ] + }, + { + "chartID": "d77a6d5525453fa62914e570f0be726dbb3ccdea", + "data": { + "inGameID": 38386 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38386, + "versions": [ + "a3" + ] + }, + { + "chartID": "d454848f28f8c1c46088d58c27f0db92c8672d27", + "data": { + "inGameID": 38388 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38388, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8f26ec3c95538d7020e5783c3e0449669f2750fc", + "data": { + "inGameID": 38388 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38388, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f264b572510e66e5a211bc58b95ff1cd5b3f4763", + "data": { + "inGameID": 38388 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38388, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "754d94b0c4a47b5dc3ad58535f7295a1b762f097", + "data": { + "inGameID": 38388 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38388, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5f12a4bf838690f650a089aa6e191e9f6d68b020", + "data": { + "inGameID": 38388 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38388, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6515e4a80e382a91b7f4d3a568f9ef8b0d9a10b7", + "data": { + "inGameID": 38388 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38388, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a88ad058ed915516e9a4d83f44e3e14648dd1275", + "data": { + "inGameID": 38388 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38388, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7bd1ace475b47926c57b61f99d00e827647635da", + "data": { + "inGameID": 38389 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38389, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "17fee56767a2b80e684600caff8f3f0a729bdddb", + "data": { + "inGameID": 38389 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38389, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0c051e30389002da9fb0e65839d4c1a34cdc0d2d", + "data": { + "inGameID": 38389 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38389, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "64f9ad16581481eab448231e1b6129cd8bfbf77f", + "data": { + "inGameID": 38389 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38389, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "abeb6cf19761bbc9ce9150ab4ec2ac2902bb86c8", + "data": { + "inGameID": 38389 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38389, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "423263fe7e506d3eb5fb6f1f5296f49893f4e0dc", + "data": { + "inGameID": 38389 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38389, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7fa55e08e681d3a59f23a670680455be6c54e7e9", + "data": { + "inGameID": 38389 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38389, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9e619bc202ae4672e0aab0f7e65349260e765137", + "data": { + "inGameID": 38390 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38390, + "versions": [ + "a3" + ] + }, + { + "chartID": "05b3be4cf582abb23198cdbbd16d92377564d032", + "data": { + "inGameID": 38390 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38390, + "versions": [ + "a3" + ] + }, + { + "chartID": "3e27b4a813808da5098e6260e163428cb2c36a81", + "data": { + "inGameID": 38390 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38390, + "versions": [ + "a3" + ] + }, + { + "chartID": "a6ef781f1725d6f0567bac5e8bd0bc2550f7c92b", + "data": { + "inGameID": 38390 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38390, + "versions": [ + "a3" + ] + }, + { + "chartID": "573c528fca900c1f2422f6523ab0f68eee9e2bbf", + "data": { + "inGameID": 38390 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38390, + "versions": [ + "a3" + ] + }, + { + "chartID": "84cc6a6222b112fe04e525bfebf1b35e8c7c4c03", + "data": { + "inGameID": 38390 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38390, + "versions": [ + "a3" + ] + }, + { + "chartID": "edc0ad38acbf0f147ca4e5df31b63e66ae6ac4d7", + "data": { + "inGameID": 38390 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38390, + "versions": [ + "a3" + ] + }, + { + "chartID": "0d816129a37822e4153f3ea4a7b0df5148cb6f78", + "data": { + "inGameID": 38391 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38391, + "versions": [ + "a3" + ] + }, + { + "chartID": "4f578287eece70d689773f5ce0b3d61fe7a93bb8", + "data": { + "inGameID": 38391 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38391, + "versions": [ + "a3" + ] + }, + { + "chartID": "22a6c4f6a41869d2e3369c0f78f5622d5611fa6a", + "data": { + "inGameID": 38391 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38391, + "versions": [ + "a3" + ] + }, + { + "chartID": "773c8a630611b769216a5735a15db11af464d7b3", + "data": { + "inGameID": 38391 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38391, + "versions": [ + "a3" + ] + }, + { + "chartID": "5603cf78a19551b1b5843e27c4bf1a688fe0e92a", + "data": { + "inGameID": 38391 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38391, + "versions": [ + "a3" + ] + }, + { + "chartID": "bf7abed98963f04e611440dfa00630f4653fe9cc", + "data": { + "inGameID": 38391 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38391, + "versions": [ + "a3" + ] + }, + { + "chartID": "9ab1f30f149f2937ff4522f08800476814c50cb7", + "data": { + "inGameID": 38391 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38391, + "versions": [ + "a3" + ] + }, + { + "chartID": "0db0c2875fff5a33920210c04b418f2ec36879f4", + "data": { + "inGameID": 38391 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38391, + "versions": [ + "a3" + ] + }, + { + "chartID": "9102f9ee8400d53d4426b6dba03175d2ecdc01a0", + "data": { + "inGameID": 38391 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38391, + "versions": [ + "a3" + ] + }, + { + "chartID": "222adbdd86c5bf5a1effbee2596bafbfa89ce755", + "data": { + "inGameID": 38392 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38392, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f0a555d9857c55cdac2aad2f0afe3ef6eb269c38", + "data": { + "inGameID": 38392 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38392, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2d5c7fefc61af3e8969581d75a3f635ca4d9b4df", + "data": { + "inGameID": 38392 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38392, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9537edc49132d9e684f128b512e9550dc5d7489e", + "data": { + "inGameID": 38392 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38392, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b7bbbb7f3f04a7e1c7a637038816a6fb33ec7cc9", + "data": { + "inGameID": 38392 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38392, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bf1d61b1eca6f396cfa5c72d7f907d25087e9076", + "data": { + "inGameID": 38392 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38392, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e0918907ec4563d19fdb1c5977df5a73114fc1f0", + "data": { + "inGameID": 38392 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38392, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fc5815bfb05ad2cb60555ace273e93811fcbf3d6", + "data": { + "inGameID": 38393 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38393, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6e8c5914ec017d7d5ee15faef332ff31485afd92", + "data": { + "inGameID": 38393 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38393, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d1970c6e16c9d9cd4ae0d7a3dc1d78456157622b", + "data": { + "inGameID": 38393 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38393, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1f36692766e51a87932a79eab8009843b7d523b9", + "data": { + "inGameID": 38393 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38393, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "19a8685c4b2197cdef5002745acbcac9f4c6cbe6", + "data": { + "inGameID": 38393 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38393, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5c5c5fbd69efc21202acf1b0d4ca5ec537d109a6", + "data": { + "inGameID": 38393 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38393, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "93ef43dbc586ab26e2480fabd0e86ed87eb9b707", + "data": { + "inGameID": 38393 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38393, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b692938395123d9d3100e3ad9ec3b9a14c0d368c", + "data": { + "inGameID": 38393 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38393, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d831f028ac235cd2ccc919a409f429cc6bb7735d", + "data": { + "inGameID": 38393 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38393, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b9f3fdb4990f4625ec71d83ebc6fa4297db735b2", + "data": { + "inGameID": 38394 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38394, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "abf3d6a539461c4ba11f19828171345a5a540ee8", + "data": { + "inGameID": 38394 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38394, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2c77f8112a0ba91b860ec8cc79e344b676076dbf", + "data": { + "inGameID": 38394 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38394, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ba661e10b661b8ccfcd81cdfafb9b950b04068b7", + "data": { + "inGameID": 38394 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38394, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2ee96750824d8e6c6a46e09cc19606aed80d6acf", + "data": { + "inGameID": 38394 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38394, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1db01643659afbfae7a6ba12474e7245ef3f0e6a", + "data": { + "inGameID": 38394 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38394, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "71bcc9b6e7d31f931cc5afd42e34f620d2d8295f", + "data": { + "inGameID": 38394 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38394, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ade973d1d2d21f553dbf5fb419e3bc97718215b3", + "data": { + "inGameID": 38395 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38395, + "versions": [ + "a3" + ] + }, + { + "chartID": "b22c8eee27636f2b05749af27afeb54906ecfb24", + "data": { + "inGameID": 38395 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38395, + "versions": [ + "a3" + ] + }, + { + "chartID": "5d1e25ade555107d4a6f53cf18792cb3012186a0", + "data": { + "inGameID": 38395 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38395, + "versions": [ + "a3" + ] + }, + { + "chartID": "491e1e4a3920f9ee74874ee9bb65c2c9ef8ffe47", + "data": { + "inGameID": 38395 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38395, + "versions": [ + "a3" + ] + }, + { + "chartID": "34a40cbabc5afc1b1a2f6f701b9866ef6d71d89d", + "data": { + "inGameID": 38395 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38395, + "versions": [ + "a3" + ] + }, + { + "chartID": "d30d7340ec004470b5fe86a50448f717c6406974", + "data": { + "inGameID": 38395 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38395, + "versions": [ + "a3" + ] + }, + { + "chartID": "0f95763eb4e4b4108afeac960b03bcb65377463a", + "data": { + "inGameID": 38395 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38395, + "versions": [ + "a3" + ] + }, + { + "chartID": "66136c273f32473e44e6a7d29a50ec0303701d42", + "data": { + "inGameID": 38395 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38395, + "versions": [ + "a3" + ] + }, + { + "chartID": "eb8b69bbd0673fe19204e48d14bc083d976e8c16", + "data": { + "inGameID": 38395 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38395, + "versions": [ + "a3" + ] + }, + { + "chartID": "1a78aaff558bd36ccc311a9c432510f23fb7c363", + "data": { + "inGameID": 38396 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38396, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "352d82a286ec44f7af979cff3c71ab2dcc79bed8", + "data": { + "inGameID": 38396 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38396, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c31a8549fb31de80ac41e0b7782531357a66db5c", + "data": { + "inGameID": 38396 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38396, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bccdf1a76083220b73b328be203fc56ee1ec01ed", + "data": { + "inGameID": 38396 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38396, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7d9451f7a326641d45007a64a572464b5c179c50", + "data": { + "inGameID": 38396 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38396, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5b291e4f642ce1a5a6977c65209e075ae480c4a0", + "data": { + "inGameID": 38396 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38396, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1df652c924afa6dbb23ce9ea604738609ea8ccad", + "data": { + "inGameID": 38396 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38396, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d2da06257e301435ecd2a6fac89efd5274d2e50e", + "data": { + "inGameID": 38397 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38397, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fb4d5ea84893e6643234f635b8ead92efd751f84", + "data": { + "inGameID": 38397 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38397, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3215ac9cda0a7c4999a6477f2682e63de72e45d5", + "data": { + "inGameID": 38397 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38397, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5f2aa015135f4f93d9cd4f316cadfffd3ecf8656", + "data": { + "inGameID": 38397 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38397, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c900928953b37281e17c1111ce68ef9c8259386f", + "data": { + "inGameID": 38397 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38397, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4123e07ef87f5b60631b9b3a90c96402eeed4e23", + "data": { + "inGameID": 38397 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38397, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ea02181f4efd7c2dbd132e6ecf1e236eeed1e502", + "data": { + "inGameID": 38397 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38397, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "309c06b154c0802673c408aa3caca51cec26a690", + "data": { + "inGameID": 38398 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38398, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "00866d6f1b87e0c78a9041b700b9dea6bab2b927", + "data": { + "inGameID": 38398 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38398, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "99c3fbc62104391987869f14bddd2b25db7a0b5d", + "data": { + "inGameID": 38398 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38398, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "99838a49be2fde85c948db5193c0e53ec648b45e", + "data": { + "inGameID": 38398 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38398, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6595217011fb5cd5a72f1af716c8281d45dc1360", + "data": { + "inGameID": 38398 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38398, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "23d346a96e9888d2492b141ef74ca5b67ac62b9f", + "data": { + "inGameID": 38398 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38398, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5fe4e45bdb2eff6257a93f40ec519342a590372c", + "data": { + "inGameID": 38398 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38398, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cf3dc56734bb480258754c1357eaa1caf7ca4206", + "data": { + "inGameID": 38399 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38399, + "versions": [ + "a3" + ] + }, + { + "chartID": "e501bd32644b574be189faa286b86b1ef827b98c", + "data": { + "inGameID": 38399 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38399, + "versions": [ + "a3" + ] + }, + { + "chartID": "53dbffe72393728587db742b2d122b9bf590a8e3", + "data": { + "inGameID": 38399 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38399, + "versions": [ + "a3" + ] + }, + { + "chartID": "8b40bb0a60aa652b0015e149a0a7f75fa8db8bdd", + "data": { + "inGameID": 38399 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38399, + "versions": [ + "a3" + ] + }, + { + "chartID": "ab49bc5778daea2d0ac5a4ca4af7e601820d5c8c", + "data": { + "inGameID": 38399 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38399, + "versions": [ + "a3" + ] + }, + { + "chartID": "712c23b1fc8512f355823276b28e087ca3c0c1d2", + "data": { + "inGameID": 38399 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38399, + "versions": [ + "a3" + ] + }, + { + "chartID": "2162495280550a251ebf6e1c5315907dd69447b3", + "data": { + "inGameID": 38399 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38399, + "versions": [ + "a3" + ] + }, + { + "chartID": "3ea317584644ece50e141e0436931b712dfb352c", + "data": { + "inGameID": 38399 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38399, + "versions": [ + "a3" + ] + }, + { + "chartID": "b6668a4e8970805344c1514c1ce6b0b1679d293b", + "data": { + "inGameID": 38399 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38399, + "versions": [ + "a3" + ] + }, + { + "chartID": "3279c506d2020e094c5efa245fce17a25786ec46", + "data": { + "inGameID": 38400 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38400, + "versions": [ + "a3" + ] + }, + { + "chartID": "18461978e7da39a44a26196281728caa4e67d26e", + "data": { + "inGameID": 38400 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38400, + "versions": [ + "a3" + ] + }, + { + "chartID": "6d6902f5100326ce067ffbfdd1552021d607a064", + "data": { + "inGameID": 38400 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38400, + "versions": [ + "a3" + ] + }, + { + "chartID": "3eb7419795b0ca84b226bad86c803b8340633130", + "data": { + "inGameID": 38400 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38400, + "versions": [ + "a3" + ] + }, + { + "chartID": "0fa1bf22ae4d5b13958400d31daa2a6306a2edd2", + "data": { + "inGameID": 38400 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38400, + "versions": [ + "a3" + ] + }, + { + "chartID": "0ac520f3ae4e431125328d5c6f6040e183c318f0", + "data": { + "inGameID": 38400 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38400, + "versions": [ + "a3" + ] + }, + { + "chartID": "8b0da330acf9ed0f455457f912ab5c30d65b832c", + "data": { + "inGameID": 38400 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38400, + "versions": [ + "a3" + ] + }, + { + "chartID": "8ae7b4e3b42461ce7c00a7dcab800dec070ba86f", + "data": { + "inGameID": 38400 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38400, + "versions": [ + "a3" + ] + }, + { + "chartID": "4f4c488a5850cb78847eb7c7af2e865eabc61187", + "data": { + "inGameID": 38400 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38400, + "versions": [ + "a3" + ] + }, + { + "chartID": "533db77b7ec304567951de46a06aa419fa01bbae", + "data": { + "inGameID": 38401 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38401, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "39c32a6fab5dacccaecffa4ea4b7bcb913c2af73", + "data": { + "inGameID": 38401 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38401, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6116419b01a3619a3695488884ee536c6d034d06", + "data": { + "inGameID": 38401 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38401, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ba38c33bc9fe27590bf21cba94e270a558b009d0", + "data": { + "inGameID": 38401 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38401, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "242a6ff0d2aaa2022f26ce1b1ffda0e78fe94c68", + "data": { + "inGameID": 38401 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38401, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7d921e2e7b053b8209afb4609769cecebd1283f7", + "data": { + "inGameID": 38401 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38401, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "32c85b713d7ee61374e08bc5e19ba87e329fb3e0", + "data": { + "inGameID": 38401 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38401, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fbfee238fca7cd60498bc2f5374b16c44c991cb8", + "data": { + "inGameID": 38402 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38402, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d985892a1c7ffbd69183ddefeaba5d23a57ad8a0", + "data": { + "inGameID": 38402 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38402, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c9e7793043d55242dc50f0a0d1200d0fdb7fd4c8", + "data": { + "inGameID": 38402 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38402, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ec87f7522fb3acf7e7976a2f5797f07194bacfc1", + "data": { + "inGameID": 38402 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38402, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c579294712adc42efa135ab325ae7a986f628a3b", + "data": { + "inGameID": 38402 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38402, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2fab3030297dc466f64270cdf000a9093bba0e52", + "data": { + "inGameID": 38402 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38402, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d98403d176f7c76fdea031811c6b1f20a4013fea", + "data": { + "inGameID": 38402 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38402, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7c5a19807027dcd5ea80b7d77a1e942ab2b233d4", + "data": { + "inGameID": 38403 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38403, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8942d0010d64ddee3748f37709624fed277c839", + "data": { + "inGameID": 38403 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38403, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4501b7852d99a496b224ea9fa8708c34842aa371", + "data": { + "inGameID": 38403 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38403, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e87453f59cdf439ccc3586277e82646bf34d5476", + "data": { + "inGameID": 38403 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38403, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "54046890082590d8762b98252237bd42dee30c16", + "data": { + "inGameID": 38403 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38403, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3aa8bd277e89a8844319755d5c26a71549aa97f4", + "data": { + "inGameID": 38403 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38403, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1b3af4ab49f71f9f55437da18207da8761d1da73", + "data": { + "inGameID": 38403 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38403, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4e0819b051a7c327020f19d93abb547089132c88", + "data": { + "inGameID": 38404 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38404, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "afeed705136c61c310bcc7512e4bae3fb0b7636b", + "data": { + "inGameID": 38404 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38404, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4b6096db3d1e9056c20d2741671e25316412f8da", + "data": { + "inGameID": 38404 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38404, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0404f5062d4ed1157695dd6ce4c3d7805d3d9169", + "data": { + "inGameID": 38404 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38404, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8065e027bbf33185467948d4c7a66ce46d11f553", + "data": { + "inGameID": 38404 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38404, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5ba31dd9bae42fcf182a14fdfe9f03dbdfb57a70", + "data": { + "inGameID": 38404 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38404, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7747938ccfb4461c720f9d93cc5535e45fb73b65", + "data": { + "inGameID": 38404 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38404, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "28f41686be57300f79ae74c9f5c0736da4f9ffbd", + "data": { + "inGameID": 38405 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38405, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ac933ee22e04a5d75907c49f3391c53afaa7fe93", + "data": { + "inGameID": 38405 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38405, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1eea1aed0a07ae68fc6d0af28cdd7d5026056006", + "data": { + "inGameID": 38405 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38405, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "de7d6570b69ac69e88f1c027c2635bec26a4f5cc", + "data": { + "inGameID": 38405 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38405, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "18820ddca904f4c45a08c9badf5b1af798fb647f", + "data": { + "inGameID": 38405 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38405, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2aef2a07477de7cb5d4e3d51c0ac14fd6e2623c6", + "data": { + "inGameID": 38405 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38405, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5c605d82d01d1156f955e92c6183afaedf1f2aac", + "data": { + "inGameID": 38405 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38405, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "37c2936b6a847c4bee7ac0a769c7d561c7a25c67", + "data": { + "inGameID": 38406 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38406, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b510f37e9e2e90b663f9fe784feb294454904b6a", + "data": { + "inGameID": 38406 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38406, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "674bf8d5c18a76cef7cee7843db231e6c3d25b75", + "data": { + "inGameID": 38406 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38406, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2de02be33a4357a6167c81a38a390ecc81b2ed60", + "data": { + "inGameID": 38406 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38406, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "11f3070604b89fd7d602818e7faa1258e45a9db7", + "data": { + "inGameID": 38406 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38406, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1a40c4ceac87ccd0fd7731ae1a715beae6094445", + "data": { + "inGameID": 38406 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38406, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "040b819b93aedceea79014d0f68dfdf2e1e58481", + "data": { + "inGameID": 38406 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38406, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c00460670e6ea3471bfe094865de8c2d5e842531", + "data": { + "inGameID": 38406 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38406, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ba512156a8fd9adc602e61849acd8fd46ede8751", + "data": { + "inGameID": 38406 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38406, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cf91c090d5d2bbee7adc7a1390178aae130ae1f8", + "data": { + "inGameID": 38407 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38407, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4bb31d0ee8163ba14170b301ea1f4cb5ca75438a", + "data": { + "inGameID": 38407 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38407, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2b3bd754893e892cab246571b215f5af01cf000a", + "data": { + "inGameID": 38407 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38407, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d5caa19a19369053cb5804828ae8b9a7ae2c4dcc", + "data": { + "inGameID": 38407 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38407, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b4f99816994e066147d09b8476109eb1c55f3455", + "data": { + "inGameID": 38407 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38407, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "58f204d1efdf5a8ade390b63c54633a426913187", + "data": { + "inGameID": 38407 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38407, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f74a745c7511ed4df7cc8ac97c384c53f85b58f", + "data": { + "inGameID": 38407 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38407, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "997a11140f8e5e8f7561ec82d51141e405e010f3", + "data": { + "inGameID": 38408 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38408, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "60d2d4b561e482205551c69dd178be3c5d0d1585", + "data": { + "inGameID": 38408 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38408, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "afa49c8e9cd91726ec24b8842b42316d491ff1bf", + "data": { + "inGameID": 38408 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38408, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1b48017dc05228d5233b1109b3baadf40324376d", + "data": { + "inGameID": 38408 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38408, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9d8c279daba6a558f74dd8a78ce71f235db4dea9", + "data": { + "inGameID": 38408 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38408, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8d5070f91241d0a6ebe23b15d0175a456ab6c27e", + "data": { + "inGameID": 38408 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38408, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "79262786834b1d6959a8316d736e6abdf623e110", + "data": { + "inGameID": 38408 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38408, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a0703f2e3672fafa54031d1d0aae6a842c7d9728", + "data": { + "inGameID": 38408 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38408, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9a46c8a77367f29867fe74240f7ccb4a81c56ad7", + "data": { + "inGameID": 38408 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38408, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0ca11602139db0c79e8ac0afca358be9e6cdc0b1", + "data": { + "inGameID": 38409 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38409, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8e0be57cb0fbdd26a7e16cbec6c753b04db6f1e7", + "data": { + "inGameID": 38409 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38409, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f7fe54e81e7d67af5e973b2ed9615f85f516400c", + "data": { + "inGameID": 38409 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38409, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d0fe4102134db92160f292d51ec7a6f471c0340e", + "data": { + "inGameID": 38409 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38409, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1f984765b0f76597e73b06e6a927eba19d46865d", + "data": { + "inGameID": 38409 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38409, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c788b9a9506a6d37d178a4aeff874202b75b99fa", + "data": { + "inGameID": 38409 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38409, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8d13c961ade6fdfe91992f5d90c462ade6ecc97e", + "data": { + "inGameID": 38409 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38409, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6c2e56f6d0a202ae501f4213f59684609673b4e4", + "data": { + "inGameID": 38410 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38410, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "84b31edf662f7eab5a21908fdb8b4847ca7d00dc", + "data": { + "inGameID": 38410 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38410, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dab1fd15514f249cf91a184dcdfc442d3a798741", + "data": { + "inGameID": 38410 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38410, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4b44d148dfb7e342ded914bd4ab42592c210be7f", + "data": { + "inGameID": 38410 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38410, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5c06d96b79785d78e14ac21d1a4e4dc7b48f908c", + "data": { + "inGameID": 38410 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38410, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce3f701d21469ab67d08a329524bb71b21abff5a", + "data": { + "inGameID": 38410 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38410, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b53ea8aed47e4ca5a6d0c081f096af30ed0aa42e", + "data": { + "inGameID": 38410 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38410, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8811b33472af0cbc9f413a372867d787abc710ab", + "data": { + "inGameID": 38411 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38411, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2e3da4827954acd3e0a6ed8d7d1bada80fd026d6", + "data": { + "inGameID": 38411 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38411, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2323d662e735446924c3ccac90d8edab27bda9c1", + "data": { + "inGameID": 38411 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38411, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "20c39c47e6788f53e4ed52667a7ac9461b7f1d99", + "data": { + "inGameID": 38411 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38411, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f73873fb42cbe522fd40974af07b137105ec2c6e", + "data": { + "inGameID": 38411 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38411, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6389ea199729505a0c19f6bb7a8d118e3cd5b4c2", + "data": { + "inGameID": 38411 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38411, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d0742b8323a54be5bfd5a9e292f6d090c53320ff", + "data": { + "inGameID": 38411 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38411, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dee7fd9ca663dffe2dcd12ac27138c648da411ec", + "data": { + "inGameID": 38412 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38412, + "versions": [ + "a3" + ] + }, + { + "chartID": "429d2e7b7cb4c6284b2594f6fc177e4896f51597", + "data": { + "inGameID": 38412 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38412, + "versions": [ + "a3" + ] + }, + { + "chartID": "34cdf78cdc44f1335fbdb7d02f0bccc67a2faad5", + "data": { + "inGameID": 38412 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38412, + "versions": [ + "a3" + ] + }, + { + "chartID": "c43ba4d59e706f69370a16bd0fb83a69dabf5ff1", + "data": { + "inGameID": 38412 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38412, + "versions": [ + "a3" + ] + }, + { + "chartID": "24de02f9e02827a972fd8315bdfc6fa00c01f03e", + "data": { + "inGameID": 38412 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38412, + "versions": [ + "a3" + ] + }, + { + "chartID": "8dcfd8778c1fa0c198cedd79c68e132a6ad58a2e", + "data": { + "inGameID": 38412 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38412, + "versions": [ + "a3" + ] + }, + { + "chartID": "5ab00b517a3dc226fcd24d30ffacc73ed88124f6", + "data": { + "inGameID": 38412 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38412, + "versions": [ + "a3" + ] + }, + { + "chartID": "58305698a83cfd9d21bd70b27bae54a158977e17", + "data": { + "inGameID": 38413 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38413, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "baab3ba5a5b45959efc67def59e782e30bbad82c", + "data": { + "inGameID": 38413 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "19", + "levelNum": 19, + "playtype": "DP", + "songID": 38413, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "65490e82981726c3c4f0ec54e5167477fdf8fbe1", + "data": { + "inGameID": 38413 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38413, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c5cc5ebd3cba2ac35ebde74a7c2967aeb9f3cb9d", + "data": { + "inGameID": 38413 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38413, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bb427e9a55e09c4ef164aeb7e63112a8f336c010", + "data": { + "inGameID": 38413 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38413, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8b7152c8f6935ee710684d3e8e680ddcae84fb29", + "data": { + "inGameID": 38413 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38413, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "82a83b2ca7ce6e4ee8d5a5f23e86c9f972d61121", + "data": { + "inGameID": 38413 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "19", + "levelNum": 19, + "playtype": "SP", + "songID": 38413, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "33ff6be0f8c392eb0d7ce32b317af3d6e80a600c", + "data": { + "inGameID": 38413 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38413, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "35cadebdcce8a4a9f567879ec503885a08a267e5", + "data": { + "inGameID": 38413 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38413, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0eb3a6a579839f0e8e6212640c28808ad8d41c92", + "data": { + "inGameID": 38414 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38414, + "versions": [ + "a3" + ] + }, + { + "chartID": "58926b93904566fdc485a1c59607aeced1bed899", + "data": { + "inGameID": 38414 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38414, + "versions": [ + "a3" + ] + }, + { + "chartID": "295c67170d5622df3d8d767a93f4cb1804f2a5ac", + "data": { + "inGameID": 38414 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38414, + "versions": [ + "a3" + ] + }, + { + "chartID": "5087a6e3401cf148ee232349589bf183a14de37b", + "data": { + "inGameID": 38414 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38414, + "versions": [ + "a3" + ] + }, + { + "chartID": "9e594382dc52789e742367c21d54a9669a154458", + "data": { + "inGameID": 38414 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38414, + "versions": [ + "a3" + ] + }, + { + "chartID": "4fa88a514a537f557e8358f01710e4a963d235bd", + "data": { + "inGameID": 38414 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38414, + "versions": [ + "a3" + ] + }, + { + "chartID": "980449ab635df08673cda7fcb00e3113061bc7a9", + "data": { + "inGameID": 38414 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38414, + "versions": [ + "a3" + ] + }, + { + "chartID": "f0c4f112315143acd176a8ad792e74e1bce3857b", + "data": { + "inGameID": 38415 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38415, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fbc47b6d124b2f1df438d3598374b64c3d543e3f", + "data": { + "inGameID": 38415 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38415, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2acebac6bc509c006e571d1e838315d7087ceeb0", + "data": { + "inGameID": 38415 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38415, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "092450d88b4a02e79cb5a10a375fcb26dded45ea", + "data": { + "inGameID": 38415 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38415, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dcb1bebb296aa4f2430a30a6587836c6e4b6ea09", + "data": { + "inGameID": 38415 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38415, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "68cba1faba9c191aaa5e24749b216861f4b3569f", + "data": { + "inGameID": 38415 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38415, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1248fbaba4416475793b8e5c49f08453976eed1a", + "data": { + "inGameID": 38415 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38415, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8d61645423334c5346345d6eb27422deed14522f", + "data": { + "inGameID": 38416 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38416, + "versions": [ + "a3" + ] + }, + { + "chartID": "77f1efd8299a448336507ede387d92cbe2dbe55e", + "data": { + "inGameID": 38416 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38416, + "versions": [ + "a3" + ] + }, + { + "chartID": "42c595214c7680c877454d1aaf5893e04e8578da", + "data": { + "inGameID": 38416 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38416, + "versions": [ + "a3" + ] + }, + { + "chartID": "0ad05fae0502c2019e1a1d913b7373447fb5eb07", + "data": { + "inGameID": 38416 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38416, + "versions": [ + "a3" + ] + }, + { + "chartID": "4e078b2863975dd89719a8dc51e6f08db9dd23a6", + "data": { + "inGameID": 38416 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38416, + "versions": [ + "a3" + ] + }, + { + "chartID": "4cd918d9657fba4287d2cb9a88d349a2bbd9399a", + "data": { + "inGameID": 38416 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38416, + "versions": [ + "a3" + ] + }, + { + "chartID": "301c3d47c461e545f68bb0e7cf326e691d8c7541", + "data": { + "inGameID": 38416 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38416, + "versions": [ + "a3" + ] + }, + { + "chartID": "f64c0e49bc27ca22c0c8150982785d105f879339", + "data": { + "inGameID": 38417 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38417, + "versions": [ + "a3" + ] + }, + { + "chartID": "c6dc85e266238ab0fd6a6907707f3c799826d7aa", + "data": { + "inGameID": 38417 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38417, + "versions": [ + "a3" + ] + }, + { + "chartID": "649887c3540ba1bf89f2f1e630d7de3373e42cba", + "data": { + "inGameID": 38417 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38417, + "versions": [ + "a3" + ] + }, + { + "chartID": "b66ebf6c52d8980aaf509903675ef9ab76b1e963", + "data": { + "inGameID": 38417 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38417, + "versions": [ + "a3" + ] + }, + { + "chartID": "f4225a69d5d3988a38b63f8ecd67db50c5634830", + "data": { + "inGameID": 38417 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38417, + "versions": [ + "a3" + ] + }, + { + "chartID": "e0d5f059d9045a83021786ca8d2c1596806f80d0", + "data": { + "inGameID": 38417 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38417, + "versions": [ + "a3" + ] + }, + { + "chartID": "66512af5da97e72b35ef956163845747001c685b", + "data": { + "inGameID": 38417 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38417, + "versions": [ + "a3" + ] + }, + { + "chartID": "51042e120110e4f2bf0b5ab02522a26a4b756c96", + "data": { + "inGameID": 38418 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38418, + "versions": [ + "a3" + ] + }, + { + "chartID": "69028e1a0ef96ff8a3a068b035ae09886391bcef", + "data": { + "inGameID": 38418 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38418, + "versions": [ + "a3" + ] + }, + { + "chartID": "3ff457d25275e77eff9fe66fc329b594bc7022c0", + "data": { + "inGameID": 38418 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38418, + "versions": [ + "a3" + ] + }, + { + "chartID": "7a2701cbba400f49d696ad4ed9ae7c89a8ab3d2c", + "data": { + "inGameID": 38418 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38418, + "versions": [ + "a3" + ] + }, + { + "chartID": "dd8c9f96836fad98a6bbd9ec4decfe3a3ac79e0a", + "data": { + "inGameID": 38418 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38418, + "versions": [ + "a3" + ] + }, + { + "chartID": "3f41138e18860631ee472648ddc7ce3e0355e5c8", + "data": { + "inGameID": 38418 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38418, + "versions": [ + "a3" + ] + }, + { + "chartID": "9f4efa1019032f55c4749caf1311f9f1e86e70bf", + "data": { + "inGameID": 38418 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38418, + "versions": [ + "a3" + ] + }, + { + "chartID": "803be7b6a3860260a09dc4eb5f67cc9231a806fc", + "data": { + "inGameID": 38419 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38419, + "versions": [ + "a3" + ] + }, + { + "chartID": "9c233b5903fc513747c5f10209863a3247423775", + "data": { + "inGameID": 38419 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38419, + "versions": [ + "a3" + ] + }, + { + "chartID": "3ebb085cb136339f5e039e70236331a045f8d2a2", + "data": { + "inGameID": 38419 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38419, + "versions": [ + "a3" + ] + }, + { + "chartID": "abfb02516c47d2afdf9fa760412d22fa6ec837de", + "data": { + "inGameID": 38419 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38419, + "versions": [ + "a3" + ] + }, + { + "chartID": "5505c9dc281d1d2988ddde91a2700c67b87cd793", + "data": { + "inGameID": 38419 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38419, + "versions": [ + "a3" + ] + }, + { + "chartID": "44f95f300453554767acb4bbe3cc934c6402facd", + "data": { + "inGameID": 38419 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38419, + "versions": [ + "a3" + ] + }, + { + "chartID": "a61d5e73c14a53ab7c81749c943f0fed05596e66", + "data": { + "inGameID": 38419 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38419, + "versions": [ + "a3" + ] + }, + { + "chartID": "28c60793d32f934f8bba4c3aed78b9af683558f6", + "data": { + "inGameID": 38420 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38420, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "70a835082edc34a14fa461e7675a228ff8311efc", + "data": { + "inGameID": 38420 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38420, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9d226d7ebab57fa24d71cb5482fc1ee8d9923044", + "data": { + "inGameID": 38420 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38420, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c0e4281eddb28c04528a1085af9529971fee2393", + "data": { + "inGameID": 38420 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38420, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2573fd2c8507c527585559ccc7f5ad3edb5d0859", + "data": { + "inGameID": 38420 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38420, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d4c6c058b257a2146f0faeca3dd205c774092afb", + "data": { + "inGameID": 38420 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38420, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "59d398114d5701d7735805688a26f99fee718780", + "data": { + "inGameID": 38420 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38420, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "48147edba505750c6000bf8adb276daad5e9aac6", + "data": { + "inGameID": 38421 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38421, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "823807e5f863f6a8c9ae466ceffa38387e2db25a", + "data": { + "inGameID": 38421 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38421, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3b2d06dec16eff6eb0a9a15b9b5c042a4c256cce", + "data": { + "inGameID": 38421 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38421, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1de0558844c98ee22b0ec77538cb916cd53db6cf", + "data": { + "inGameID": 38421 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38421, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bad468337c25b1812ee7f049c7c419349c48016a", + "data": { + "inGameID": 38421 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38421, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "477a92d8bc566c4dbe2efc0d0909231ead5fc046", + "data": { + "inGameID": 38421 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38421, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6a5b33d29a44ac426298cad930c12579993e191d", + "data": { + "inGameID": 38421 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38421, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8923495c65da525961d062cb2416040ac69a0f43", + "data": { + "inGameID": 38422 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38422, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bdc44fb436ef44c41841fdaeeca1a58c9d8f6d4d", + "data": { + "inGameID": 38422 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38422, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "21555b88f68d163906dbc851461ad77c4a872cb7", + "data": { + "inGameID": 38422 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38422, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "477ae872043cee22343a7807ceed18ec88d0e834", + "data": { + "inGameID": 38422 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38422, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ab5c412f4689f790e42f09dee73a6ce0bca6c6de", + "data": { + "inGameID": 38422 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38422, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "924a5a41e9c24f5d13c33679d6f6c7ae1634c17f", + "data": { + "inGameID": 38422 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38422, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2641ddfd129586daf2f3b04fffdc8a064d6bf1d3", + "data": { + "inGameID": 38422 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38422, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dbb1fa033f665a820b488b7d09bfc988109d61a1", + "data": { + "inGameID": 38423 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38423, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "897f6ee5bfc216298b41387d8fdf5bae17c9f87a", + "data": { + "inGameID": 38423 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38423, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d8b295b2aaae416add1063810a671494d91bdc69", + "data": { + "inGameID": 38423 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38423, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5910d7c2120d7fa0e27588e038e742e5e1b1ee93", + "data": { + "inGameID": 38423 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38423, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9c078ff266acb71cfc00dd76013cd6f2f35aa068", + "data": { + "inGameID": 38423 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38423, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "de143053a6e67718240eb33adfd22262abac37d7", + "data": { + "inGameID": 38423 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38423, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "32fdf017bc2894243a04c6adb922fb1a9dcc0de5", + "data": { + "inGameID": 38423 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38423, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c8bfbc0d1cd948ae37520effe50f4f738aae3bb9", + "data": { + "inGameID": 38424 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38424, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "22f4ebd27f288fde5cabb6a436e9d851b4860e94", + "data": { + "inGameID": 38424 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38424, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5a020e1281e516caae7654a45b969ea75455d112", + "data": { + "inGameID": 38424 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38424, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce8d050ffb350d897754e4c10c580f8dcaf4a80a", + "data": { + "inGameID": 38424 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38424, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c0c4398a0d066c6bb161e72d97d12bc167db44d5", + "data": { + "inGameID": 38424 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38424, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "baea344da9ebcc21e74ca48677d1115a1c9d212d", + "data": { + "inGameID": 38424 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38424, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "efafa06e98ab05f0cb2128e0a60e7e3d957360ac", + "data": { + "inGameID": 38424 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38424, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "30fd7c938d79e05e64f6251087d200ae96131e1b", + "data": { + "inGameID": 38425 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38425, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "28c0d03203e96a2a167f2b72efc8b9e270d4da14", + "data": { + "inGameID": 38425 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38425, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "294d49521d7daddc9373281b42f5d18de581cc98", + "data": { + "inGameID": 38425 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38425, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "08196fd8f1e48a16a6cbdba668b0106e7332cf08", + "data": { + "inGameID": 38425 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38425, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "54ce177d75ce288939d9ff4b894f5a2346a8154f", + "data": { + "inGameID": 38425 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38425, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3441599a31a5ce35e362bda1c207edae39300852", + "data": { + "inGameID": 38425 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38425, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8b78b8a6509324d87a31e6ddedb35b947913d638", + "data": { + "inGameID": 38425 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38425, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f73490354f1f78c49c61d17f52c42ab911bdee7f", + "data": { + "inGameID": 38426 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38426, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c016788509869bb71404fc2819d079e5d911f9eb", + "data": { + "inGameID": 38426 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38426, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "19f89e56065329987398ec7c5312964f2088e8e4", + "data": { + "inGameID": 38426 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38426, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cbb5c512c5bea46d79ac82b38b2cd7dda35802f2", + "data": { + "inGameID": 38426 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38426, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8a7fcb47121f5a8c525139abf83a1a5079926f91", + "data": { + "inGameID": 38426 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38426, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "20ecc136f4136508b3a09d4b0097589b74079630", + "data": { + "inGameID": 38426 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38426, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4a0255b703df6844f5d386f13f9697fc87a83b77", + "data": { + "inGameID": 38426 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38426, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7bd0eceb469534ac1f21182a7aa5c17aeac22100", + "data": { + "inGameID": 38427 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 38427, + "versions": [ + "a3" + ] + }, + { + "chartID": "0acbea206dbd063f49255a7f8e431e618b66e9be", + "data": { + "inGameID": 38427 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38427, + "versions": [ + "a3" + ] + }, + { + "chartID": "319c79403a1fac732f716da825f7922a2188c9c3", + "data": { + "inGameID": 38427 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38427, + "versions": [ + "a3" + ] + }, + { + "chartID": "00acb5f507552f3fcfe080abf49a59e2bc6832a1", + "data": { + "inGameID": 38427 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38427, + "versions": [ + "a3" + ] + }, + { + "chartID": "74ce169d57aa9299d63e1ec98f923d92467ca11a", + "data": { + "inGameID": 38427 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38427, + "versions": [ + "a3" + ] + }, + { + "chartID": "d4b5f34cfabf6a2f1dd6d825b5083c40974555c9", + "data": { + "inGameID": 38427 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38427, + "versions": [ + "a3" + ] + }, + { + "chartID": "d2cd0370484d4f42811d192aa92100f519775f3f", + "data": { + "inGameID": 38427 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38427, + "versions": [ + "a3" + ] + }, + { + "chartID": "8a75c4d586af10f22b7ca80d7f6e68f6a36c36b2", + "data": { + "inGameID": 38428 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38428, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eb7a5367d34f96e182a3a37fb97fe6ae0cbdf4ee", + "data": { + "inGameID": 38428 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38428, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4ff5614c287d9aaab2009fc6d2c5c276ee84dac4", + "data": { + "inGameID": 38428 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38428, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "771d267ae7f096bb19e42d6018d23d987a23b91c", + "data": { + "inGameID": 38428 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38428, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8c97167fa85c366600581a1909344788c57b7dde", + "data": { + "inGameID": 38428 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38428, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8a31719c19cdf2ae610b641eaf93af8d7b01b082", + "data": { + "inGameID": 38428 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38428, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "beaec39dacec70cd270acd419055ef850b0202f2", + "data": { + "inGameID": 38428 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38428, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4b3c5bd6cdd2b25af8939d8a055c1b75d9f888ca", + "data": { + "inGameID": 38429 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38429, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0d3667cdf7983738d63e030dcf063c4ffb1bfd6d", + "data": { + "inGameID": 38429 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38429, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d542d5fcc8cbd4aa5c99dca9c0108ede72ed690a", + "data": { + "inGameID": 38429 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38429, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b06c2b3806dc3499d12c5f7dd18f4ac92fc46f43", + "data": { + "inGameID": 38429 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38429, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8430caec5ddd1222834c6fe91b0759e1f57df3ed", + "data": { + "inGameID": 38429 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38429, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0f64f5d977e0b45f18fc46d9d451721485a17447", + "data": { + "inGameID": 38429 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38429, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e6b1dae5ed307fa28e0ff7bd14e7ee3930583cce", + "data": { + "inGameID": 38429 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38429, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "773bebdb4828a2617b9366e375fe7dcd11e081d6", + "data": { + "inGameID": 38430 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38430, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "86c9251e52a7103c938709e165c5b9de29943b10", + "data": { + "inGameID": 38430 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38430, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f2987ce1a7609101d4bb583185679802b88aaec1", + "data": { + "inGameID": 38430 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38430, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b7599a9b99f9468729ebe303e7a1e8ce6ff700f8", + "data": { + "inGameID": 38430 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38430, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "77b68eabef860a7a271f214b186fcf763bf7b393", + "data": { + "inGameID": 38430 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38430, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f6d78e19827e6f219da3de3ba50171157ab45a21", + "data": { + "inGameID": 38430 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38430, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9896a46cb1863e662bcbf5d638cd2f531d60cee8", + "data": { + "inGameID": 38430 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38430, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7dd9a20c42595a4120c991a4e5194501fba7ef6a", + "data": { + "inGameID": 38431 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38431, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8701585c56c8e25a2ac939c359070d31334de341", + "data": { + "inGameID": 38431 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38431, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "11149e9af4b3375f2f516bdf6496b4100d2220bc", + "data": { + "inGameID": 38431 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38431, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "579d50d2deaceb3e6a8685d0058765c904a312c4", + "data": { + "inGameID": 38431 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38431, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8aad2e535a77ad086299bf4aac3361ab0fa59d62", + "data": { + "inGameID": 38431 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38431, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "661de9a3b1cc9add59fea604732b9a690a5cd1c0", + "data": { + "inGameID": 38431 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38431, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "af07d1249517f300fbb59972901705c474813062", + "data": { + "inGameID": 38431 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38431, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5da8ff11ef22a55d9e1ef59a18a06c47ce29eb1c", + "data": { + "inGameID": 38432 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38432, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "59359f5dee9fb310f7e847f512852c58eb9771af", + "data": { + "inGameID": 38432 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38432, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2ab752eed8dc66c68e3ef0a47cd2e3a1f2a2d132", + "data": { + "inGameID": 38432 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38432, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e710ff873dc4f10562336f7016d97bdd764e2b18", + "data": { + "inGameID": 38432 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38432, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4e5336be75dc83badf584ade7f3de5d8baf937e6", + "data": { + "inGameID": 38432 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38432, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6f7e9a2efe3b0a7491337d4f6421a27f7e9d8586", + "data": { + "inGameID": 38432 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38432, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e4da6dcff3f72159a1cce7baa79be35c8474a5ed", + "data": { + "inGameID": 38432 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38432, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "066fad7db1d1807f0ee318a9714d592a68e15dff", + "data": { + "inGameID": 38433 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38433, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "90d5af3fb17481bf4a9f00658d8c8e01d9db11d7", + "data": { + "inGameID": 38433 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38433, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dcbfb23bd8b642d022d5d3e5a63f597655e387ba", + "data": { + "inGameID": 38433 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38433, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3e609e358e701f582935bd5b27e99522feb2af02", + "data": { + "inGameID": 38433 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38433, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cacaf7a4bfb1a43f87eb695376e753b31a281f42", + "data": { + "inGameID": 38433 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38433, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e13573c8ac4573c7492e60d4e16d8e5ff4d02f9f", + "data": { + "inGameID": 38433 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38433, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "64f3a8c4925c4156063f4c82526bf36a905ee29f", + "data": { + "inGameID": 38433 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38433, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e9935e887c033e370b6bbd15979ded8ec61e4f62", + "data": { + "inGameID": 38434 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38434, + "versions": [ + "a3" + ] + }, + { + "chartID": "29adafb8f01883c9cb1eee62479896a706561e38", + "data": { + "inGameID": 38434 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38434, + "versions": [ + "a3" + ] + }, + { + "chartID": "b376634daa69f3af893d5245558cf014625c7009", + "data": { + "inGameID": 38434 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38434, + "versions": [ + "a3" + ] + }, + { + "chartID": "465a27b284a325d590fb30e57386ed4506f36b6f", + "data": { + "inGameID": 38434 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38434, + "versions": [ + "a3" + ] + }, + { + "chartID": "0df0b10ef6a856ea990e6ad707ce9978283a98ef", + "data": { + "inGameID": 38434 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38434, + "versions": [ + "a3" + ] + }, + { + "chartID": "dad91d7ac8e8cbae186af69400856fa56e093145", + "data": { + "inGameID": 38434 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38434, + "versions": [ + "a3" + ] + }, + { + "chartID": "fbafa173d3e7758870f0d18f5782216331dd361e", + "data": { + "inGameID": 38434 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38434, + "versions": [ + "a3" + ] + }, + { + "chartID": "f58cc3270e9648565f2ed621f70ef6deb2342f5f", + "data": { + "inGameID": 38435 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38435, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ab117843d2fa5c54d5281c8f6ed07b43f818758b", + "data": { + "inGameID": 38435 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38435, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3ab839e31b09b65c1d8da8331f17698eadcd5dbe", + "data": { + "inGameID": 38435 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38435, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3110d0037961cfd59fbbb4a62f0385b6cbdd71d3", + "data": { + "inGameID": 38435 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38435, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c1cc301202a8eb437b5ce458714d23485532332b", + "data": { + "inGameID": 38435 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38435, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b3ba4b88376ddbf0f3716e9737552e4aee03139b", + "data": { + "inGameID": 38435 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38435, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d3da0256a969be7797442a45ede30eeee553aefa", + "data": { + "inGameID": 38435 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38435, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f0b594a804b853949344d8e01cd9921a5c1e077", + "data": { + "inGameID": 38436 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38436, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "38029203b81fff21eb816765b1295c5377bf9b53", + "data": { + "inGameID": 38436 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38436, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d5c4b20c7005011cdc86317583a2592b40d043aa", + "data": { + "inGameID": 38436 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38436, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "68f5cdb9c2108e6678e91c050cf3ed910e049ac4", + "data": { + "inGameID": 38436 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38436, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a2c735400a4859ca689ebc21797b5280953b395c", + "data": { + "inGameID": 38436 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38436, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "053e1b69bdc0ef593dd9aac77a12fb5312309f0d", + "data": { + "inGameID": 38436 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38436, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e0a308f67475d265ba2c9d71770be37b88885e21", + "data": { + "inGameID": 38436 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38436, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "14fb4aa7c8623e8e2e313616e48241b6b2a65ac4", + "data": { + "inGameID": 38437 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38437, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "12a04403cc685d3e727405058efbd423701ccf24", + "data": { + "inGameID": 38437 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38437, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "db02bb25b8e74d75ab715d8ac8823e282266e000", + "data": { + "inGameID": 38437 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38437, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "00696335770ce339f580a5ccea453da4385e4cff", + "data": { + "inGameID": 38437 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38437, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "799b55983261ed4aee0f8b87dded55a3b09a3582", + "data": { + "inGameID": 38437 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38437, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b6779b9c79414d38ed7edd62072db7d3a56e365d", + "data": { + "inGameID": 38437 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38437, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ede75cf038736e4047262be88c23e184abc6717d", + "data": { + "inGameID": 38437 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38437, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a6171dc51145d246e59c3a9916184b2432fe6a62", + "data": { + "inGameID": 38438 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38438, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2d0d56a1050db02470a8c606a29b3d4bbc522345", + "data": { + "inGameID": 38438 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38438, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bb467db720d8e0dbcb308a1778b1666a5d7b92ec", + "data": { + "inGameID": 38438 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38438, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f00ecfc327f7b419bf3101c181d068fbed4b5c3b", + "data": { + "inGameID": 38438 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38438, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cfeeef7b8b0bc514c02ce6dae03ec39cef5e6bd3", + "data": { + "inGameID": 38438 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38438, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ace529335a2a2848cebe23b0e2d3b480f5cae811", + "data": { + "inGameID": 38438 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38438, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "79b87b511b1e51dd77ab5336e185126ca303e1b4", + "data": { + "inGameID": 38438 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38438, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fe2e4b993fadf89bf2d94b3f01d6628e3e9a3c09", + "data": { + "inGameID": 38439 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38439, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f3d3d8dae5476ed4ce60ef9466fe29a478823d89", + "data": { + "inGameID": 38439 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38439, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7012178f150c3c6b7a3f11904b5fecc1f7a0f48c", + "data": { + "inGameID": 38439 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38439, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "229e4e6f5d82cfdcd570f7053bcded96862560c0", + "data": { + "inGameID": 38439 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38439, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8c986d4d3e0ab76a257b2e8662e1b581c9a2a6cf", + "data": { + "inGameID": 38439 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38439, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "085c122954d5d998f91db225dade205249a8f42d", + "data": { + "inGameID": 38439 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38439, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1bb62a234b3bf7d0c0bc42c9a71b9def8855a3b2", + "data": { + "inGameID": 38439 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38439, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "18a16bd55f48ea77417aea8456f7121321d68b9d", + "data": { + "inGameID": 38440 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38440, + "versions": [ + "a3" + ] + }, + { + "chartID": "79a8dfcb020f00202098394aac9751e4f2c23064", + "data": { + "inGameID": 38440 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38440, + "versions": [ + "a3" + ] + }, + { + "chartID": "3dfa868cf933cbccaeaf4575748c4db9ce1784f4", + "data": { + "inGameID": 38440 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38440, + "versions": [ + "a3" + ] + }, + { + "chartID": "d14b8ed3ec43362ee7395b34a2e03392572eb4fc", + "data": { + "inGameID": 38440 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38440, + "versions": [ + "a3" + ] + }, + { + "chartID": "496019f55951788736914340d723ee11453b29be", + "data": { + "inGameID": 38440 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38440, + "versions": [ + "a3" + ] + }, + { + "chartID": "7cafbc4a011d5c03f72bf796cf79a72e467ec347", + "data": { + "inGameID": 38440 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38440, + "versions": [ + "a3" + ] + }, + { + "chartID": "6044182c73619322d65fb20e12968765ecc80217", + "data": { + "inGameID": 38440 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38440, + "versions": [ + "a3" + ] + }, + { + "chartID": "89a6a569ff284979e1a2a046b05fb24956e1377e", + "data": { + "inGameID": 38440 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38440, + "versions": [ + "a3" + ] + }, + { + "chartID": "95d611894724a9487332f067dff9b6e479887613", + "data": { + "inGameID": 38440 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38440, + "versions": [ + "a3" + ] + }, + { + "chartID": "1814a0ade2c117ea0bfb9a4298066d2c44773a21", + "data": { + "inGameID": 38441 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38441, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6684a90c44a590182684f6ba309cd21426a97f76", + "data": { + "inGameID": 38441 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38441, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "15f0e31a180495fe67353cca2020fad08ddca029", + "data": { + "inGameID": 38441 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38441, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "61bc504375f81557c8682351749ff0e8c2525e19", + "data": { + "inGameID": 38441 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38441, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9cb3d99aa3d649faa0d4a8d1b9af8560f9abf61f", + "data": { + "inGameID": 38441 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38441, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4a9e4ff20ea23e00ce7fb75da241f751710a97ed", + "data": { + "inGameID": 38441 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38441, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b01a340f49bb8eae8ae56ed5538655882d01e86c", + "data": { + "inGameID": 38441 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38441, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a0096cb63c3f486767296be31f1eae1b00e90bd8", + "data": { + "inGameID": 38442 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38442, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "663ae50db9f286462d9c2939943eae264f12f401", + "data": { + "inGameID": 38442 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38442, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5cf45fda7d478ba3ad55ada4c2bb725a7aca2cb6", + "data": { + "inGameID": 38442 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38442, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2abd625e266131ac3609acbf058ce1206212e394", + "data": { + "inGameID": 38442 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38442, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dfb782e65b39f29d93d0c751860858e27dd14313", + "data": { + "inGameID": 38442 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38442, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eb588d6089d5075ccbbef5c0714ea401f815254c", + "data": { + "inGameID": 38442 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38442, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f9e9585d8b774c11f1941e8abd56bef87e474ba", + "data": { + "inGameID": 38442 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38442, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3ebcc5b906461631f2fcb4174f7acd0c5eae8493", + "data": { + "inGameID": 38443 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38443, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "50dd29147a8b062b6b54e1fdd3dbfe51027479f6", + "data": { + "inGameID": 38443 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38443, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "10ab2d6c44f22d3710f11e90332092b2ccb8c02b", + "data": { + "inGameID": 38443 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38443, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9c5c1527f31b209b462eea5b204c14761e225083", + "data": { + "inGameID": 38443 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38443, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fa0369458959038468736a85b1110eb59bf526aa", + "data": { + "inGameID": 38443 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38443, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "75c7199d8ee16de88ef8b42138ab8fdbee3e3ae8", + "data": { + "inGameID": 38443 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38443, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0e849fe9676d03e196c0ae04b3657c8e3d8c2706", + "data": { + "inGameID": 38443 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38443, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2fa2f1bb688fa1ab61b0893fc3643967c9ae4c36", + "data": { + "inGameID": 38444 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38444, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9cccc56575dd33195b6c75d91cb7ee9f5a53be75", + "data": { + "inGameID": 38444 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38444, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "58a35b82e94e007a572f03d18f0fa5b7efd12cdb", + "data": { + "inGameID": 38444 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38444, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8864bb07a2a34e3754d52f2a9e9559bd447c66d9", + "data": { + "inGameID": 38444 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38444, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d989258917d515732466d737273b82f465fffa68", + "data": { + "inGameID": 38444 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38444, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8fbac1b4124692374d51d57d4eb1221666fd7d00", + "data": { + "inGameID": 38444 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38444, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aa9b689defedd82df14f4d2f05d3c47c1775c954", + "data": { + "inGameID": 38444 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38444, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c539dc3f4c05c6ee3bccd6f6050d477186e4f9ef", + "data": { + "inGameID": 38445 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38445, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "825b6b2e2f5eb3e18e96fe5e337bd3df98b032aa", + "data": { + "inGameID": 38445 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38445, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a238fac02ff9463e1340ec5c7a72eec0b4091438", + "data": { + "inGameID": 38445 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38445, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ef25aa8d87688b2514e58731eb0a250514a6b541", + "data": { + "inGameID": 38445 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38445, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "493898c802b6e74d97dba41f9d2c6fcab9a1f6e7", + "data": { + "inGameID": 38445 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38445, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0c9889bb7d277ef00a8805e4cffd43e7c4b65168", + "data": { + "inGameID": 38445 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38445, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9a941f61d27379801a8fd514367c9efdc610fb6c", + "data": { + "inGameID": 38445 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38445, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c3b0b63347e8c61243d91e6372c020153bbb75b1", + "data": { + "inGameID": 38446 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38446, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "135d238086a01e349d444afb5c50d2f7bde00ab4", + "data": { + "inGameID": 38446 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38446, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0acf3cb816bc9a95c0804cf642771d9e331ed7e9", + "data": { + "inGameID": 38446 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38446, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "83ecf629c8f6ac55a7aa8093d44597f85c438156", + "data": { + "inGameID": 38446 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38446, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "253b676b958ecf6788562ed5603aaa929bf73e15", + "data": { + "inGameID": 38446 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38446, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7721823c394d529e462e7de76da4066cb4d29a40", + "data": { + "inGameID": 38446 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38446, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5288fdf28b238d54d2b00a0295aa30a0eeffdc1e", + "data": { + "inGameID": 38446 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38446, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3355ec30fd7ec4163f09cd796b39912e026f82ae", + "data": { + "inGameID": 38447 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38447, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "64a1a8cb6f1eddf95949029f577bed912effb125", + "data": { + "inGameID": 38447 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38447, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4cdaf395ab751e3a697f33c039f5d2e432a06e0d", + "data": { + "inGameID": 38447 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38447, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0eb17da79492f0f3b8433723907e183f866c8a1a", + "data": { + "inGameID": 38447 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38447, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8fde4ad033f3b45a9b2f107cf6d2dbd9cffdfeda", + "data": { + "inGameID": 38447 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38447, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6b2d761e7bee3cc9821345b34fd292a738d6c638", + "data": { + "inGameID": 38447 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38447, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "05fa669f7a82b1ee5aba67af8828d2347da01987", + "data": { + "inGameID": 38447 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38447, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "93025082de23a6e02a46ce7e612b968519474d21", + "data": { + "inGameID": 38448 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38448, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a8754f6088054ccced86c9d7d9851f0f77016b56", + "data": { + "inGameID": 38448 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38448, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "166a7e55f6e5aa52df0479fc37129df26807ee3b", + "data": { + "inGameID": 38448 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38448, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b5fe2f3bf6d63fb01fb28e0999b3d5ea44c97374", + "data": { + "inGameID": 38448 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38448, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8fe1268fe57eda73379da0d1877762ab4af5c176", + "data": { + "inGameID": 38448 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38448, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ac0b2d50e9b6224d45861b345c2dc4578233c608", + "data": { + "inGameID": 38448 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38448, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "52aacf7b8308a067001e8cf57dcc7b4e9900cb6e", + "data": { + "inGameID": 38448 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38448, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8bbafab5b3001ff04965f24e5701c5397c40333", + "data": { + "inGameID": 38449 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38449, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d7010eeebc1b864bc935edd2d830f3e76a8c5b34", + "data": { + "inGameID": 38449 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38449, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "428011597eb39d0e2f606cc927f92fb41b1e02e8", + "data": { + "inGameID": 38449 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38449, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "71428dee9220b0937c3ff2f87bd164415fbb790e", + "data": { + "inGameID": 38449 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38449, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ac31adf500d6a32535676da8a0d76b3176cca361", + "data": { + "inGameID": 38449 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38449, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a1c22afead3b2a62e95ae7bec7999b6e09ffa1a6", + "data": { + "inGameID": 38449 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38449, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e23cf10039c739b1fe44103655ddacf2bb973855", + "data": { + "inGameID": 38449 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38449, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7e064abd72d8d3e09204f97704aa5e3b125077bb", + "data": { + "inGameID": 38450 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38450, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2a716fe925d7571a3e4a49fa12df0a4666f17e35", + "data": { + "inGameID": 38450 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38450, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9cef3da3258e00712b155a082a4943648b2d9cf9", + "data": { + "inGameID": 38450 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38450, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2111367e4425009f9cf0f4d8a735d22ecfb70590", + "data": { + "inGameID": 38450 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38450, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f4bbed9e63794c541f9701b8e67812ec16c6d164", + "data": { + "inGameID": 38450 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38450, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d006ff3d5bd828458e304e672d0efc108f0dc312", + "data": { + "inGameID": 38450 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38450, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a43299bd30dea09bda7a3fbfb78c8e490c286592", + "data": { + "inGameID": 38450 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38450, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e89df3cf8feb1f1b340ab1e8dc162ef23d13f199", + "data": { + "inGameID": 38451 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38451, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "00839a064b0b94fb67e13d095f517a6fed9f299c", + "data": { + "inGameID": 38451 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38451, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7d5df079ba1443244634bbe6126bb38aca71e490", + "data": { + "inGameID": 38451 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38451, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "13d829b19920c62b69b47aad8b24837dae60f57a", + "data": { + "inGameID": 38451 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38451, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5f9fac0455f8683bada006bd46209b2b71b7d3ff", + "data": { + "inGameID": 38451 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38451, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "46dc744d0710f53293bd41d3ddb698238dac8e3d", + "data": { + "inGameID": 38451 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38451, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "40ad4c3fb016f668233c14e09b258dd15976edc7", + "data": { + "inGameID": 38451 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38451, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "92b42a9b6b151846e0e83531d14d6a0fde8030a6", + "data": { + "inGameID": 38452 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38452, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "017326adcb1d146de8b2704c57f39bd6d00c99a3", + "data": { + "inGameID": 38452 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38452, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2278c8e2d986507add6e42ba2ccfc461004400f9", + "data": { + "inGameID": 38452 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38452, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5c9729ccc5be2f6646e5ddc5d69bc152acfdc984", + "data": { + "inGameID": 38452 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38452, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cb74af960f6dcf95dda8529d156c145c16a80057", + "data": { + "inGameID": 38452 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38452, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e21a7b337cb7fb6bbc852f16ab68bcd931b673c2", + "data": { + "inGameID": 38452 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38452, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "49d9aae7ee63819199a6c799b9ef567925033313", + "data": { + "inGameID": 38452 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38452, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6f05b97b64bd81771be4c18d2dca3c317af7da9f", + "data": { + "inGameID": 38453 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38453, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6a4078619bebda6425e972de0e157c768e77a3d4", + "data": { + "inGameID": 38453 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38453, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "83dcb8d957b94389b844d370963932339b8a446c", + "data": { + "inGameID": 38453 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38453, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8d5f425c179c70e6774fbee86b43223ac845c47a", + "data": { + "inGameID": 38453 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38453, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f56f8048deed78869f9428cd29ad4f0171e9c5d", + "data": { + "inGameID": 38453 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38453, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8f74bf4de2acf8c56a4c178533224e4732da27eb", + "data": { + "inGameID": 38453 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38453, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "26dd2bd29aabfdbcda48504d8f6eebcb411c778e", + "data": { + "inGameID": 38453 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38453, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff2ce8ffe2ce5058d7f80e2c3d630ed30724b0f1", + "data": { + "inGameID": 38454 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38454, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2faff19bb235a5283c30bc16dbe3b852be2f3d5a", + "data": { + "inGameID": 38454 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38454, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "473c80f744779b23b39df1b65a61216826e1000d", + "data": { + "inGameID": 38454 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38454, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "55e9a699e51bc74553ee9c02881d504bc8293884", + "data": { + "inGameID": 38454 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38454, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cffde17236b67796d5eccd10e8ac58664a0cd1b2", + "data": { + "inGameID": 38454 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38454, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8b93d63b271d53331f01889985335aae84b1bbfc", + "data": { + "inGameID": 38454 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38454, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d1c205a72c1713005896970ae4e19286dd2272a3", + "data": { + "inGameID": 38454 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38454, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dd19762f482bcd7c002e51585d57b4b161371490", + "data": { + "inGameID": 38455 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38455, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "35dbbb237bad39d318253b00fa49b148a3d7e635", + "data": { + "inGameID": 38455 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38455, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "791947528c36c29e3e30738aa07b7058362c25dc", + "data": { + "inGameID": 38455 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38455, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4d695382145767e1272e3ea0d6c8fad55ebb067e", + "data": { + "inGameID": 38455 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38455, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5afe416d9f46f1568366789f4bc255640343b5a8", + "data": { + "inGameID": 38455 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38455, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7c27938f397279516b733cf73f167e15a0d0843d", + "data": { + "inGameID": 38455 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38455, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c01019917802473d5b6b1f5e342340dbd9c25d3b", + "data": { + "inGameID": 38455 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38455, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f9248f5a1b7a86d085ce1bd2976d75da13c737ec", + "data": { + "inGameID": 38456 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38456, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3f942c9a1fc0d20501affbb38c3bacac7941656f", + "data": { + "inGameID": 38456 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38456, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a079b995fc4a51770a4f38f5dc9eebee0d0150b0", + "data": { + "inGameID": 38456 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38456, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "079c08f4db9e240bb3dfc0e34463d21f8780a4aa", + "data": { + "inGameID": 38456 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38456, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "847d21ea3abc88a781804c8fcf1cbf868b2662f0", + "data": { + "inGameID": 38456 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38456, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6bf907c7c8685aad9e5e9ba226683ca5313ca8da", + "data": { + "inGameID": 38456 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38456, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "71ca0443bdf3319b1885c45bb909bab47f9e6059", + "data": { + "inGameID": 38456 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38456, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "810bd89751818896c981c02847026a4ab5cb5c59", + "data": { + "inGameID": 38457 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38457, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a0d1316650450fbaa3a2dcd24e732f78c9b99b42", + "data": { + "inGameID": 38457 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38457, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "63ee1cff50a411d1676e161bbbe04b0f123b7692", + "data": { + "inGameID": 38457 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38457, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0c91cbea4135cc923850f4c26c2d09f62a2b1fd6", + "data": { + "inGameID": 38457 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38457, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "527b28e093d063f90ba14fc647b830822ef35217", + "data": { + "inGameID": 38457 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38457, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8d9dd1db7eeb3aa5e96248155d7c82a4d82fb5b8", + "data": { + "inGameID": 38457 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38457, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0e94f4d8e656cb5c5ecef3ed2ff0f9a4980ed1f7", + "data": { + "inGameID": 38457 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38457, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b90a795854729ef3da7a78f372b18a1c9af602ae", + "data": { + "inGameID": 38458 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38458, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b8c6f37a94a71f178a63ecdc5160975fa8223d31", + "data": { + "inGameID": 38458 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38458, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "76d2a81a596de1bc9f3edc1ce6b626bbd8587602", + "data": { + "inGameID": 38458 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38458, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c47388fe3429381d609464bde71977ebe32d8a5d", + "data": { + "inGameID": 38458 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38458, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6ab08daaa88bac4882b2487032d565c1e5d2001f", + "data": { + "inGameID": 38458 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38458, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0f76413765d090173592013bdcdaa97ad4b7579d", + "data": { + "inGameID": 38458 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38458, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4f9b1381c8e6e2230fc35ceefab336ec139fd831", + "data": { + "inGameID": 38458 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38458, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "294abe151f67e3fff1438e5cffc75f6f0b997360", + "data": { + "inGameID": 38459 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38459, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7ee625af966dc04fce912e68cff84a4bce61b417", + "data": { + "inGameID": 38459 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38459, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9e8793f8354e2f6a617ee34ec7d364395a8abdd2", + "data": { + "inGameID": 38459 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38459, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5868c05f41c6b58f9ca7affea85f02d0b6f56ef3", + "data": { + "inGameID": 38459 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38459, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fb49459e14cdcefafae9862c22a26d0031a1b9f8", + "data": { + "inGameID": 38459 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38459, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2308be553656d4eb9634fc5abf2389fd3c137f67", + "data": { + "inGameID": 38459 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38459, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a03ceb2df7b27826b7a7d235c334cfdf77caacec", + "data": { + "inGameID": 38459 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38459, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a0e85956ad28f2d5c7a867d0a5b7911fd56cc7a7", + "data": { + "inGameID": 38460 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38460, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7694a2e3e60921ab9768fa28cc0bc4b1e500d2a5", + "data": { + "inGameID": 38460 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38460, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "12ea1a31e146019f7bd621fe7ac8357c89b2c093", + "data": { + "inGameID": 38460 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38460, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3cf95373c64d69efafe2ad73388f0733913548b4", + "data": { + "inGameID": 38460 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38460, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e1bf2ecfe166ed0460328b03f2487ffb0ca3489c", + "data": { + "inGameID": 38460 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38460, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "664ad572990754c657e997845e04e59756bca0dc", + "data": { + "inGameID": 38460 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38460, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "27baa2a32d246ea089229ed4e4078d433716b2d4", + "data": { + "inGameID": 38460 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38460, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "77f66a4cfec04297571a4ee790b52a09ac5f6294", + "data": { + "inGameID": 38461 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38461, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "68071ed0e0dd63b6087d49040e227246b17966f3", + "data": { + "inGameID": 38461 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38461, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3415690036f5ece0b9aacdd3918c8b96540bd8df", + "data": { + "inGameID": 38461 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38461, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bb19ccdbcf3fca662349ec1b99485e17dac33626", + "data": { + "inGameID": 38461 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38461, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "40a7fdc5f6ef39c11e0c0203932d268424b683a5", + "data": { + "inGameID": 38461 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38461, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3c7f00b4028388909c34e6a27fa1f4e4269256db", + "data": { + "inGameID": 38461 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38461, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2c2430e226953e40c0b8a677702ec31698c6c463", + "data": { + "inGameID": 38461 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38461, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c6b8eaffd7f93f5000da6a73d4969f273fbddb1c", + "data": { + "inGameID": 38462 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38462, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cff1f433a86510dfae99cc398a8d97f0f83e1e92", + "data": { + "inGameID": 38462 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38462, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "31959147064832df32471a33761d6117ecd568b3", + "data": { + "inGameID": 38462 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38462, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d8b8c3f43bbb674b4c65a570e65fabed80bf07c1", + "data": { + "inGameID": 38462 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38462, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "081f5b91df9a76b87fa47ae7ec5fce3e13879698", + "data": { + "inGameID": 38462 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38462, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f751bdc777fb07f15d056ae572ac087178e32a5", + "data": { + "inGameID": 38462 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38462, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "77cfe25502fe8ec30cfc16efdcfe3bf5fc7db413", + "data": { + "inGameID": 38462 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38462, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "16acc572b5d6929e14b0bb74e53104e6e372aa11", + "data": { + "inGameID": 38463 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38463, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b62b5513aaff52064812f5dcc6cf4208ff8f5c47", + "data": { + "inGameID": 38463 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38463, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7bb35c4c56f0443bcc9f08942787d10370db8252", + "data": { + "inGameID": 38463 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38463, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e9197fb96c7fe52063f07b0b6ee16994cad1e2f5", + "data": { + "inGameID": 38463 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38463, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0ba9278355322532692c76cbd17fb8c6991060ee", + "data": { + "inGameID": 38463 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38463, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c9c0ab8fe3d15c803a6a395bf4c8dd3764e091c6", + "data": { + "inGameID": 38463 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38463, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1f2892f9680ce33a9b6efb8e34e4e4abef3c244b", + "data": { + "inGameID": 38463 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38463, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a6d825bbcfe50291906e4ce034f9478db6afa7dc", + "data": { + "inGameID": 38464 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38464, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b77bbedcf76335578c549669bfdeb030cef8f174", + "data": { + "inGameID": 38464 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38464, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3b940d916e059b50aadd78f480401e030bf6ab5b", + "data": { + "inGameID": 38464 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38464, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d02dbb1c061a04a4de4b82ea2b70637cdd340579", + "data": { + "inGameID": 38464 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38464, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "93a19a76923f0d574d9c100c5ce1da25ac2f1de6", + "data": { + "inGameID": 38464 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38464, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d50dd9fc1b7daa36b596a03efe7ff28317640ac2", + "data": { + "inGameID": 38464 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38464, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fde6e330afa926d9a9e539329107e958ccc631e7", + "data": { + "inGameID": 38464 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38464, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ca1634471a5b97db3f01938bb3540bf7ade8449f", + "data": { + "inGameID": 38465 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38465, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bad7357b8ac9c32fe04ab0a5a750ef01652b2d86", + "data": { + "inGameID": 38465 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38465, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce7d92e8717dfb2e100f8b94209eadd1b08bd6eb", + "data": { + "inGameID": 38465 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38465, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f28574e71b336500a203811bdd2ce2df86c7c617", + "data": { + "inGameID": 38465 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38465, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8178522e2e55e2094d8f936fff973f759cf3046b", + "data": { + "inGameID": 38465 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38465, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6269da3ecfa43d77168574fdfa753db437d64812", + "data": { + "inGameID": 38465 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38465, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cf7e2bf2f767f41e611b1fb195d92997f0dd78a9", + "data": { + "inGameID": 38465 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38465, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c6f96cc745d00f0e62449872317a1cbd12924511", + "data": { + "inGameID": 38466 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38466, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ab821467cf5acc25437697408419df22a6e50cf", + "data": { + "inGameID": 38466 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38466, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9fbd1ca0e06d92e892f9ccfd19256d29cd663dcf", + "data": { + "inGameID": 38466 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38466, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "12be6f6fcc52f2d979699f985b424b91969230f0", + "data": { + "inGameID": 38466 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38466, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2510d8d7b70ef36d4d376a313eb0ca776b042df2", + "data": { + "inGameID": 38466 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38466, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6ec4b5d7a4f847ed80aae8a2fa03077773e1f794", + "data": { + "inGameID": 38466 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38466, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "205521f4a423feeb0ade413ac4c2c3dcdcde9e30", + "data": { + "inGameID": 38466 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38466, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "682ac466fbfc19d9a8f5418f88635c1c1723c682", + "data": { + "inGameID": 38467 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38467, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "909437132e60a9bd3b3eabad19c447da7371d566", + "data": { + "inGameID": 38467 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38467, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "150a94bcc96cb8369d402f94c03d3c57b70849da", + "data": { + "inGameID": 38467 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38467, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6f0d417117112122d267f6b28e786bde6ea95fbb", + "data": { + "inGameID": 38467 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38467, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "713f43a369b9f2e02ac42f534d7423b21546c646", + "data": { + "inGameID": 38467 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38467, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f5e6e9804da8f45adc1d3f0076e06777ab07bd55", + "data": { + "inGameID": 38467 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38467, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "872c7100ad8ceb146eb6c6af802864d2a2c77bf8", + "data": { + "inGameID": 38467 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38467, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8ff86c123f0d63683f9d2bb9b641abbc5793ba3f", + "data": { + "inGameID": 38468 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38468, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "215291b2b95c0b5c86b8ca3cc63519f1d1f160a3", + "data": { + "inGameID": 38468 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38468, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "54af0bbb5c012807cecadd0efc53df7c02bd52c5", + "data": { + "inGameID": 38468 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38468, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "60d63f7256810c4cf51185220d36a4f007aaa45e", + "data": { + "inGameID": 38468 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38468, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5cced05ac58848e0c617036f761c270c4ab9f737", + "data": { + "inGameID": 38468 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38468, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e16f818a463938aae8ab9eeea9df31a8b99c2fd5", + "data": { + "inGameID": 38468 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38468, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b6101fc0beb79894c08c1efa0ddc3d950a098708", + "data": { + "inGameID": 38468 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38468, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3b02811cc9d32cf02abe06d516462136dc3a99df", + "data": { + "inGameID": 38469 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38469, + "versions": [ + "konaste" + ] + }, + { + "chartID": "37f71355dd950580d6d5664f2568af6bd1468868", + "data": { + "inGameID": 38469 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38469, + "versions": [ + "konaste" + ] + }, + { + "chartID": "b57939dcc0c9998cc3909497eb2dae5df296783b", + "data": { + "inGameID": 38469 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38469, + "versions": [ + "konaste" + ] + }, + { + "chartID": "5bf0960d154bed6fa76d46ca735bd7dacec279db", + "data": { + "inGameID": 38469 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38469, + "versions": [ + "konaste" + ] + }, + { + "chartID": "5513692db5947eba5ccf128e7e5169effeb71750", + "data": { + "inGameID": 38469 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38469, + "versions": [ + "konaste" + ] + }, + { + "chartID": "582fcb8aed83016cf54dc01fda3a7c643623d860", + "data": { + "inGameID": 38469 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38469, + "versions": [ + "konaste" + ] + }, + { + "chartID": "4badf5a8374e7b7e7aff7e092c67479751f117f1", + "data": { + "inGameID": 38469 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38469, + "versions": [ + "konaste" + ] + }, + { + "chartID": "b658f9b401226f3542b082f89d8e412d5009ed24", + "data": { + "inGameID": 38470 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "DP", + "songID": 38470, + "versions": [ + "konaste" + ] + }, + { + "chartID": "855a10a95eb683e7960b5213202aa8474db8bad6", + "data": { + "inGameID": 38470 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38470, + "versions": [ + "konaste" + ] + }, + { + "chartID": "d78b7093f0e831e648a66c69a7d41b9cc8a5299a", + "data": { + "inGameID": 38470 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38470, + "versions": [ + "konaste" + ] + }, + { + "chartID": "a72afddc15079e03d6dba7e618a9a594718bed2e", + "data": { + "inGameID": 38470 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38470, + "versions": [ + "konaste" + ] + }, + { + "chartID": "3ac8be20c1cf15b9eaee3a29a0c82f97ff627bb0", + "data": { + "inGameID": 38470 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38470, + "versions": [ + "konaste" + ] + }, + { + "chartID": "099fe1d51108a68c4dd130482a7767fc39295fda", + "data": { + "inGameID": 38470 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38470, + "versions": [ + "konaste" + ] + }, + { + "chartID": "71dedf58ff1f4dff50a298e6c549b38b8783117b", + "data": { + "inGameID": 38470 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38470, + "versions": [ + "konaste" + ] + }, + { + "chartID": "6b0f728b3e98d107ee1dfe649c8aba412c339afd", + "data": { + "inGameID": 38471 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "DP", + "songID": 38471, + "versions": [ + "konaste" + ] + }, + { + "chartID": "1d276d5ed78f52b6d7584ffb00097126a294397a", + "data": { + "inGameID": 38471 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38471, + "versions": [ + "konaste" + ] + }, + { + "chartID": "b1f88f8d69fe4b31fc779a80862bb39c7585106c", + "data": { + "inGameID": 38471 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38471, + "versions": [ + "konaste" + ] + }, + { + "chartID": "7ac45eecfc08c721045e8a938ef2ae408718db6b", + "data": { + "inGameID": 38471 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38471, + "versions": [ + "konaste" + ] + }, + { + "chartID": "7725c0abb3b806541cff3d318804c173e12b816f", + "data": { + "inGameID": 38471 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38471, + "versions": [ + "konaste" + ] + }, + { + "chartID": "29e5cedc5bc93417f70c8a4a27db81db59076924", + "data": { + "inGameID": 38471 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38471, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f43fad6106a9e9c9508f5b972768fe4bb53d06a6", + "data": { + "inGameID": 38471 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38471, + "versions": [ + "konaste" + ] + }, + { + "chartID": "7ecdd801d3907877548392a04c3999400a0ed4b6", + "data": { + "inGameID": 38472 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "DP", + "songID": 38472, + "versions": [ + "konaste" + ] + }, + { + "chartID": "e421fbfbe86522dcbf2f935ee7055268af172636", + "data": { + "inGameID": 38472 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38472, + "versions": [ + "konaste" + ] + }, + { + "chartID": "9cd6cb8718a61b5900f0955d4697172f4192dfe5", + "data": { + "inGameID": 38472 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38472, + "versions": [ + "konaste" + ] + }, + { + "chartID": "bec758b098a3bb0975b1b1e595af65b39228faf7", + "data": { + "inGameID": 38472 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38472, + "versions": [ + "konaste" + ] + }, + { + "chartID": "abe5e1ad3f8f4369fa3de73f161d03c20a6a918c", + "data": { + "inGameID": 38472 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38472, + "versions": [ + "konaste" + ] + }, + { + "chartID": "aaba8706b27bd0332b5c1b157117ddfdb2a47d56", + "data": { + "inGameID": 38472 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38472, + "versions": [ + "konaste" + ] + }, + { + "chartID": "7f185d100d61afb6af9fcf9ffd29e4bd86c09854", + "data": { + "inGameID": 38472 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38472, + "versions": [ + "konaste" + ] + }, + { + "chartID": "fca07730e3376ad8009e2b5ffcbc60ef7eb08a03", + "data": { + "inGameID": 38473 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38473, + "versions": [ + "konaste" + ] + }, + { + "chartID": "b320c2a608adca723e442e58fcc627b2dffecb0f", + "data": { + "inGameID": 38473 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38473, + "versions": [ + "konaste" + ] + }, + { + "chartID": "923d3a5baee700ecc153941e2ad59c8185eea9fa", + "data": { + "inGameID": 38473 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38473, + "versions": [ + "konaste" + ] + }, + { + "chartID": "7c9bbf625df67e19cacc6d35338792c6bf2e4cda", + "data": { + "inGameID": 38473 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38473, + "versions": [ + "konaste" + ] + }, + { + "chartID": "620bcd90f52a57539508846eb4323b02bad4d0e6", + "data": { + "inGameID": 38473 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38473, + "versions": [ + "konaste" + ] + }, + { + "chartID": "849485d2081993a8df0f32d53ce995c47ebf8a64", + "data": { + "inGameID": 38473 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38473, + "versions": [ + "konaste" + ] + }, + { + "chartID": "9d42163f3b3ce4212eba1912f8efd18d51cfe1ea", + "data": { + "inGameID": 38473 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38473, + "versions": [ + "konaste" + ] + }, + { + "chartID": "e42534d0cbc4d66a8cfa54697127b1f231edd6c8", + "data": { + "inGameID": 38474 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38474, + "versions": [ + "konaste" + ] + }, + { + "chartID": "617b4ac422e7968a8bb6b591f65e7fd6fea01860", + "data": { + "inGameID": 38474 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38474, + "versions": [ + "konaste" + ] + }, + { + "chartID": "203fe4ab220b5d825a2e0655a53ddab082aa7472", + "data": { + "inGameID": 38474 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38474, + "versions": [ + "konaste" + ] + }, + { + "chartID": "c396c3dc150e129e236ad5c767c30e9bcafaff71", + "data": { + "inGameID": 38474 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38474, + "versions": [ + "konaste" + ] + }, + { + "chartID": "429bda6f2152f3b043aff152bbf664f4499835c5", + "data": { + "inGameID": 38474 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38474, + "versions": [ + "konaste" + ] + }, + { + "chartID": "c4a826967f54344119fb090392c5a66c07a78d2e", + "data": { + "inGameID": 38474 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38474, + "versions": [ + "konaste" + ] + }, + { + "chartID": "434318c341bfc389b6166432156e1e0f6aa459c1", + "data": { + "inGameID": 38474 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38474, + "versions": [ + "konaste" + ] + }, + { + "chartID": "048dca2a1e30d6934dfb5e8fb7974c56ecb8d89c", + "data": { + "inGameID": 38476 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 38476, + "versions": [ + "konaste" + ] + }, + { + "chartID": "076c5302b560233e1e60df70e06948dfff47706a", + "data": { + "inGameID": 38476 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38476, + "versions": [ + "konaste" + ] + }, + { + "chartID": "68f8b647eaffdfc02c5f42186824ae8ee29778af", + "data": { + "inGameID": 38476 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38476, + "versions": [ + "konaste" + ] + }, + { + "chartID": "238da19c3ddd26d3e11ecabac911ab435a61617d", + "data": { + "inGameID": 38476 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38476, + "versions": [ + "konaste" + ] + }, + { + "chartID": "dda8e14d9d1a8be6bba93a8bb7937037a55eb309", + "data": { + "inGameID": 38476 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38476, + "versions": [ + "konaste" + ] + }, + { + "chartID": "8a1fbe7b2530ba60d7230cd47e814dd99a86b0c1", + "data": { + "inGameID": 38476 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38476, + "versions": [ + "konaste" + ] + }, + { + "chartID": "7bb1ae49dbb35e9d8505b80def19a53e3ac4d2b0", + "data": { + "inGameID": 38476 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38476, + "versions": [ + "konaste" + ] + }, + { + "chartID": "8396b8903281e238b1a469fda3a8f3dcc4c75e2e", + "data": { + "inGameID": 38477 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38477, + "versions": [ + "konaste" + ] + }, + { + "chartID": "e0541800282d2f17d32d90ef40793afe371c4eee", + "data": { + "inGameID": 38477 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38477, + "versions": [ + "konaste" + ] + }, + { + "chartID": "301104a2438ed1761d49cf502e906f2e17e3d85d", + "data": { + "inGameID": 38477 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38477, + "versions": [ + "konaste" + ] + }, + { + "chartID": "b5a3a9b8ed070c5f6a07fe1a5082d940ec9b839c", + "data": { + "inGameID": 38477 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38477, + "versions": [ + "konaste" + ] + }, + { + "chartID": "417cbfb24e46234d85eed3864ede0540d5f0049d", + "data": { + "inGameID": 38477 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38477, + "versions": [ + "konaste" + ] + }, + { + "chartID": "7312f845f3d06ab7c44c3e81d243d96e1d7a6e24", + "data": { + "inGameID": 38477 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38477, + "versions": [ + "konaste" + ] + }, + { + "chartID": "584d025a53d5277bc44df9924ef74614a1860e43", + "data": { + "inGameID": 38477 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38477, + "versions": [ + "konaste" + ] + }, + { + "chartID": "446c7e3e1742c4009355b96efe86c77a6b139cba", + "data": { + "inGameID": 38478 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38478, + "versions": [ + "konaste" + ] + }, + { + "chartID": "5a738489ee3a7a148458510575eed1ac2dbdc73e", + "data": { + "inGameID": 38478 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38478, + "versions": [ + "konaste" + ] + }, + { + "chartID": "ddf4f29e7484a1872c94b5809aae86c0ab95e14b", + "data": { + "inGameID": 38478 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38478, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f4cf89b5a0e1ed12481733a79b0616d8dc9aea77", + "data": { + "inGameID": 38478 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38478, + "versions": [ + "konaste" + ] + }, + { + "chartID": "4bdd3872ba1d2e74902c9e4750ef86fab093b717", + "data": { + "inGameID": 38478 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38478, + "versions": [ + "konaste" + ] + }, + { + "chartID": "4b4ab3a4eb662b0b38270dd8d4a0a37a8d9f496f", + "data": { + "inGameID": 38478 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38478, + "versions": [ + "konaste" + ] + }, + { + "chartID": "0904ee0a7408372e29d866af5ba6820a0c454ab9", + "data": { + "inGameID": 38478 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38478, + "versions": [ + "konaste" + ] + }, + { + "chartID": "8e3030d74a4a63de917033a41e49a1184a2d2f22", + "data": { + "inGameID": 38479 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38479, + "versions": [ + "konaste" + ] + }, + { + "chartID": "545e8f29500abfc1c934530e1bcfd6213df6e393", + "data": { + "inGameID": 38479 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38479, + "versions": [ + "konaste" + ] + }, + { + "chartID": "7d1dc51b3e57cad81b04de43ff1338fb2d0f8d4d", + "data": { + "inGameID": 38479 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38479, + "versions": [ + "konaste" + ] + }, + { + "chartID": "11440fad5795d0e9263ca0e4d867bc451849c6d6", + "data": { + "inGameID": 38479 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38479, + "versions": [ + "konaste" + ] + }, + { + "chartID": "c0a5cdf4959d5845866eb5a9ac2cbee9d121dbc5", + "data": { + "inGameID": 38479 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38479, + "versions": [ + "konaste" + ] + }, + { + "chartID": "43d9d5f221a8ef404e4a117db036376d51982f33", + "data": { + "inGameID": 38479 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38479, + "versions": [ + "konaste" + ] + }, + { + "chartID": "1392e9d3296b04633a8e7e981ec9af09b9d93d66", + "data": { + "inGameID": 38479 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38479, + "versions": [ + "konaste" + ] + }, + { + "chartID": "67937f5349b9a3a13678d3ce595a141955642048", + "data": { + "inGameID": 38480 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38480, + "versions": [ + "konaste" + ] + }, + { + "chartID": "fa3f68cbf9d975f3374017f8ba05915166ddcc39", + "data": { + "inGameID": 38480 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38480, + "versions": [ + "konaste" + ] + }, + { + "chartID": "585c2a41708bfdcb01a93b2ce20d52a06be58eee", + "data": { + "inGameID": 38480 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38480, + "versions": [ + "konaste" + ] + }, + { + "chartID": "06bea8d621474852631e02250e1bc273d1463f99", + "data": { + "inGameID": 38480 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38480, + "versions": [ + "konaste" + ] + }, + { + "chartID": "80851938630f69cb71213fd55536d4e696a4c5c2", + "data": { + "inGameID": 38480 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38480, + "versions": [ + "konaste" + ] + }, + { + "chartID": "6556d455a8aa0122aa174100b8c27b542675b73e", + "data": { + "inGameID": 38480 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38480, + "versions": [ + "konaste" + ] + }, + { + "chartID": "64dbef8bddb2e6c83db9fafc824acd1b8f60bc64", + "data": { + "inGameID": 38480 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38480, + "versions": [ + "konaste" + ] + }, + { + "chartID": "a0057ccd9342a6775065d3df0008d9b32fbec2fb", + "data": { + "inGameID": 38481 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38481, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "44fe90b92d5563221350c60788617b8d916403b0", + "data": { + "inGameID": 38481 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38481, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9976c1b0a7a67d3c0062340aaec9cce58641be1d", + "data": { + "inGameID": 38481 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38481, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7127b55ceecd2a17da8e26ff4d9bd15faa776237", + "data": { + "inGameID": 38481 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38481, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a9ce6f8bfea757bfbb2f05ee7d2691ad4d38e1a3", + "data": { + "inGameID": 38481 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38481, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d88e3da525d97aca9bd3160dbb1bf18762436a1f", + "data": { + "inGameID": 38481 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38481, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "968b99165600db4969a19d20864802530eb4b881", + "data": { + "inGameID": 38481 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38481, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "90bad76e16970c968cc67d082ac674ce55bbc66f", + "data": { + "inGameID": 38482 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38482, + "versions": [ + "konaste" + ] + }, + { + "chartID": "cfd3c520e1ba9ed3b56481d3dcfb860c1fd08389", + "data": { + "inGameID": 38482 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38482, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f487e9b8431b11e32d70325eeef6ebb16867847f", + "data": { + "inGameID": 38482 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38482, + "versions": [ + "konaste" + ] + }, + { + "chartID": "3ce00f448a1400068287bd1537032813527dcdd6", + "data": { + "inGameID": 38482 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38482, + "versions": [ + "konaste" + ] + }, + { + "chartID": "65d27c8a25e303e36925c6415449f78b4ba8bd3c", + "data": { + "inGameID": 38482 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38482, + "versions": [ + "konaste" + ] + }, + { + "chartID": "7fd019e78a99d43bb4e78ae1b730a0923656a016", + "data": { + "inGameID": 38482 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38482, + "versions": [ + "konaste" + ] + }, + { + "chartID": "658db491dd77419d95e5a1bcbe6f1e4adeaced48", + "data": { + "inGameID": 38482 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38482, + "versions": [ + "konaste" + ] + }, + { + "chartID": "8e21eff754e8f63bfa08df1d0f80b51b94f4120f", + "data": { + "inGameID": 38483 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38483, + "versions": [ + "konaste" + ] + }, + { + "chartID": "8865df0cc5b7d10b4a7351f56a36d2957ebe2a88", + "data": { + "inGameID": 38483 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38483, + "versions": [ + "konaste" + ] + }, + { + "chartID": "c9fc4d6a4b1409938ca4ddbcb4c2237c88fc6df9", + "data": { + "inGameID": 38483 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38483, + "versions": [ + "konaste" + ] + }, + { + "chartID": "4875242434c89c1c4de242da25af2cd3acce0c2c", + "data": { + "inGameID": 38483 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38483, + "versions": [ + "konaste" + ] + }, + { + "chartID": "b288010c1fea6f645e3665336ad1b9289412fc53", + "data": { + "inGameID": 38483 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38483, + "versions": [ + "konaste" + ] + }, + { + "chartID": "4eb4a9ededf419dc8dc196c48dbff8a851507269", + "data": { + "inGameID": 38483 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38483, + "versions": [ + "konaste" + ] + }, + { + "chartID": "0ea84c0e281cf9de751aae5be267080d0ab6a056", + "data": { + "inGameID": 38483 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38483, + "versions": [ + "konaste" + ] + }, + { + "chartID": "2d2fc6edd4a324f1c2f55a0ead8a5a74177a43bc", + "data": { + "inGameID": 38484 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38484, + "versions": [ + "konaste" + ] + }, + { + "chartID": "2c96ed8e8f1f899046b42ce263439ef78d0d24de", + "data": { + "inGameID": 38484 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38484, + "versions": [ + "konaste" + ] + }, + { + "chartID": "1f420e1a1ed97512e1015f7688373a78a6147de0", + "data": { + "inGameID": 38484 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38484, + "versions": [ + "konaste" + ] + }, + { + "chartID": "aaa834d31012ca2c3f4a73c8b63e26f3f8c812b0", + "data": { + "inGameID": 38484 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38484, + "versions": [ + "konaste" + ] + }, + { + "chartID": "84db87de2d17d0c2e5d9a550fc53439f38fa1b9e", + "data": { + "inGameID": 38484 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38484, + "versions": [ + "konaste" + ] + }, + { + "chartID": "6b46c2ec7f286d5bdf9505477c7c7a78ef226e6d", + "data": { + "inGameID": 38484 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38484, + "versions": [ + "konaste" + ] + }, + { + "chartID": "374bead8a4e8dd41d3ebd813ba509c6b84792722", + "data": { + "inGameID": 38484 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38484, + "versions": [ + "konaste" + ] + }, + { + "chartID": "17deffe04c97ef21b61b7d1750dc15a1e5842685", + "data": { + "inGameID": 38485 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38485, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "48bbfca0e665073cab7e1769535f6cb2401d3738", + "data": { + "inGameID": 38485 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38485, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f362736ec7f21f4dc44f7c27a131cb170a4b71e2", + "data": { + "inGameID": 38485 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38485, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "482e34087ba2d601dfe841f6c4779ed7e50f3553", + "data": { + "inGameID": 38485 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38485, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce5f9f642cb32a151a3afdb4fa669de8d8ddf84b", + "data": { + "inGameID": 38485 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38485, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3ae50c729b201772b0d6855f0e4b86e7a113d693", + "data": { + "inGameID": 38485 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38485, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9db331fc19f68abf14fd397c2ef3e443f4a82108", + "data": { + "inGameID": 38485 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38485, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "56f7e15d903d491a2ff8d2e02a6db21be769f848", + "data": { + "inGameID": 38486 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38486, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a4eb916c932b66f90a69e0ef441648cc1b958281", + "data": { + "inGameID": 38486 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38486, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "16d189859b7e4685dd84c43d22812780c9b263ac", + "data": { + "inGameID": 38486 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38486, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "991ce6628d9a7bdd7fa0a682b2c4bc92f8cb9085", + "data": { + "inGameID": 38486 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38486, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c4787324abb7359fe036b4c8544e570b4bb82746", + "data": { + "inGameID": 38486 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38486, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a4e18dc317771bc3d6575134fc13bd1bfdeeac98", + "data": { + "inGameID": 38486 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38486, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "29ae431de13fb1e50d9dbfedf2c749de12dc67b3", + "data": { + "inGameID": 38486 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38486, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3a386082efc4bb40169805e97eca45d2a2fc2590", + "data": { + "inGameID": 38487 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38487, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "488d7c88da72d9c321a9a436105fa23512fb2885", + "data": { + "inGameID": 38487 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38487, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "443d1612ced9264af8922d667413abac7d609d23", + "data": { + "inGameID": 38487 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38487, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "77b95277a9c093dea149c7cfb0395f24d1c00156", + "data": { + "inGameID": 38487 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38487, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "17bf08a6bc0c0d9ec92fecaed2c76efe8db6e26c", + "data": { + "inGameID": 38487 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38487, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "062342bea149d17721999e53ef60bc87e7ba7b37", + "data": { + "inGameID": 38487 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38487, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1a32998ea60bc9bccc2e87a751194c8e281d59c5", + "data": { + "inGameID": 38487 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38487, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fb98dfdc654df569f1d29525c3fac83b4052d14a", + "data": { + "inGameID": 38488 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38488, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5aa9837be193cc5c3658ed51bcce771d812c2cf3", + "data": { + "inGameID": 38488 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38488, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "81844dc2f590ec5d2400ee4ed9a41655c6a7c1b4", + "data": { + "inGameID": 38488 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38488, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9edf9f9419cfc2210f3b28a178e64f7a94c94cfb", + "data": { + "inGameID": 38488 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38488, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bcf9611fb4e8e1981a238f7b3f27878232589df2", + "data": { + "inGameID": 38488 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38488, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f9456cf933af97de1f7f2da2c2ccd9aa128a5569", + "data": { + "inGameID": 38488 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38488, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9c230e8da13f20bfae310bd19d5f9503e1aab706", + "data": { + "inGameID": 38488 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38488, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "395dc134c0d50278101ea873a7b7bb10c4d8eda2", + "data": { + "inGameID": 38489 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38489, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bcf765445560912c8ea90da4998992329f3602d0", + "data": { + "inGameID": 38489 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38489, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ec6b20d5deb18a2478cf72db0175e96e92a9b444", + "data": { + "inGameID": 38489 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38489, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fd9419b6066bf7fbaa8664311d9b8cb823179cd4", + "data": { + "inGameID": 38489 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38489, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7585cdfeb4c3d779709cb97c65cfc8f27ba01330", + "data": { + "inGameID": 38489 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38489, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a398c800a02222d8c488cd3dec276aa8639c9b4a", + "data": { + "inGameID": 38489 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38489, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ec7957c3b3e5c2dca20b937f913f0f918f41c2dd", + "data": { + "inGameID": 38489 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38489, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "58e968835df93262c96834640f1d967d6d523378", + "data": { + "inGameID": 38490 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38490, + "versions": [ + "a3" + ] + }, + { + "chartID": "7052e57bf0a5562267d269cfbbe64541a2c0ff83", + "data": { + "inGameID": 38490 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38490, + "versions": [ + "a3" + ] + }, + { + "chartID": "51d97b25b9f471df66e4adc7fcb3a116ba5d0377", + "data": { + "inGameID": 38490 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38490, + "versions": [ + "a3" + ] + }, + { + "chartID": "84a2f32fca37fba3d6d3a09682062a723e038d1e", + "data": { + "inGameID": 38490 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38490, + "versions": [ + "a3" + ] + }, + { + "chartID": "c6c2e65180f1a650a2a3d3558e7a465dab3978b0", + "data": { + "inGameID": 38490 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38490, + "versions": [ + "a3" + ] + }, + { + "chartID": "91e2f3156f4aed22090791acb9474445c3bb1e90", + "data": { + "inGameID": 38490 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38490, + "versions": [ + "a3" + ] + }, + { + "chartID": "9414980cfa59f1d0d804f91fa18075b1bc27afad", + "data": { + "inGameID": 38490 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38490, + "versions": [ + "a3" + ] + }, + { + "chartID": "ba3a9b9c48efb64154ba113a6c140f2c7497b1c3", + "data": { + "inGameID": 38491 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38491, + "versions": [ + "a3" + ] + }, + { + "chartID": "c202091339bd5820096d993f2eba10f9ee0bce74", + "data": { + "inGameID": 38491 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38491, + "versions": [ + "a3" + ] + }, + { + "chartID": "e0903d0f3683f66d4d08f2a76951f0991aacf833", + "data": { + "inGameID": 38491 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38491, + "versions": [ + "a3" + ] + }, + { + "chartID": "525e1dd5194ae0cc6df9f1390229ce99b3fb5b05", + "data": { + "inGameID": 38491 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38491, + "versions": [ + "a3" + ] + }, + { + "chartID": "84f233fd4ffa83cf1f36063e716876ac2a9814ab", + "data": { + "inGameID": 38491 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38491, + "versions": [ + "a3" + ] + }, + { + "chartID": "ab4fb95bb5c9b771772ab957d439c197ba95fb5d", + "data": { + "inGameID": 38491 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38491, + "versions": [ + "a3" + ] + }, + { + "chartID": "5fa7c8023bc714426a1c2bd6bf5e93966fc96052", + "data": { + "inGameID": 38491 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38491, + "versions": [ + "a3" + ] + }, + { + "chartID": "f4965284eb25b7c15ec388e1b60e48e23b710eb3", + "data": { + "inGameID": 38492 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38492, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "26a6242017c5d3024934ac6d1166a61572fafba1", + "data": { + "inGameID": 38492 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38492, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e1a18423fbd7625128aa49b4544af5513b7a0740", + "data": { + "inGameID": 38492 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38492, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9a67135fdc24ec204d19367005c8fc07f47971a5", + "data": { + "inGameID": 38492 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38492, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c2fbf2b83326224926e4579784fbfc9f869e7b8e", + "data": { + "inGameID": 38492 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38492, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "458ebf22bd172fd54824d88421d045207463d8ac", + "data": { + "inGameID": 38492 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38492, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "068e675b0a9d68b215a62bbfa3abd55c31e8fe76", + "data": { + "inGameID": 38492 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38492, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d8dd86b7bdb9e82a16beaa6f40071ea233e7778f", + "data": { + "inGameID": 38493 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38493, + "versions": [ + "a3" + ] + }, + { + "chartID": "b14615bf2d393824aa09591369bea287288d6d37", + "data": { + "inGameID": 38493 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38493, + "versions": [ + "a3" + ] + }, + { + "chartID": "2f286af61ab1b2c736be531c65d129e5302d1c39", + "data": { + "inGameID": 38493 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38493, + "versions": [ + "a3" + ] + }, + { + "chartID": "27a3684f2163215940c1208e8d76f748dc2f2ad1", + "data": { + "inGameID": 38493 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38493, + "versions": [ + "a3" + ] + }, + { + "chartID": "6840ab20172ee1864a5307f7aa470c47cf8197f6", + "data": { + "inGameID": 38493 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38493, + "versions": [ + "a3" + ] + }, + { + "chartID": "182f23062161e8614fa44233779d94b9a89689dd", + "data": { + "inGameID": 38493 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38493, + "versions": [ + "a3" + ] + }, + { + "chartID": "27429cbafab3f9b147445b8540aa91c58368e94a", + "data": { + "inGameID": 38493 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38493, + "versions": [ + "a3" + ] + }, + { + "chartID": "a5a5cf846e257f43c99012cd1934c1c159ee47a2", + "data": { + "inGameID": 38493 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38493, + "versions": [ + "a3" + ] + }, + { + "chartID": "b727c23cb34d2511a54bc661c71f63617656e1a6", + "data": { + "inGameID": 38493 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38493, + "versions": [ + "a3" + ] + }, + { + "chartID": "c04f353a0ba2aa3e1935ea151f39f76048b02f6e", + "data": { + "inGameID": 38494 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38494, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b1e258a616df3dde027ad5b5e21dfe0a44ac0645", + "data": { + "inGameID": 38494 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38494, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a5377e71b0379fc69435bd448e15c4ea667b9587", + "data": { + "inGameID": 38494 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38494, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8a9a5a000d8ce4a641b68f154e345b945c9934eb", + "data": { + "inGameID": 38494 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38494, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5871a2d49cddf8546ce92a1c25338265e2951105", + "data": { + "inGameID": 38494 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38494, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "78ffcfcd96a07af1859ac8b9874bac81d3f8b2a3", + "data": { + "inGameID": 38494 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38494, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1e812ebecd109587c73dba2ce25688858168fd92", + "data": { + "inGameID": 38494 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38494, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ae63d394e6effc6a1f613f5d42d40d33909f8ad4", + "data": { + "inGameID": 38495 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38495, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4b3d8f770b925fbb68d025ce686694f6c9141eac", + "data": { + "inGameID": 38495 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38495, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0cb7c8ca4b8187287705a59e0de8877064101e8a", + "data": { + "inGameID": 38495 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38495, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c3c3f1a0507eae04b3d935be5a80834b56229cdb", + "data": { + "inGameID": 38495 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38495, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bffc19619135f1d4735f901c25af523852990150", + "data": { + "inGameID": 38495 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38495, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3095c1880e2638a1342281b72542392471b0a246", + "data": { + "inGameID": 38495 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38495, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7986c8cf7d9256fe674c0fba1189fcff45952f4c", + "data": { + "inGameID": 38495 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38495, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3fc0450fe914d68d211e7c2de0f5bb56e5b19058", + "data": { + "inGameID": 38496 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38496, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "64ccbacf9c8d152e6eb98b7a80fd0122eb1e7770", + "data": { + "inGameID": 38496 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38496, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "00beb7bc5fa6d579fbdfd92eb075b522e097d3fe", + "data": { + "inGameID": 38496 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38496, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9b39772d2477b79a048c7f307b50a2162d2acf92", + "data": { + "inGameID": 38496 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38496, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "535afcfb5de177bad5409795ec91bf56fd7b02a0", + "data": { + "inGameID": 38496 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38496, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "23875731dc20bb6d7596a4ff4b8714fa920a3f0f", + "data": { + "inGameID": 38496 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38496, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "92cfe3b5bc37b959ea39ec04ba88f4823742fe73", + "data": { + "inGameID": 38496 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38496, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d08801ea3a79aec2db22ffa3ec83466ef5c209b2", + "data": { + "inGameID": 38497 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38497, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a23cc632229aac599cf87f8cb0cb022bd9836746", + "data": { + "inGameID": 38497 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38497, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0b37ec03483b1ac4e3f91a9afc5d4691077585b2", + "data": { + "inGameID": 38497 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38497, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1c01f2e08abf2231a1f5db432e47a3c8390739d5", + "data": { + "inGameID": 38497 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38497, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "154039dcfd655f782ac96b371f6a6bdd7cabcfa5", + "data": { + "inGameID": 38497 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38497, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b5cd2e6c337fa66eaaf744b44cef54ac297d7e01", + "data": { + "inGameID": 38497 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38497, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "586fee249eae6d65dcca17f93ccf0bf22ae5074a", + "data": { + "inGameID": 38497 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38497, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7b8d03ca5eee60e7ad387058399ddd97810f1309", + "data": { + "inGameID": 38498 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 38498, + "versions": [ + "konaste" + ] + }, + { + "chartID": "bc4b87a784d9095e2bff5d44e62fcad7f7a6a8ae", + "data": { + "inGameID": 38498 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38498, + "versions": [ + "konaste" + ] + }, + { + "chartID": "c2f4b084a76feb2690972ff18f61385b5dfba4c0", + "data": { + "inGameID": 38498 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38498, + "versions": [ + "konaste" + ] + }, + { + "chartID": "de14509b622a2c185fb2beeba081877b300e4c3c", + "data": { + "inGameID": 38498 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38498, + "versions": [ + "konaste" + ] + }, + { + "chartID": "e84590add7e11e0af229c684761d39025e47afd5", + "data": { + "inGameID": 38498 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38498, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f11af599b3877a59dc35d2bfb0d3ddafb9346017", + "data": { + "inGameID": 38498 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38498, + "versions": [ + "konaste" + ] + }, + { + "chartID": "d035e67318b3af8a4f3ea171758718529bddcb2c", + "data": { + "inGameID": 38498 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38498, + "versions": [ + "konaste" + ] + }, + { + "chartID": "aab5ec1b3d1a943356ace73ac658bcaad78b6ec2", + "data": { + "inGameID": 38499 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38499, + "versions": [ + "konaste" + ] + }, + { + "chartID": "e5dddf035b3c0a953ff289e5009642914b84bf00", + "data": { + "inGameID": 38499 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38499, + "versions": [ + "konaste" + ] + }, + { + "chartID": "0c115db2ad3addaebd6e9a15a35c9c4c5d13fba5", + "data": { + "inGameID": 38499 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38499, + "versions": [ + "konaste" + ] + }, + { + "chartID": "a5d22d8549d54f20f2dbbbf299eeed32a6ad10ca", + "data": { + "inGameID": 38499 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38499, + "versions": [ + "konaste" + ] + }, + { + "chartID": "63e4eb9604056f701f2ac8561b9c3a08163b309a", + "data": { + "inGameID": 38499 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38499, + "versions": [ + "konaste" + ] + }, + { + "chartID": "32649c660424238941dac1a64356b00c90daa85a", + "data": { + "inGameID": 38499 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38499, + "versions": [ + "konaste" + ] + }, + { + "chartID": "31d653bbfb5c7d03dd05d0acc84b43026d82ee8e", + "data": { + "inGameID": 38499 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38499, + "versions": [ + "konaste" + ] + }, + { + "chartID": "37fb94e0df489785a2ebfa24ef4d54fa72a92590", + "data": { + "inGameID": 38500 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38500, + "versions": [ + "konaste" + ] + }, + { + "chartID": "aaa982d987a45ddf2c4e65828f0d9546c6cd8cfd", + "data": { + "inGameID": 38500 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38500, + "versions": [ + "konaste" + ] + }, + { + "chartID": "c4274bc829cdd32ec06da2844327cc9cf5bedc76", + "data": { + "inGameID": 38500 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38500, + "versions": [ + "konaste" + ] + }, + { + "chartID": "e247b1bf2ad3ce7f2e574d807d557f3f80ea52e8", + "data": { + "inGameID": 38500 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38500, + "versions": [ + "konaste" + ] + }, + { + "chartID": "604c99ab62880e5ece0bff3efb46872f6bea19b0", + "data": { + "inGameID": 38500 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38500, + "versions": [ + "konaste" + ] + }, + { + "chartID": "dd12dd08920a7c781b99c7c30a435015e58d9c74", + "data": { + "inGameID": 38500 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38500, + "versions": [ + "konaste" + ] + }, + { + "chartID": "36d902fdf30d045a900ed78a77378a9cf08ac2cc", + "data": { + "inGameID": 38500 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38500, + "versions": [ + "konaste" + ] + }, + { + "chartID": "dd55cd106eff70775cd3a73b6d16ae173c6c5da2", + "data": { + "inGameID": 38501 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38501, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "54ed94177c8d890604fe4ae9c4708f974c523f01", + "data": { + "inGameID": 38501 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38501, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "20d37e5b8b24d4dfaa77fc43cef0535feb1ce596", + "data": { + "inGameID": 38501 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38501, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5c3332509ed648c05b9bc80c431eb04ec0f7c694", + "data": { + "inGameID": 38501 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38501, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fa4b78c611d49c533a6888043b9444a587fde17f", + "data": { + "inGameID": 38501 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38501, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "241b1cc35b0fb4d8f1d8040e9419e7579a842b30", + "data": { + "inGameID": 38501 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38501, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7aad843f5898efe6cd37a2ef3b3d062c0119d8d6", + "data": { + "inGameID": 38501 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38501, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "665ad7c702bc68caca24775ccad9cf5b490f7063", + "data": { + "inGameID": 38501 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38501, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7a5b4e4f239a0107f6a83e460ab25a22472cef10", + "data": { + "inGameID": 38501 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38501, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d1dfd667493ab4a246c85609f1b1290e28e1d7e1", + "data": { + "inGameID": 38502 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38502, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7361a26fe54c176531048ea7de50532f3e731fd7", + "data": { + "inGameID": 38502 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38502, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "793fa08532fafa6f02ca90e361cad477fd76445e", + "data": { + "inGameID": 38502 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38502, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "099d706498d65734cf44a6a05c24068bc96db5f9", + "data": { + "inGameID": 38502 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38502, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "14acd49cbaae623d14ae840684116e74ffc83eae", + "data": { + "inGameID": 38502 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38502, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9e072198012261be33ac4ea34ed5b399dd0c60dc", + "data": { + "inGameID": 38502 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38502, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ec3d03ea29d036caeb635ffadccfddab8cfe4b51", + "data": { + "inGameID": 38502 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38502, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5212e4b496b094f5ba1618289087275fe61d909b", + "data": { + "inGameID": 38503 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38503, + "versions": [ + "konaste" + ] + }, + { + "chartID": "4a5490eed19936af768c74ebac7e6836141f42e8", + "data": { + "inGameID": 38503 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38503, + "versions": [ + "konaste" + ] + }, + { + "chartID": "49b7c2a28a37c2f54177a48bf9e10a5ee3a250fe", + "data": { + "inGameID": 38503 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38503, + "versions": [ + "konaste" + ] + }, + { + "chartID": "34bdba5ce16162815d4ebc5abbe8efde6ec01392", + "data": { + "inGameID": 38503 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38503, + "versions": [ + "konaste" + ] + }, + { + "chartID": "e8fd1a627f2b2158ea691db76f223c5fb3f1b3d8", + "data": { + "inGameID": 38503 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38503, + "versions": [ + "konaste" + ] + }, + { + "chartID": "9137ddce25a6277c7110ad078982ccaddc572ba8", + "data": { + "inGameID": 38503 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38503, + "versions": [ + "konaste" + ] + }, + { + "chartID": "1835ecd58489c62a8ef1c9b84eeaaf279b045f58", + "data": { + "inGameID": 38503 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38503, + "versions": [ + "konaste" + ] + }, + { + "chartID": "aa3194ab2cb1b16e3139ff68607b294d0633d6cb", + "data": { + "inGameID": 38503 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38503, + "versions": [ + "konaste" + ] + }, + { + "chartID": "d850065c6028663bd1b82132af834d1b6e283db1", + "data": { + "inGameID": 38503 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38503, + "versions": [ + "konaste" + ] + }, + { + "chartID": "56faf8286c9d2b46253cf4ef710761539788ae50", + "data": { + "inGameID": 38504 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38504, + "versions": [ + "konaste" + ] + }, + { + "chartID": "18165c774251c638e9f0a4ee41d8829cc36ca7de", + "data": { + "inGameID": 38504 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38504, + "versions": [ + "konaste" + ] + }, + { + "chartID": "c8da732ac5b3e41c245e373c3995a105cc258fe5", + "data": { + "inGameID": 38504 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38504, + "versions": [ + "konaste" + ] + }, + { + "chartID": "1a4a632c996beb38e949e8683f25dde49f84b444", + "data": { + "inGameID": 38504 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38504, + "versions": [ + "konaste" + ] + }, + { + "chartID": "ab42e224ad94f5a98830777ad374a0983f606518", + "data": { + "inGameID": 38504 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38504, + "versions": [ + "konaste" + ] + }, + { + "chartID": "7d83cdcef25ad797ba99c3ba7be23c564cc0c3c1", + "data": { + "inGameID": 38504 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38504, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f0281f7a2e0f2d10e58fbd0d85a7a14ac6c7607a", + "data": { + "inGameID": 38504 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38504, + "versions": [ + "konaste" + ] + }, + { + "chartID": "e562ef504dcb5f28c41cebb874e9a9ed149c4042", + "data": { + "inGameID": 38505 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38505, + "versions": [ + "konaste" + ] + }, + { + "chartID": "b3e32e969cc0980bd0cd884df6664bebdd2a1ac2", + "data": { + "inGameID": 38505 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38505, + "versions": [ + "konaste" + ] + }, + { + "chartID": "2550904c16c0c222b860f29af8c40ad8b6b22bf4", + "data": { + "inGameID": 38505 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38505, + "versions": [ + "konaste" + ] + }, + { + "chartID": "3ae050e757c44d56eddc894edefadca3eca92944", + "data": { + "inGameID": 38505 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38505, + "versions": [ + "konaste" + ] + }, + { + "chartID": "0523cba0fe39d10559e66f3b7b9875957b5b4765", + "data": { + "inGameID": 38505 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38505, + "versions": [ + "konaste" + ] + }, + { + "chartID": "c7cb83e45501ff12b304e48dfc84e49df803a785", + "data": { + "inGameID": 38505 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38505, + "versions": [ + "konaste" + ] + }, + { + "chartID": "988aaa9a57db26b545d9c6b7618b78016d6de5d8", + "data": { + "inGameID": 38505 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38505, + "versions": [ + "konaste" + ] + }, + { + "chartID": "2e9518934a615324e792c172dc6c65cb443670d0", + "data": { + "inGameID": 38505 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38505, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f90f2f832c890d891d3b2495d4c41ea76e4d4a3d", + "data": { + "inGameID": 38505 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38505, + "versions": [ + "konaste" + ] + }, + { + "chartID": "1be2c4d3fc785a59c86ffbac53bf87d804672f2e", + "data": { + "inGameID": 38506 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38506, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8e5dd2c6031b128c25cce8bcbfd2905f125c7b79", + "data": { + "inGameID": 38506 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38506, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "65aa5a381471157ea9e6a22acb4ccbf55123e393", + "data": { + "inGameID": 38506 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38506, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a1fe9babfa079a68524682b523163fd2e03a496f", + "data": { + "inGameID": 38506 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38506, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "87e001344a40066e0b27dd0d9170f9200a583af1", + "data": { + "inGameID": 38506 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38506, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cf09554c6ecd388a9fc3797d8c547407baa3a6fc", + "data": { + "inGameID": 38506 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38506, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dc05dee4330dac49b1dab2611afc9e8df8f46832", + "data": { + "inGameID": 38506 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38506, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cb14de26669a059cdd4ee8809d444eced39bade0", + "data": { + "inGameID": 38507 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 38507, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7e2b538b46a1b751f40dbe66b37a2ec9000d2632", + "data": { + "inGameID": 38507 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38507, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8a5406e3255bd2dbef523bf457b7373db4c910be", + "data": { + "inGameID": 38507 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38507, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b2c75c9378050659f2b0c301aa5a68d99f878167", + "data": { + "inGameID": 38507 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38507, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c0941950fd951415b0ee184a29bc34ad575aa5c6", + "data": { + "inGameID": 38507 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38507, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "95af2a8eb5a52cd0fc12f5e6539e8349a7d361ca", + "data": { + "inGameID": 38507 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38507, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a4d79c446fb91b24f7add818ef7964a7ae60f430", + "data": { + "inGameID": 38507 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38507, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "13d0c28b4d9fc85b4effd917b965c8521991f6e5", + "data": { + "inGameID": 38508 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38508, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "86d48107a9426d21691aeee81d5dea83e24a677f", + "data": { + "inGameID": 38508 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38508, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fe3981c30c1c6ea5434afc13970eb8c459431cec", + "data": { + "inGameID": 38508 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38508, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "66b7bc2bebd4255e9b988f5673708053f05be20c", + "data": { + "inGameID": 38508 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38508, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b178ce3a3dca5193b9f973276e57b27181bd35ff", + "data": { + "inGameID": 38508 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38508, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4f95a7513bb638448f11a4200243b123c0060a90", + "data": { + "inGameID": 38508 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38508, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "63d0989d0ee54fae11f0c9bd89c7a2a078277f1d", + "data": { + "inGameID": 38508 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38508, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f6f59a0fca604393bc032d11beef9088ac281d1c", + "data": { + "inGameID": 38509 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38509, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "472ce28bcd057f86b3dcfe7fc381c48c45f99dbd", + "data": { + "inGameID": 38509 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38509, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2596feae8b1dca208c5f4f6460a464f6b4538cc6", + "data": { + "inGameID": 38509 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38509, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "184b9da988660e5cf9d62ba695162d4de2da6385", + "data": { + "inGameID": 38509 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38509, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1145a4c3fdac9ce902f6d3256eb099b8a2919c1c", + "data": { + "inGameID": 38509 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38509, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f67a335fd92293b312325b8d94b66a509a4b37d", + "data": { + "inGameID": 38509 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38509, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "64e2bc2b477cde0cb441648c863a9f5e4c0c96c5", + "data": { + "inGameID": 38509 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38509, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "74862a93f6175c50be4e21670141beb86a1d59f6", + "data": { + "inGameID": 38510 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38510, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "53e29b1653b61138e4f90fb557522d87fd82b632", + "data": { + "inGameID": 38510 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38510, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cb7a8129cf16d35b03bd81586de2a264a26fb889", + "data": { + "inGameID": 38510 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38510, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9621f01befeb89ea493423ff1341b2a5476c7187", + "data": { + "inGameID": 38510 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38510, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3fa40775a52d9751c0e405f80d7c177d63bbc12a", + "data": { + "inGameID": 38510 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38510, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e95aaba11ecf6b9fbd29359f5a4e7a10d7defb95", + "data": { + "inGameID": 38510 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38510, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ab29991f6cd5ca2796652cee06fcab663c5b413b", + "data": { + "inGameID": 38510 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38510, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ef4a04b2a9b23e77ada456faa59c66d3476539a7", + "data": { + "inGameID": 38511 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38511, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c8c346aa2080ded119a96e405471b122309acd7c", + "data": { + "inGameID": 38511 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38511, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3cfd85bf3af31debe213380b32a3972e4b62c856", + "data": { + "inGameID": 38511 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38511, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fef9a8bfdb4d57861d993b9db1e1e16e66445e44", + "data": { + "inGameID": 38511 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38511, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e2ffd5944446e7c362c0e3a04f54d0eb6b10fc2f", + "data": { + "inGameID": 38511 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38511, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d3d3c44a88ab6265eac00a001e6f5a15e5b304f8", + "data": { + "inGameID": 38511 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38511, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bc40db83e92a0c2114b3b4007aa5f08e28d4df48", + "data": { + "inGameID": 38511 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38511, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d58d875b472e28a529d31ae9c19394614f074b56", + "data": { + "inGameID": 38512 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38512, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d4b296c5cdddf823aea58e3a9757cebc9d15c308", + "data": { + "inGameID": 38512 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38512, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "38fdb5c9e3b3f34e6cba0726b4ab63399f2fe41c", + "data": { + "inGameID": 38512 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38512, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f549dc4a68f112f23645f9ab173ce0798950ca71", + "data": { + "inGameID": 38512 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38512, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "94f4b525af4072d97e225857021ae5c9c90b32a9", + "data": { + "inGameID": 38512 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38512, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "47e42dec422b560de5bfe8d574a823b1a904d81d", + "data": { + "inGameID": 38512 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38512, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0cf925ff5f6d4a4cc1fdb0407edc0f69c77484f7", + "data": { + "inGameID": 38512 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38512, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d874eb7ae1c15b8c7570f0bb4cc07582051fc7e4", + "data": { + "inGameID": 38513 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38513, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2d863ed894f421f2cdcac514498485ae08e23939", + "data": { + "inGameID": 38513 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38513, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "05067898a1d192e0078b574bbdc57bab2528da71", + "data": { + "inGameID": 38513 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38513, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7eab2a0ab74be992caf02a20a2685a79c92447a8", + "data": { + "inGameID": 38513 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38513, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9dc8d38d862c7a981c8721df42b779115aa21941", + "data": { + "inGameID": 38513 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38513, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "96eff4cbbae6e15224e2bb37d915404fbbebc7e1", + "data": { + "inGameID": 38513 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38513, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5cad14b6fd4eddd3f89de2f55077fa27d08cdcb7", + "data": { + "inGameID": 38513 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38513, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d5b476ef333f26ca6208ec92045da180add98335", + "data": { + "inGameID": 38514 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38514, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "607dcdbb73a2e44e6819ad9ab9f224e2aceb3b81", + "data": { + "inGameID": 38514 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38514, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "36a1e5ab2c646cd7b34a61997adf7a1a18d3aff5", + "data": { + "inGameID": 38514 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38514, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8669e562191e3f57bd81d834e59c47e9f4cb1f1e", + "data": { + "inGameID": 38514 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38514, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "469257c9c6e46a5128500824d1ccb55160a8c737", + "data": { + "inGameID": 38514 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38514, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "613d86830e8d4c4c96c78010c45dcb746fa4e097", + "data": { + "inGameID": 38514 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38514, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a40a523d34711a0600df05d64f5d53ccca52624c", + "data": { + "inGameID": 38514 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38514, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "44b776adee2a75a230d8ebc9380eaf9cd6c5f739", + "data": { + "inGameID": 38515 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38515, + "versions": [ + "a3" + ] + }, + { + "chartID": "58ded89087cf0eb69bc2f4844b2d6d7085b01c1f", + "data": { + "inGameID": 38515 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38515, + "versions": [ + "a3" + ] + }, + { + "chartID": "f2c44252726f5b2820ef64372851493b534f1a86", + "data": { + "inGameID": 38515 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38515, + "versions": [ + "a3" + ] + }, + { + "chartID": "383a62abed25cbc693215abb2bede4ff1c106e35", + "data": { + "inGameID": 38515 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38515, + "versions": [ + "a3" + ] + }, + { + "chartID": "35681d410e1af8e424039f55ea3cb67fa8348dd7", + "data": { + "inGameID": 38515 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38515, + "versions": [ + "a3" + ] + }, + { + "chartID": "8aeeb649a37acaa1be0cac785432a3775e65fd26", + "data": { + "inGameID": 38515 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38515, + "versions": [ + "a3" + ] + }, + { + "chartID": "a2bcdda530e8ceef1fb9a158a1a34b9e8ac8bb39", + "data": { + "inGameID": 38515 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38515, + "versions": [ + "a3" + ] + }, + { + "chartID": "2773b7c9bea88e39ec814d5f533ee560fe3a887f", + "data": { + "inGameID": 38516 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38516, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fb8c46a915dd941a18804d804f5ba56911cefaa5", + "data": { + "inGameID": 38516 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38516, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e15cb7d177798f9d02010ff17ffb368e5ab169aa", + "data": { + "inGameID": 38516 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38516, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "73cd43870cea9ecb51769a19895f61a644f333cc", + "data": { + "inGameID": 38516 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38516, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "21351b6dbd67c83a4e68c97837b562affb052598", + "data": { + "inGameID": 38516 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38516, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "316df28040152f79e9a7e73c1b58efa8376c8543", + "data": { + "inGameID": 38516 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38516, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1a3afc71dd66c40afc718d54b0d21bcdd53b5dcb", + "data": { + "inGameID": 38516 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38516, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f69f87ecb4e572330395979c0dd03fe795b25276", + "data": { + "inGameID": 38516 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38516, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6f039d7a53d4edb5bdcefe0d2141ebd070de68c1", + "data": { + "inGameID": 38516 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38516, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6f64d1d3424bffb4494cb1faa2e0b752abe5e830", + "data": { + "inGameID": 38517 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38517, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8558bd3256330f67aa1e299da2cdf8a1ea4fa4a1", + "data": { + "inGameID": 38517 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38517, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4edd54272427cb4c9c51ad803d5f328ef346a1b8", + "data": { + "inGameID": 38517 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38517, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fa3a9ea7b2ecbe845c75388d2302a2a654003867", + "data": { + "inGameID": 38517 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38517, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ba178d359f18dc913cec425967abfb861f72ca17", + "data": { + "inGameID": 38517 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38517, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "61b8ddeb64c005f932fd25606cd6f0882eaf0f77", + "data": { + "inGameID": 38517 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38517, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "99a67515c6250f9dd6252e4c0f2a38011dd334ca", + "data": { + "inGameID": 38517 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38517, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "983f7b860ce4ac3ec580db322a929c367a36e26b", + "data": { + "inGameID": 38517 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38517, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "677267db781a9556a288da65ea6b045e03cfa644", + "data": { + "inGameID": 38517 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38517, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a7c20ec334cf18685f9dbed5e7270d7160b6b4f3", + "data": { + "inGameID": 38518 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38518, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8a6612852c53036d36ee08de0e37083a42dbab5a", + "data": { + "inGameID": 38518 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38518, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7999558af85dce3e59c387cd9f137382c5f68f73", + "data": { + "inGameID": 38518 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38518, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c0949b9f81515aa82b7faf1c393d1c3278ca4d4d", + "data": { + "inGameID": 38518 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38518, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c23a0be4508fa35b9e366a56e307987a64fca127", + "data": { + "inGameID": 38518 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38518, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0c17fc956c7c9b3466a34a269d89c8d07bfb497e", + "data": { + "inGameID": 38518 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38518, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b1c1ad5fe7af18761c75b3412de55033a33ea943", + "data": { + "inGameID": 38518 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38518, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0c999c8c93add4e50ced3ae45ac6580eab4d81c9", + "data": { + "inGameID": 38518 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38518, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fe0d4e29477e56049b96414a5dc09bc263a171be", + "data": { + "inGameID": 38518 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38518, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6763cd8797cdedea7294e48463d5376d6c8e06c5", + "data": { + "inGameID": 38519 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38519, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b22ed5816cdc3a508053820d2cc513741d0ae2c0", + "data": { + "inGameID": 38519 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38519, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a4f5a2b664691d0d360b5c967031b8db84cf8368", + "data": { + "inGameID": 38519 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38519, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8fabacf5209451e034c2b96e8d6fde9b1d7be511", + "data": { + "inGameID": 38519 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38519, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "84c093c32ff0e7f239affa84eb56a2244b50ba7d", + "data": { + "inGameID": 38519 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38519, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f155407f0864c95bf06a5562e54b5c08bbc4712f", + "data": { + "inGameID": 38519 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38519, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cacf70ebdfa210c0434539ec7956dfb3705282e1", + "data": { + "inGameID": 38519 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38519, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9dbe939d8d4925196e42fed5858c663b05c6616f", + "data": { + "inGameID": 38520 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38520, + "versions": [ + "a3" + ] + }, + { + "chartID": "3c367cc3e678106904b3eb872a0f955fe98732a9", + "data": { + "inGameID": 38520 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38520, + "versions": [ + "a3" + ] + }, + { + "chartID": "b50133f296558cb085f8c25dfc3b02662ac31bb8", + "data": { + "inGameID": 38520 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38520, + "versions": [ + "a3" + ] + }, + { + "chartID": "bceebed5fdfce21af2aa1d8c55f52d8b1f63d556", + "data": { + "inGameID": 38520 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38520, + "versions": [ + "a3" + ] + }, + { + "chartID": "16734a966ef0048dc3216811841007b59f803871", + "data": { + "inGameID": 38520 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38520, + "versions": [ + "a3" + ] + }, + { + "chartID": "3ef1ff75b7af45dccab0a1774e5d0f0888fd1df6", + "data": { + "inGameID": 38520 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38520, + "versions": [ + "a3" + ] + }, + { + "chartID": "65eb55f9f6218880143fba1f64a0c7229f345832", + "data": { + "inGameID": 38520 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38520, + "versions": [ + "a3" + ] + }, + { + "chartID": "2b13462b3121a611ea484c2481b36a79e2bf42a4", + "data": { + "inGameID": 38520 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38520, + "versions": [ + "a3" + ] + }, + { + "chartID": "075613229a40d2b889f915fd084db367e0b9c3b9", + "data": { + "inGameID": 38520 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38520, + "versions": [ + "a3" + ] + }, + { + "chartID": "66a61b743f10b44125fa3ab4313198c1cfb42c74", + "data": { + "inGameID": 38521 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38521, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8a0c31ecb7bce0ba15d2f8768ca4f4b0b7623759", + "data": { + "inGameID": 38521 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38521, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bae246c798fb1a12a696f1d4aebb1d839ca02a2b", + "data": { + "inGameID": 38521 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38521, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d5662259d5f110117e1e0d265bf68377e943a0ac", + "data": { + "inGameID": 38521 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38521, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2a65859f60351679ff47c729710acccfe375c2fb", + "data": { + "inGameID": 38521 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38521, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "da46d447fd419e4ff2c6495eefe802db03342b3a", + "data": { + "inGameID": 38521 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38521, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "43f4b421d09f46ea1e37a5fc0053875ec36363b4", + "data": { + "inGameID": 38521 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38521, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "006e8e7b3b78a78032b8e59a10e4c1db7278eade", + "data": { + "inGameID": 38521 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38521, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3f1e15a251da1e223c80f00286a1037f9d4bdcf4", + "data": { + "inGameID": 38521 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38521, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8b974b5755204917715724482ad6a0b22078d92a", + "data": { + "inGameID": 38522 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38522, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "25d4d2e2ce6f6f353c744b2633a895061d7e51f8", + "data": { + "inGameID": 38522 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38522, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "715848c0b8ae0ae01e6a14c7957b97f237f27b72", + "data": { + "inGameID": 38522 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38522, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "608fd3159493879b46d12006c980f71d9f783b6c", + "data": { + "inGameID": 38522 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38522, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "83b4bcd00d92fd7ab5218b89643f27d8cb4d8812", + "data": { + "inGameID": 38522 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38522, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "282e71994e4f86b6f7fd09f29d2e4e45f013c43e", + "data": { + "inGameID": 38522 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38522, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6d15d63d4a30e5a160ee9f7b048a21a9da6663bd", + "data": { + "inGameID": 38522 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38522, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "18ce1fa7be17132728d29c83d1e6435b11553555", + "data": { + "inGameID": 38523 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38523, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f431d5567d4e68c2f175ec11397f8da4294b65be", + "data": { + "inGameID": 38523 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38523, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "668a008de82d399ab0ccd5afc4eab48f3fd676a7", + "data": { + "inGameID": 38523 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38523, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "03523337a04af6fb68ab010d5d29b01fc3453110", + "data": { + "inGameID": 38523 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38523, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eaa67d9141ec971ae41d151e99897b21368a6b1a", + "data": { + "inGameID": 38523 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38523, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "21c00dfb6c0ca04868649eaad52b46195ad04f6d", + "data": { + "inGameID": 38523 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38523, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "acae1e10b3f75bf77f90fdd08ed4fd464fdc44ce", + "data": { + "inGameID": 38523 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38523, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0d61b3a5e4c335287ec4c5e607a3760af4f93be4", + "data": { + "inGameID": 38524 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38524, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2d90459f9f434dd2b39b38a9f20e36f0c3418814", + "data": { + "inGameID": 38524 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38524, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fd185fd141d5663f32f23c6c56aae26fdbd2fc29", + "data": { + "inGameID": 38524 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38524, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8b80fc2bdce8a107d754d60f31e29ec54e79a56f", + "data": { + "inGameID": 38524 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38524, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b5df766ac6eba2076a2545a98e0e73dc9dafeb23", + "data": { + "inGameID": 38524 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38524, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ba05a9e4f8bd38da08a1969bf53e58f0d99ff4a4", + "data": { + "inGameID": 38524 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38524, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a425521e1bcc68e9c85cd42c26ef278a8793914d", + "data": { + "inGameID": 38524 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38524, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1fc6a9d1ad0c8c2cf514312011d558fba592603d", + "data": { + "inGameID": 38525 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38525, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6cf66dbbf13113d80f03618f79fc41d8c024eccb", + "data": { + "inGameID": 38525 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38525, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "395328fff8786f9519d4656e4ef2aff35fe84e65", + "data": { + "inGameID": 38525 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38525, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b83539d8492e2efa0457a4ee8b27b7412cb05696", + "data": { + "inGameID": 38525 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38525, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "19e4a9032c386b327f1b4a01c3b26073d709fa57", + "data": { + "inGameID": 38525 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38525, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7bcc5675384a4e668dbbf46bb581f8ba099ece9c", + "data": { + "inGameID": 38525 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38525, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0748bc549341601b11db0f9f48a4ca5079e17967", + "data": { + "inGameID": 38525 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38525, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "04f666bdbc6d597b2687b679466f99de530d5e21", + "data": { + "inGameID": 38526 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38526, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "32e41f3492ca3e0a9dd09a01a0117d227c2f468f", + "data": { + "inGameID": 38526 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38526, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "157255b1dee46c05bc3d111d825b355eff6991f9", + "data": { + "inGameID": 38526 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38526, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bd6df0306041053855ff01ad9dd7941ba5fa4877", + "data": { + "inGameID": 38526 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38526, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "936d38429fe05b01e7caa8c0f0a914d3e6b4f490", + "data": { + "inGameID": 38526 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38526, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "533a236d879fecf676c83850d61993a8773eed4a", + "data": { + "inGameID": 38526 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38526, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "096ec70f7d29d74f8fec77511d16e8a1244a0319", + "data": { + "inGameID": 38526 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38526, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2e6c87fd18b1ef778ec57428645b2a617d916e3b", + "data": { + "inGameID": 38527 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38527, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a916ad79bc3de69a5d9d8d5736d8691a41f80aba", + "data": { + "inGameID": 38527 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38527, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c2b762c546c163a185fa1d36204d638ed0b19020", + "data": { + "inGameID": 38527 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38527, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2b8c1d63159381361b4a5a4701fc944bf516302e", + "data": { + "inGameID": 38527 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38527, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a21a93f5320a0c26983eb148f73a7e3cc2eb9947", + "data": { + "inGameID": 38527 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38527, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e137ca12252c9da52922d67b511a0f7733b3bc0d", + "data": { + "inGameID": 38527 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38527, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ea6684bf5940bbd223f5e484d215bdd1da8cafca", + "data": { + "inGameID": 38527 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38527, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6d79b601c7ba1c8daef0904675c4c1f3ed2217e9", + "data": { + "inGameID": 38528 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38528, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d8651d7693c6a0126e138aee6f673c1cf786c3c", + "data": { + "inGameID": 38528 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38528, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "38543f14cff933d904126b2d28447fa38047a138", + "data": { + "inGameID": 38528 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38528, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5fe6784f56a3547ebf14666883a686f6d17c1aa8", + "data": { + "inGameID": 38528 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38528, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dd71b1a5d0cbe47ed883244652a40ea6d3dd4468", + "data": { + "inGameID": 38528 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38528, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9d2da4e79445eeeec5688f2c6b8018e1215d848f", + "data": { + "inGameID": 38528 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38528, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6cf08d53f066d1d1f8c0a8bb4c9baad8253b76ac", + "data": { + "inGameID": 38528 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38528, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ba749479d6085a7576e4cef23c0fecf792e9680d", + "data": { + "inGameID": 38529 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38529, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "44bb41f789ba137eebb64cb774a95e89d38b27ff", + "data": { + "inGameID": 38529 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38529, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "84280dd5740f915b1bb72a020ae5202db3c93e04", + "data": { + "inGameID": 38529 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38529, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4f8184efdd45a8d356d3063c34653ad5c16d2d00", + "data": { + "inGameID": 38529 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38529, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5bd2e76fcae49fe4edc89b53132e601a0e5fe747", + "data": { + "inGameID": 38529 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38529, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1f8936155274a1b4a51d148198490bbffcdc3f28", + "data": { + "inGameID": 38529 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38529, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0546ac049acd1447afbe66a204373781e8d9ca7a", + "data": { + "inGameID": 38529 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38529, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d3ddda287425508ad1fcfdb451ea5b3ce3a49dc7", + "data": { + "inGameID": 38530 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38530, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "27f407f9a113c71f801c6547cf403299bccb0d9b", + "data": { + "inGameID": 38530 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38530, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6bc429f177d269382bc55ec33c502766566bbb38", + "data": { + "inGameID": 38530 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38530, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "86ae92d307869ad73925f5fae29bf45405091bf8", + "data": { + "inGameID": 38530 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38530, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0069d585427a77e0532a706854ccabe2469aa949", + "data": { + "inGameID": 38530 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38530, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bbc3cb77f9138aa9dde0654edd1405dcd4027ebe", + "data": { + "inGameID": 38530 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38530, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7d8c2756a489285652cede05e100bda716f55778", + "data": { + "inGameID": 38530 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38530, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0c76a2d04cf182733609a56b808e87fc233754b4", + "data": { + "inGameID": 38531 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38531, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cb34fefa8059e288c9c9fb02e9cd0f6f9693b1b7", + "data": { + "inGameID": 38531 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38531, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0a6177894caceb8e900931f43ab63166046c2dc9", + "data": { + "inGameID": 38531 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38531, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bccfc5095c995f20a9e95ab3c7eed38e27882033", + "data": { + "inGameID": 38531 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38531, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c8663eb4aee49f798696510ca04ee6f4d9c77634", + "data": { + "inGameID": 38531 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38531, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3a3bea4dbcb705bd468f6880419c5f95e482147a", + "data": { + "inGameID": 38531 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38531, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "248a648887d4b18a73b078b6439287726929b3f0", + "data": { + "inGameID": 38531 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38531, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "61b4bb1bc84db0f30358293a2e13760a71a34e95", + "data": { + "inGameID": 38532 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38532, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "679c5599700cf34979f662aa51c1f1e03ec92af5", + "data": { + "inGameID": 38532 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38532, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f48121ba01e1441ea336c64a15a71dad57d3a028", + "data": { + "inGameID": 38532 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38532, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f4093c4802aa9fce8d6beaf267d173a41648ae11", + "data": { + "inGameID": 38532 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38532, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "703bd7c0ac146908624647fc4cfdbd9490ff615b", + "data": { + "inGameID": 38532 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38532, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "676ae605a9db2022a96c017f42f01b7ce220b3b9", + "data": { + "inGameID": 38532 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38532, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9b505274453a9bf146058f2383e13517b8b82e39", + "data": { + "inGameID": 38532 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38532, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bb7176f57271c00911462b51962f5f472007a8a0", + "data": { + "inGameID": 38533 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38533, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5e9bc1b601d0822b496ba1e2cfb5782725f6b912", + "data": { + "inGameID": 38533 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38533, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "39a2f642a6001f5a6a0410f70feafb40b02d06a4", + "data": { + "inGameID": 38533 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38533, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "70b7f7b764361a26ef9e837a6aa4b7310c201017", + "data": { + "inGameID": 38533 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38533, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce9cc7191ca16e653593ff6f12c98dd72edc0670", + "data": { + "inGameID": 38533 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38533, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "35c938ce879b188703946f2a8b9779cf9b918044", + "data": { + "inGameID": 38533 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38533, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1b6f20e80cd2331efa3e2e036c9042030cac093e", + "data": { + "inGameID": 38533 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38533, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4893551d0acee638f5e602799473e5a5a09e05c3", + "data": { + "inGameID": 38534 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38534, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7380c3053c8d981f2ade56548cbe787250d01364", + "data": { + "inGameID": 38534 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38534, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "28379f4a52c288349ac560f88ed7146b0298daea", + "data": { + "inGameID": 38534 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38534, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f456783bb1725bd0687577d98146a46aaa6f3401", + "data": { + "inGameID": 38534 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38534, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fec1ab99f1d0dbf17248cec09e1e4a8a8a18391a", + "data": { + "inGameID": 38534 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38534, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "337fabf3279accf31eb612f5400c36bfc5135e78", + "data": { + "inGameID": 38534 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38534, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aff41d9e1673959601562ba44cffe936c59ae32d", + "data": { + "inGameID": 38534 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38534, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c2cfd4995b223378606ea2b2dd5f90e5db71518c", + "data": { + "inGameID": 38535 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38535, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9863fe2a7da2d2eedf4f26cbab286d1ad5df5071", + "data": { + "inGameID": 38535 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38535, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1b261d03d954c6bc948106e79e7e7f5669d6359c", + "data": { + "inGameID": 38535 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38535, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "205856232d531c95bf56b88806941c976cab2ef0", + "data": { + "inGameID": 38535 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38535, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "678fba715b8ef0b89a5ee49f2b1fe96ea4ec2fcf", + "data": { + "inGameID": 38535 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38535, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a2b5653c912c4967a57c36ce2e955f1df5528ba6", + "data": { + "inGameID": 38535 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38535, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ebf5262b26c942cf9c4645e625ff15e4f81b244", + "data": { + "inGameID": 38535 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38535, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fd7df4ef8349f5309fe1db1ec8d661a90d41b06f", + "data": { + "inGameID": 38536 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38536, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4786ace9a040e1a6815349e57aff67296578c1de", + "data": { + "inGameID": 38536 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38536, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b01ceba316e5da06af6185dc194e8a71a0c58c9c", + "data": { + "inGameID": 38536 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38536, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fc9873dc4c057a170d3ba584e626e9cc6a24529f", + "data": { + "inGameID": 38536 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38536, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fc94b2e78465630193534e07961e1198075ee065", + "data": { + "inGameID": 38536 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38536, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "31671978fd2e77d6937d0683cae9ebc10db72b4e", + "data": { + "inGameID": 38536 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38536, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3f1a1ee1788fdb26782167aac8c1d7ee96ff166a", + "data": { + "inGameID": 38536 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38536, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7484d5aaa2c2c39462cb54db3508ee105f52d854", + "data": { + "inGameID": 38537 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38537, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a87bdb706a4c0abf11e606b8ca4a1c70226eadc7", + "data": { + "inGameID": 38537 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38537, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "838315fd0da6cd237092e8ddff121269a762802c", + "data": { + "inGameID": 38537 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38537, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cc1a91f9b503ad595746863984dc6e3ac2483013", + "data": { + "inGameID": 38537 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38537, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cd670aa69400eb9be120808992f9ab1de36595c2", + "data": { + "inGameID": 38537 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38537, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2a1fe748754995c59a4c5a0f6c0e53a5c044c25a", + "data": { + "inGameID": 38537 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38537, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "94bb44f0095619ba6431cd1e6a6ce71dd09a6ad5", + "data": { + "inGameID": 38537 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38537, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8ad866f2f8458daa055da9482222e726809ca2cf", + "data": { + "inGameID": 38538 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38538, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b76db0cd63c8a501d042a59712f3e33d3e826fe9", + "data": { + "inGameID": 38538 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38538, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c664cb1c6849b1a0d3ae8bbcff95a30cbb3de99f", + "data": { + "inGameID": 38538 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38538, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6b4d8bad2fc8cbc6e929cc40347fb0fa46d69aae", + "data": { + "inGameID": 38538 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38538, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "97edf594eb42a15314501ca2a17b4f54e522e9a1", + "data": { + "inGameID": 38538 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38538, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1b68faf17fcf49ae293d2a03e47530625c421aba", + "data": { + "inGameID": 38538 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38538, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "378ecc8ee943b0a8674967291594117fba80163f", + "data": { + "inGameID": 38538 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38538, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c6c5923cc041560751bc2e20741d708fcac33d62", + "data": { + "inGameID": 38539 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38539, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0a3de6048e004596c6ee5f2acdb62adcbae9256c", + "data": { + "inGameID": 38539 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38539, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3673f0d4bd2ac5aeea23e9218a6ceb338fecd83c", + "data": { + "inGameID": 38539 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38539, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "47f2ee762a89b3f1e750e924a2b389dda4d2c59d", + "data": { + "inGameID": 38539 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38539, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "54ab073ce960152551792de4cd3346c615ee4788", + "data": { + "inGameID": 38539 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38539, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3dd826fc02a9c6a449717a16355a6a37f23fa818", + "data": { + "inGameID": 38539 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38539, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ec5e13bf3843b75b24ff68eef92bb361a77f9a35", + "data": { + "inGameID": 38539 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38539, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e15cc139f768cb9f8658f684a33a83ecea43d2d5", + "data": { + "inGameID": 38540 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38540, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "121746c61c9786bb3af5dbb5bb7347fd0eede024", + "data": { + "inGameID": 38540 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38540, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "983da068d7a42e4e396583dee82654d8abdc5084", + "data": { + "inGameID": 38540 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38540, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "97cbbb9c76ea95a55d55e7975b9ea3ccf5555d9c", + "data": { + "inGameID": 38540 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38540, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e0726d99c8e1090cfb483a98bec976b0a9d326fe", + "data": { + "inGameID": 38540 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38540, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "11a036b8a0f80cb626c32596d41b1a421b800c48", + "data": { + "inGameID": 38540 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38540, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5d1f8d48eeb4740b46def893a061b355fd162a29", + "data": { + "inGameID": 38540 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38540, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d91e3beeadf1e6dfebc8be3905f83ada2e1ee3aa", + "data": { + "inGameID": 38540 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38540, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c57d3f4fcd9c634bc6f8602a839334c5e4eb3167", + "data": { + "inGameID": 38540 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38540, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9cbb4f9a6c20e83a3a4c361e8584d6211268cf97", + "data": { + "inGameID": 38541 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38541, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "61aa8a64a3d9dc0197ee59522e0a3742862ec33c", + "data": { + "inGameID": 38541 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38541, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5870cc28e47003b275b4aa2f1d5cfd92a53acf00", + "data": { + "inGameID": 38541 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38541, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4bbe0d16eccee72fc96c49e10779923033a3d066", + "data": { + "inGameID": 38541 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38541, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "954273daf2cc5a2cc479151d1648f6d343cd1d8c", + "data": { + "inGameID": 38541 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38541, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5e916b47597618bdd4d4cb61a33fc4aeea7388b5", + "data": { + "inGameID": 38541 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38541, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "972fc0f7dffa85ce06a890c2c83c9890165cd0e0", + "data": { + "inGameID": 38541 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38541, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b5084b65512a4dac61b38b7cbe38875ae772bf93", + "data": { + "inGameID": 38542 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38542, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "afd7d3016da9ec74e8c2d5cb0ac6876405e40802", + "data": { + "inGameID": 38542 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38542, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "11e8260359aee509c8576d9bde1bd309902584ef", + "data": { + "inGameID": 38542 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38542, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "16927ded40d9d501bf5e6e5ec713ea1eefbb5ecb", + "data": { + "inGameID": 38542 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38542, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "260b3706ca61cc38c0c4652f345ac00274a70707", + "data": { + "inGameID": 38542 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38542, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7d4333793eb0d7df5957d9a7804219715723daa6", + "data": { + "inGameID": 38542 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38542, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c35d5937fde4165e36ff7b6f36c66009e8952aea", + "data": { + "inGameID": 38542 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38542, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8a48749640ea37929a29e67134ff456a98c5e1c8", + "data": { + "inGameID": 38543 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38543, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "32b3b61c11c32b40a7782d234f990a9f00f2633c", + "data": { + "inGameID": 38543 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38543, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "44b0e83508fd0eb67aefc1346b9d7003aac117a1", + "data": { + "inGameID": 38543 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38543, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e35af4ea03fba36dcb00e10024b5f711c9687a5f", + "data": { + "inGameID": 38543 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38543, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4d7cb8ce5eb569621cc3a5898de2f1eed53edb2e", + "data": { + "inGameID": 38543 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38543, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aa02e95fa5a2fdcd99acdaa9470f74f8201cd8f3", + "data": { + "inGameID": 38543 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38543, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "483f10efb90fe5a9ae5960c15dd8e158b4ac2eb9", + "data": { + "inGameID": 38543 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38543, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d463c4443015d20693510f181aa3e09cc13d618f", + "data": { + "inGameID": 38544 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38544, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "61891387e1a6e9f25b9091f4cf0befb16b140217", + "data": { + "inGameID": 38544 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38544, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "78a5cfd5c9910dad92c71258489358247b7db57e", + "data": { + "inGameID": 38544 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38544, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1afad386afa9707b76a1ecdac59a5291b7b6b66e", + "data": { + "inGameID": 38544 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38544, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "74c04dde5927f614d515a6d9d0a2353a89a127ac", + "data": { + "inGameID": 38544 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38544, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "066e9ef2ad66e4df4128381f5c14a1dbb585c573", + "data": { + "inGameID": 38544 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38544, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1a5a2a85528190d7e6785dd3c60eb41c147e5c87", + "data": { + "inGameID": 38544 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38544, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ae438b364aa6bc6455652d39be9ca914aac656bc", + "data": { + "inGameID": 38545 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38545, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "94d48fbf78ba8fbdaccbe3c50e87c12ac83e4711", + "data": { + "inGameID": 38545 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38545, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "16018a51815575cd3c69dfc05986e2f57d2993ee", + "data": { + "inGameID": 38545 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38545, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0bc7153bb4bae3fcc602e9087c668ee9f6a13ac7", + "data": { + "inGameID": 38545 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38545, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c2c6d39e5b2237422973df967a02042047f87460", + "data": { + "inGameID": 38545 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38545, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "31baa1664d396937f43aba6c898187514983815c", + "data": { + "inGameID": 38545 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38545, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "900604b3849264ff4ebf725836a969ef6627c03d", + "data": { + "inGameID": 38545 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38545, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d3822c91641892fc27bcf09ccd7f58b536729e1e", + "data": { + "inGameID": 38546 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38546, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6744e80df876fcdad7a97d69e11e21f561ce35b0", + "data": { + "inGameID": 38546 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38546, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9e122240a88388ecd5b8f690f12d21e88f178503", + "data": { + "inGameID": 38546 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38546, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4c9f39cb48b6bdedc66226ad0ad0dbe70201504c", + "data": { + "inGameID": 38546 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38546, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "71adfb7961f02962bd10d002553b09c9a5999bcd", + "data": { + "inGameID": 38546 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38546, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2201077f4b2892eb980040f59cb36d0b1598cc22", + "data": { + "inGameID": 38546 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38546, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "101f546910e29815fa0cfb87407683364130d1d4", + "data": { + "inGameID": 38546 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38546, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7d9a0e6bb18f131633fca64b86a39a49d1043ebc", + "data": { + "inGameID": 38546 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38546, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "851ddc4263ae8eacf2e860194a3bb31c89c6b4ca", + "data": { + "inGameID": 38546 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38546, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "32f08e2297856e199b8a941d2d15800a1beb5a8c", + "data": { + "inGameID": 38547 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38547, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "82b4ee9028c7f5c8d9fab19eeb61c6fbadccf6bb", + "data": { + "inGameID": 38547 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38547, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "919422b1a127820a9f08b16d71cff26735178fe0", + "data": { + "inGameID": 38547 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38547, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5df5cf3f652687d898ba0977ee30d6f60e11d782", + "data": { + "inGameID": 38547 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38547, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "261e007c9aaed863547a0dc277a88d1e5a019d1b", + "data": { + "inGameID": 38547 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38547, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f9bb23f29452c641d3e42276e8d48e46a9a62f28", + "data": { + "inGameID": 38547 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38547, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "13f1070e25373f2991f31c49f1b44d471e8fa88d", + "data": { + "inGameID": 38547 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38547, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1bce45843eb5b1f39ba219a7e72faf88a40696ad", + "data": { + "inGameID": 38548 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38548, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d93bf1e395334cf2e4ef64c3438234164b730b0", + "data": { + "inGameID": 38548 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38548, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "627df5b6135f864f28c23a09fb59300fb8ab236f", + "data": { + "inGameID": 38548 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38548, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0ada931a6265d1aa8afd8fa4d9187c13ba18cf88", + "data": { + "inGameID": 38548 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38548, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "92d909ef7bd5486004781336f170ae7534b72fbe", + "data": { + "inGameID": 38548 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38548, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7a3dcc900f32219f862dcf5fcbacb0f2b2b1a2e2", + "data": { + "inGameID": 38548 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38548, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9fe7ac11b9a1d7d3eb3b3d7ed9736f5e8e82d953", + "data": { + "inGameID": 38548 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38548, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4cb1afb0ec9dc58994471c181767870f54664d58", + "data": { + "inGameID": 38548 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38548, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "44aad6325a93cb07764158384ce8e00acb878d94", + "data": { + "inGameID": 38548 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38548, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4dcf1e0a039f79a03ba949c1855c1019a10ab215", + "data": { + "inGameID": 38549 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38549, + "versions": [ + "konaste" + ] + }, + { + "chartID": "55d3e8e14f0495af5ea3e915467cb661dd731fe1", + "data": { + "inGameID": 38549 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38549, + "versions": [ + "konaste" + ] + }, + { + "chartID": "1747cbc41103c8902e12a4834831301733f7d61e", + "data": { + "inGameID": 38549 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38549, + "versions": [ + "konaste" + ] + }, + { + "chartID": "d8e3bd87eff14945f16c1b1b627243483bbba808", + "data": { + "inGameID": 38549 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38549, + "versions": [ + "konaste" + ] + }, + { + "chartID": "a449e1ed7161c428433c20ad46836d6049b8b9d6", + "data": { + "inGameID": 38549 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38549, + "versions": [ + "konaste" + ] + }, + { + "chartID": "7902a2733b0834d48dc8a818dcaea0dbf836ee51", + "data": { + "inGameID": 38549 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38549, + "versions": [ + "konaste" + ] + }, + { + "chartID": "3feb73b962b7036032657364efb3f78155484551", + "data": { + "inGameID": 38549 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38549, + "versions": [ + "konaste" + ] + }, + { + "chartID": "a89a6cfcc0d622edf9c085cbc50822842940c714", + "data": { + "inGameID": 38550 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38550, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2a37803beb9825a2d5aca66a01fd062c7abe3bcb", + "data": { + "inGameID": 38550 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38550, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ad6baec7ef737309c32710fdace0c0742ff033a8", + "data": { + "inGameID": 38550 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38550, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bad91b79818d2fc2865bdeae9713e6f2cd9751dd", + "data": { + "inGameID": 38550 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38550, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "115be17a883326990706684db26fbabba8236326", + "data": { + "inGameID": 38550 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38550, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "59c7b742a3a7a960462a0b538edb40aca7e5503c", + "data": { + "inGameID": 38550 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38550, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "da8f55f1b5e80a715c4ea15c0937b7e4fea7dbbd", + "data": { + "inGameID": 38550 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38550, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bd1cfd5a18ee3886e8992f245bd5204efdafdfc1", + "data": { + "inGameID": 38551 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38551, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "776d46dbfb14ef844bc9a7f9d63ac76b661e60f4", + "data": { + "inGameID": 38551 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38551, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d36c50126737c3c845f10c97db078d772886c1ad", + "data": { + "inGameID": 38551 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38551, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fff91b4e92f4e72ef126082523779e90108413e4", + "data": { + "inGameID": 38551 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38551, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f75e549caaab29b3449f247cd832a0192d9923e6", + "data": { + "inGameID": 38551 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38551, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "561c8c6672f41af635b3c60179526995a5c4f220", + "data": { + "inGameID": 38551 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38551, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dc413b9fa7bdd6e4e9c72e7b8978e904832ada1c", + "data": { + "inGameID": 38551 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38551, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8200f5cbc241954211babe2e5ae76a2169f05175", + "data": { + "inGameID": 38552 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38552, + "versions": [ + "a3" + ] + }, + { + "chartID": "bdde303591b791bae206374a1070bbd0d864281e", + "data": { + "inGameID": 38552 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38552, + "versions": [ + "a3" + ] + }, + { + "chartID": "caccb4fbf2e963e68dd89881c4245d3be3aa8b08", + "data": { + "inGameID": 38552 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38552, + "versions": [ + "a3" + ] + }, + { + "chartID": "3137e9bf467069a27baccbe46c1bb705d34929e3", + "data": { + "inGameID": 38552 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38552, + "versions": [ + "a3" + ] + }, + { + "chartID": "272fff10924a36e0363ffcd604c0646e1bc56434", + "data": { + "inGameID": 38552 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38552, + "versions": [ + "a3" + ] + }, + { + "chartID": "ff90a995a84dece7e17fd3f6ed0faac21ba8cf12", + "data": { + "inGameID": 38552 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38552, + "versions": [ + "a3" + ] + }, + { + "chartID": "87e36a6f17c2cda3aae5c336b55a4a4f3853947a", + "data": { + "inGameID": 38552 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38552, + "versions": [ + "a3" + ] + }, + { + "chartID": "f3ea548f70bab2be21c2d2af5b62451b6b7e362e", + "data": { + "inGameID": 38553 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 38553, + "versions": [ + "a3" + ] + }, + { + "chartID": "3caae0487233b5968b8fbe8e7e674fcb8f5907de", + "data": { + "inGameID": 38553 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38553, + "versions": [ + "a3" + ] + }, + { + "chartID": "1c9602002e678a7b7ad64079511cec72585be8da", + "data": { + "inGameID": 38553 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38553, + "versions": [ + "a3" + ] + }, + { + "chartID": "5a3a37fd9167d993679aa1b3c63abafcad2ea2bf", + "data": { + "inGameID": 38553 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38553, + "versions": [ + "a3" + ] + }, + { + "chartID": "816131bfed63e0c11ebe679581c262fe7d3c578e", + "data": { + "inGameID": 38553 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38553, + "versions": [ + "a3" + ] + }, + { + "chartID": "5e560bb76eb0aa87bb9905afdd916bda64cb8cf3", + "data": { + "inGameID": 38553 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38553, + "versions": [ + "a3" + ] + }, + { + "chartID": "1c22e2ef48393722cd45b2b5dbf0f0fabfef8006", + "data": { + "inGameID": 38553 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38553, + "versions": [ + "a3" + ] + }, + { + "chartID": "0b9b2369ef8da88f61639a65df7d8bafa043105c", + "data": { + "inGameID": 38554 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38554, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "778769f6e14ecc480db70eb10f94a87494ab62d1", + "data": { + "inGameID": 38554 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38554, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e478011deee7d261d2477320bb0c3c5eca82c0b0", + "data": { + "inGameID": 38554 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38554, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bedf448807ca0f3ed21901bede40ac436e85966c", + "data": { + "inGameID": 38554 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38554, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "58fc50449f53175d85e8d1e0fff92f8f662ee6b0", + "data": { + "inGameID": 38554 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38554, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "da0f24bda68320970cb9f60c0b5a0adfee3f3fa8", + "data": { + "inGameID": 38554 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38554, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3e0f5a6feacb8e75cb57bde4a4901917d981933f", + "data": { + "inGameID": 38554 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38554, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1109eb207106d3a4f5223369c59f87224de62da0", + "data": { + "inGameID": 38555 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38555, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9ba51e0a671a928583e9e815603a0bbecbf32fc6", + "data": { + "inGameID": 38555 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38555, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e95d91bc1949df0030850f7a9607c5d7ee0fc8c2", + "data": { + "inGameID": 38555 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38555, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "87912e63c64efa39d649d035f8b8756eae0906e1", + "data": { + "inGameID": 38555 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38555, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "08b179908ccf02977d966fd7343479a846b3ef74", + "data": { + "inGameID": 38555 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38555, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9ee868d9040786aea36f086b6638ef7575603d17", + "data": { + "inGameID": 38555 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38555, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4b7e239c3f46df182f2dd70c2f73c1e7e9ac8046", + "data": { + "inGameID": 38555 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38555, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2ad98de931e7062a889562156151dce1f127f8fa", + "data": { + "inGameID": 38556 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38556, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f9bb472bd75ec86148139d884d30994f1345bc6e", + "data": { + "inGameID": 38556 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38556, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6f46279a83fdfa90081d8f3f4770bfe185e85f77", + "data": { + "inGameID": 38556 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38556, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "43df3917ec1f704313ea5b6dfa55b3bfe0633623", + "data": { + "inGameID": 38556 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38556, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "51564fa0ccf331f9274e2c63f739b921494b366a", + "data": { + "inGameID": 38556 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38556, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d178064f13b3e13b1b4e851a4a0cfdd2002d8547", + "data": { + "inGameID": 38556 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38556, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e061069f5e39f5c3a55554e2f0168c7d39688ede", + "data": { + "inGameID": 38556 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38556, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "31bc5aa41db08ef6ec80a2f53a342e9bda1b6dc7", + "data": { + "inGameID": 38557 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38557, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f6ba818182061e60149007e79d77019a77e526c7", + "data": { + "inGameID": 38557 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38557, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "28094f01b0cafd922a46c8e1d46615c221cee2a3", + "data": { + "inGameID": 38557 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38557, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3febcb60fba30e7d4b07cb3ed3d906338e82631f", + "data": { + "inGameID": 38557 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38557, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7d047656cd93b6333481170bf9a464cab633f50c", + "data": { + "inGameID": 38557 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38557, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9ee8276431f7b1f5e7e2adc2419631a9957abdb1", + "data": { + "inGameID": 38557 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38557, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2a42cae8e330da84714972bf89b7a020664f9201", + "data": { + "inGameID": 38557 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38557, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4cf19f57fd29b5fde2801ebd09f54c93aed20724", + "data": { + "inGameID": 38558 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38558, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fe52b7eaf660e62c1a78a03d14bb422c14b8ad41", + "data": { + "inGameID": 38558 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38558, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "770e34addd7b1b57620e0a78c4f84810db21f510", + "data": { + "inGameID": 38558 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38558, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e2aa2c136cf51f1af7d8d88b15a359e60069b0e9", + "data": { + "inGameID": 38558 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38558, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e095a22ca992c18e7f3f9e5b3eb8823eb4ce1766", + "data": { + "inGameID": 38558 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38558, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "28a4d331670872bbc9dd37efd0c2138e91087dd3", + "data": { + "inGameID": 38558 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38558, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "adff11a315320101e68db940305eff2def5181af", + "data": { + "inGameID": 38558 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38558, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ae1e5245f0b3c437027a16c8a6f803e21327000d", + "data": { + "inGameID": 38559 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38559, + "versions": [ + "a3" + ] + }, + { + "chartID": "f690f81e3574e712085bf3262620ec096647f65b", + "data": { + "inGameID": 38559 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38559, + "versions": [ + "a3" + ] + }, + { + "chartID": "ac79f1bf7081446559199c00e17b3d06d81d9a75", + "data": { + "inGameID": 38559 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38559, + "versions": [ + "a3" + ] + }, + { + "chartID": "bdc853d2404dd0d50020f009a80473509462e377", + "data": { + "inGameID": 38559 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38559, + "versions": [ + "a3" + ] + }, + { + "chartID": "e24db8e48b113c9a6b8c30720b91541239084141", + "data": { + "inGameID": 38559 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38559, + "versions": [ + "a3" + ] + }, + { + "chartID": "8b7b97b857cb1d497e1d0cfdd21e1247ab46084c", + "data": { + "inGameID": 38559 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38559, + "versions": [ + "a3" + ] + }, + { + "chartID": "4575f7536d96061ba9dee726cb9b7b19d5004f8d", + "data": { + "inGameID": 38559 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38559, + "versions": [ + "a3" + ] + }, + { + "chartID": "69d97a23832c217f84fe59b56bf1a389aeda7028", + "data": { + "inGameID": 38559 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38559, + "versions": [ + "a3" + ] + }, + { + "chartID": "d5e984e6f8a25a83a9770390e73a94a34e6f02c2", + "data": { + "inGameID": 38559 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38559, + "versions": [ + "a3" + ] + }, + { + "chartID": "b748de6668dde6f5d7a965d9ad730944b15efe89", + "data": { + "inGameID": 38560 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38560, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5dba8d07546b4e0c4fe513128aff22658fdaba7b", + "data": { + "inGameID": 38560 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38560, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c214cedd13c19083cacbe75204b0025b9efc2d3b", + "data": { + "inGameID": 38560 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38560, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7aa644e80ed414eea3c5cab94efd400bf0772cb9", + "data": { + "inGameID": 38560 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38560, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0c7d66c49a317958a0b891411a3f4f75033786e7", + "data": { + "inGameID": 38560 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38560, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3f095e45c6105ee26b5d91b8e728ad06cd36f007", + "data": { + "inGameID": 38560 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38560, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "197d6d0cc322707047dc98256587fd2c4b3e3311", + "data": { + "inGameID": 38560 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38560, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c91e8d96e3050e35f5bf142d0e0b3fec9bcf8fe4", + "data": { + "inGameID": 38561 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38561, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ae8ac32dd626d3943796d57ae125d69b85850331", + "data": { + "inGameID": 38561 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38561, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f72855f660b3b737a8a105de601fa5397aae1fac", + "data": { + "inGameID": 38561 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38561, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "61d00aecbe61bf0cd47e0ba53dd3a73db008c554", + "data": { + "inGameID": 38561 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38561, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "00e6a5049a69cd4084a4be076ab839e566abc849", + "data": { + "inGameID": 38561 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38561, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1d8fcc99a445d63f80d7cff8bc5cd670f12ea804", + "data": { + "inGameID": 38561 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38561, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "77939ffcac225af620389d93876e60c5bc6da295", + "data": { + "inGameID": 38561 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38561, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c476f0de5a5b6166a528790eed2d61c4ff5f563d", + "data": { + "inGameID": 38562 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38562, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2c4087a95bc9b1921464cb787ec6bbe42c28b205", + "data": { + "inGameID": 38562 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38562, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d777c4c0195993b9917241be1d30530b81dab254", + "data": { + "inGameID": 38562 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38562, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a6a9aa97506ae9f3518baee8c070feb5a8ce2cf1", + "data": { + "inGameID": 38562 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38562, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f459f9cc22dd396600887786c47daafc5325b046", + "data": { + "inGameID": 38562 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38562, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8712b0c99e75ec154b7013e2b06255b413a2917b", + "data": { + "inGameID": 38562 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38562, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8888e336380fd9e238b8184fa8128378e8c7b53a", + "data": { + "inGameID": 38562 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38562, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0f0ced44db84aaae35c3cb8b31bef42fc355c92d", + "data": { + "inGameID": 38563 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38563, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "23da8bb549eb5e5e25ed9b09c6a006d45018b2f1", + "data": { + "inGameID": 38563 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38563, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a2b73e076f3badf135df79934cf68f9bb37eb554", + "data": { + "inGameID": 38563 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38563, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "003682e81ee86c364613b322313f7a792404f740", + "data": { + "inGameID": 38563 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38563, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5460b5f56a188d238118977a6a53c8ab792cca11", + "data": { + "inGameID": 38563 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38563, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "931493b8b22fa8c0277f3837dd27e4a257d2b416", + "data": { + "inGameID": 38563 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38563, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c7da3484f1ec9d4ec45811731e96540cc4392420", + "data": { + "inGameID": 38563 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38563, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ac96ab21f1458802f1d4d23bfef3f694305a4df6", + "data": { + "inGameID": 38564 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38564, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6f0a94c5a75f2ab28a43e6c195ad4edea7019138", + "data": { + "inGameID": 38564 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38564, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8fb7a69a0ed5a9f0631fc6dffe22af3c8b24eb34", + "data": { + "inGameID": 38564 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38564, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "987a4807e6b7428f125295da4eb8286b08e0eadf", + "data": { + "inGameID": 38564 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38564, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f4020a8f9dd96b0e3f0c848e0e0e9b623c10b29c", + "data": { + "inGameID": 38564 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38564, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "abfae86a32292fd9675582c69ce26648cdb57e77", + "data": { + "inGameID": 38564 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38564, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "475de493a10265032325f217f1403677c8d54921", + "data": { + "inGameID": 38564 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38564, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1ef5c90adc711a916c189b21c21a61ba97f79e9b", + "data": { + "inGameID": 38565 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38565, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "12d2f6870b60d2cad0477100f0eff0b75ec134dc", + "data": { + "inGameID": 38565 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38565, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bc8ada052949f9f7a21fa5bcd92933d3e819cb06", + "data": { + "inGameID": 38565 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38565, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4f6c56781b6503f9f5be5377a7a72a6817f12220", + "data": { + "inGameID": 38565 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38565, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ef2c9f5d22e164bfed41f672e366701ac9e6c194", + "data": { + "inGameID": 38565 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38565, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e5378381a3ecce6a85adb9e6f28bfac7344bec76", + "data": { + "inGameID": 38565 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38565, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "45df2859204fa24b77646e9c1045df1205758c2d", + "data": { + "inGameID": 38565 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38565, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1c541fb46b6e451ed548e39ff2c0683ef86a8acc", + "data": { + "inGameID": 38566 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 38566, + "versions": [ + "konaste" + ] + }, + { + "chartID": "e4c232c03d1adbde4d7ed01649c27a460d4600c3", + "data": { + "inGameID": 38566 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38566, + "versions": [ + "konaste" + ] + }, + { + "chartID": "dcb14dfc40c15c2657e58537e3630904b3c81b86", + "data": { + "inGameID": 38566 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38566, + "versions": [ + "konaste" + ] + }, + { + "chartID": "3dead2e9f02492afb259c92349b02259c034af6a", + "data": { + "inGameID": 38566 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38566, + "versions": [ + "konaste" + ] + }, + { + "chartID": "9ff19c9ba6ef46e8d81302c8dfc99c6b2056f771", + "data": { + "inGameID": 38566 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38566, + "versions": [ + "konaste" + ] + }, + { + "chartID": "d71f8833b178ce757c32859e5736df9419a61cbb", + "data": { + "inGameID": 38566 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38566, + "versions": [ + "konaste" + ] + }, + { + "chartID": "ca4426c29d951745bbfcee9a0801505656b3784b", + "data": { + "inGameID": 38566 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38566, + "versions": [ + "konaste" + ] + }, + { + "chartID": "172c1956b0f71d6ae4b930521b8d0ad87e1501bb", + "data": { + "inGameID": 38567 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 38567, + "versions": [ + "konaste" + ] + }, + { + "chartID": "67ba7f236f3a90ba6de3d2be3c135c81b0ab38b4", + "data": { + "inGameID": 38567 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38567, + "versions": [ + "konaste" + ] + }, + { + "chartID": "879f07d7227d2b4d06aa35868141014bc31eefe7", + "data": { + "inGameID": 38567 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38567, + "versions": [ + "konaste" + ] + }, + { + "chartID": "af87a34e9441b4559ff88d3fece74aaa330d1e1d", + "data": { + "inGameID": 38567 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38567, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f33470e1dc8ffd7a6ee99ed7f2387d00b6d75aa1", + "data": { + "inGameID": 38567 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38567, + "versions": [ + "konaste" + ] + }, + { + "chartID": "7fa85170b736780da299d30b40a9dba6f8facc65", + "data": { + "inGameID": 38567 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38567, + "versions": [ + "konaste" + ] + }, + { + "chartID": "d9ce2457c42314f4ee9622996f93e130ab0de1d1", + "data": { + "inGameID": 38567 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38567, + "versions": [ + "konaste" + ] + }, + { + "chartID": "2ccef4689889c3d7ce824e5da109c9039d403572", + "data": { + "inGameID": 38568 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38568, + "versions": [ + "a3" + ] + }, + { + "chartID": "d339d993c5270715fa6e2b6e5c0c2f2ffbe21681", + "data": { + "inGameID": 38568 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38568, + "versions": [ + "a3" + ] + }, + { + "chartID": "d24dd3bbc1f099a53b5276c1e13ce9476c6ede36", + "data": { + "inGameID": 38568 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38568, + "versions": [ + "a3" + ] + }, + { + "chartID": "875ae3160e773e200efb1f19fa4497c43afc0c9a", + "data": { + "inGameID": 38568 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38568, + "versions": [ + "a3" + ] + }, + { + "chartID": "eafb6dd332dc69d7ffcd29d7bf03d0891ae85e62", + "data": { + "inGameID": 38568 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38568, + "versions": [ + "a3" + ] + }, + { + "chartID": "a5af1dcadda23910fcdea8ead9f803e30b3f6308", + "data": { + "inGameID": 38568 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38568, + "versions": [ + "a3" + ] + }, + { + "chartID": "47245e5fc70ecc221f86c73ead2ebd8d61c83512", + "data": { + "inGameID": 38568 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38568, + "versions": [ + "a3" + ] + }, + { + "chartID": "bcf2740ea57c1865a28099406e59f4f9a273fea7", + "data": { + "inGameID": 38568 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38568, + "versions": [ + "a3" + ] + }, + { + "chartID": "76624bee1190d4d3a67598df4e50f058c2f145e4", + "data": { + "inGameID": 38568 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38568, + "versions": [ + "a3" + ] + }, + { + "chartID": "76b5eb10c198bb467f5362e7030ea084dac64849", + "data": { + "inGameID": 38569 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 38569, + "versions": [ + "a3" + ] + }, + { + "chartID": "05b1ca00406a2d5ee4efbf7409aa8274410a71f9", + "data": { + "inGameID": 38569 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38569, + "versions": [ + "a3" + ] + }, + { + "chartID": "8773082bd12032e0ae613f0f3b9f0562cd79b2ae", + "data": { + "inGameID": 38569 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38569, + "versions": [ + "a3" + ] + }, + { + "chartID": "e3bc3ae7f62169682a94963c1ff6a812983de529", + "data": { + "inGameID": 38569 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38569, + "versions": [ + "a3" + ] + }, + { + "chartID": "b3f44ffe45b79ca8e71f616e771015d9450af2aa", + "data": { + "inGameID": 38569 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38569, + "versions": [ + "a3" + ] + }, + { + "chartID": "8a5b73f901b1b6ca51d816ce61db60903b09567a", + "data": { + "inGameID": 38569 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38569, + "versions": [ + "a3" + ] + }, + { + "chartID": "ea32d896d70025bd3676f728025321e8dc1feec5", + "data": { + "inGameID": 38569 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38569, + "versions": [ + "a3" + ] + }, + { + "chartID": "631b0de2ae3e18c2a7aa0de5528b52df1783d834", + "data": { + "inGameID": 38570 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38570, + "versions": [ + "a3" + ] + }, + { + "chartID": "7025df9d10d594bfa5f7a1840dbd2ee9cda7a965", + "data": { + "inGameID": 38570 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38570, + "versions": [ + "a3" + ] + }, + { + "chartID": "b9d0cec98730d1af2651b6477d6c3fc81e05a196", + "data": { + "inGameID": 38570 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38570, + "versions": [ + "a3" + ] + }, + { + "chartID": "9757350d0f0c2309de0ed3643a2b93def0b56752", + "data": { + "inGameID": 38570 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38570, + "versions": [ + "a3" + ] + }, + { + "chartID": "ac4a08b7117997d14db2546be88db9c5194e7de3", + "data": { + "inGameID": 38570 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38570, + "versions": [ + "a3" + ] + }, + { + "chartID": "950b6a089d1011e70fd6852ca40ca09e6f3450ff", + "data": { + "inGameID": 38570 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38570, + "versions": [ + "a3" + ] + }, + { + "chartID": "3ea8127e2f24ec98c35dad4d7e0a1af6c24f23ec", + "data": { + "inGameID": 38570 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38570, + "versions": [ + "a3" + ] + }, + { + "chartID": "f4b94a5a35c185769c029ae3e401e90f56a0d81a", + "data": { + "inGameID": 38571 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 38571, + "versions": [ + "a3" + ] + }, + { + "chartID": "cbf9622539cf9527ff7aeb7593fb7b91718bb192", + "data": { + "inGameID": 38571 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38571, + "versions": [ + "a3" + ] + }, + { + "chartID": "f01ccda1be71abfffe8176ae31d2a9cb9ee44e7e", + "data": { + "inGameID": 38571 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38571, + "versions": [ + "a3" + ] + }, + { + "chartID": "8569c2ca6d65531400e099266a36d701e1865cf1", + "data": { + "inGameID": 38571 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38571, + "versions": [ + "a3" + ] + }, + { + "chartID": "6d3b297176b0df7a473a2b2f92a20cf9cd14d71c", + "data": { + "inGameID": 38571 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38571, + "versions": [ + "a3" + ] + }, + { + "chartID": "3e3ae5dda23e33996885675d2d3b22dba4d45a7d", + "data": { + "inGameID": 38571 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38571, + "versions": [ + "a3" + ] + }, + { + "chartID": "2e2d281611a273e2a376ba805a6a137db55cde75", + "data": { + "inGameID": 38571 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38571, + "versions": [ + "a3" + ] + }, + { + "chartID": "0ccebfa37d8c52c3b7f0eb1ec4bcdaffb5083ee9", + "data": { + "inGameID": 38572 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38572, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c26b54ccbf2061ddae9091cbbb8030d9d37906fb", + "data": { + "inGameID": 38572 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "19", + "levelNum": 19, + "playtype": "DP", + "songID": 38572, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ebf2a67ab0777dc757942f0b2a5b6ff03b95f364", + "data": { + "inGameID": 38572 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38572, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9bc3c53d709a164b87c86fe1de5e7cfb57368836", + "data": { + "inGameID": 38572 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38572, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "01b5531852e0bc4d87b244ef5c8e04c74ca839cb", + "data": { + "inGameID": 38572 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38572, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ab60ac5ce0f692f17dfcd282b226e4ca36d0669c", + "data": { + "inGameID": 38572 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38572, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6f6f658c4600c9c3cad4c988834dfa15dffda939", + "data": { + "inGameID": 38572 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "19", + "levelNum": 19, + "playtype": "SP", + "songID": 38572, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "26a51d3955b4d19d99ef24bc3a7c99bf17cd387c", + "data": { + "inGameID": 38572 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38572, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5a229bd63349dc98e5bc2dd00d0567fb9ee77932", + "data": { + "inGameID": 38572 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38572, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4ce40fc52d42d93d05cc26b5d265277508e1e71f", + "data": { + "inGameID": 38573 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38573, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "312319164e224ff6fd2a8689701f9121ff594cea", + "data": { + "inGameID": 38573 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38573, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a8ae3842ed95994a810d681c57c8eced90e05143", + "data": { + "inGameID": 38573 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38573, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5db1dcced08b19e7c3a7363e011a2036beb5e285", + "data": { + "inGameID": 38573 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38573, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b7d7b86fadaec677d91e045b96251aac86f859ec", + "data": { + "inGameID": 38573 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38573, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cb8367d03f7c7d2ffad4c3f29f21c93670f9bdab", + "data": { + "inGameID": 38573 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38573, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "01289a52bf91529362c6e8ba3f8779e693502a3e", + "data": { + "inGameID": 38573 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38573, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d35319f57abc748f477728167339e25708d93691", + "data": { + "inGameID": 38574 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38574, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fa6b0c78631a3a6d63fe09fe13c1904c22a47b3e", + "data": { + "inGameID": 38574 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38574, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b03f4ae931ea68a6ae994ff5dfdf523ae1dc1cf1", + "data": { + "inGameID": 38574 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38574, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "04baa16774a33d38bfb55135c3ff87f6f7e9702a", + "data": { + "inGameID": 38574 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38574, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "62574093dc49d7449291973fd626a5c036046d1b", + "data": { + "inGameID": 38574 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38574, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3fa68489ff1344b140b4a69e661d08283521d6df", + "data": { + "inGameID": 38574 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38574, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e2b7c1019178f8c249334da3a7663dbe9a8fb330", + "data": { + "inGameID": 38574 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38574, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d4b13b3ca5a4bd592558221d23d76efb57d1e895", + "data": { + "inGameID": 38575 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38575, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a86b88979b82b358ca99b8dd905c895bab615f3b", + "data": { + "inGameID": 38575 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38575, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e381cbc897cff837bf95f1b0877360fb11be2987", + "data": { + "inGameID": 38575 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38575, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "776a061394912d7b420acff04233526471026c05", + "data": { + "inGameID": 38575 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38575, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2c256a12e061bd87de2cdbde2b363fb494f32852", + "data": { + "inGameID": 38575 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38575, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8ed990f73ec8dc797f3458f31dd02c53df46f742", + "data": { + "inGameID": 38575 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38575, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b86cb97b22620fc2766c12f0ad493b3215202a40", + "data": { + "inGameID": 38575 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38575, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "48c82da97dbe7e0da6772c0e2b75e9a69ce9d84c", + "data": { + "inGameID": 38576 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38576, + "versions": [ + "a3" + ] + }, + { + "chartID": "fa9179948b3d5d84eb1e65adb4f537d159eee00b", + "data": { + "inGameID": 38576 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38576, + "versions": [ + "a3" + ] + }, + { + "chartID": "e789d855e7b5523dc8b9b89ab7c07344ed8c76f7", + "data": { + "inGameID": 38576 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38576, + "versions": [ + "a3" + ] + }, + { + "chartID": "426e029981c61f13fc2faa8e0b2620b06b0037de", + "data": { + "inGameID": 38576 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38576, + "versions": [ + "a3" + ] + }, + { + "chartID": "b11b017118d2511fa958335ad36c18b64be85042", + "data": { + "inGameID": 38576 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38576, + "versions": [ + "a3" + ] + }, + { + "chartID": "11343656a89b369595c018dec7adb2b476fdc753", + "data": { + "inGameID": 38576 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38576, + "versions": [ + "a3" + ] + }, + { + "chartID": "decfc3c3b30b0123b2ef717554ab55cdd1efb9a7", + "data": { + "inGameID": 38576 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38576, + "versions": [ + "a3" + ] + }, + { + "chartID": "6fa78abd120d0d7fb5b9881cf3bc55c9cff568c4", + "data": { + "inGameID": 38576 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38576, + "versions": [ + "a3" + ] + }, + { + "chartID": "645514dbe5c99297732385f5c4b67d7cd952cfdd", + "data": { + "inGameID": 38576 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38576, + "versions": [ + "a3" + ] + }, + { + "chartID": "0f63bbad73199f515e4c54500162412794d5a964", + "data": { + "inGameID": 38577 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38577, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5e159d2d77a0fe11d890df95efe56c1dea653803", + "data": { + "inGameID": 38577 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38577, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6336119aefb604d5995699aa63ec286390780c13", + "data": { + "inGameID": 38577 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38577, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b42185d03b0d0c6d29153dd033ff6e76732a28b9", + "data": { + "inGameID": 38577 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38577, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fad9790c2408ed3287984e87dbe61c06301e14f1", + "data": { + "inGameID": 38577 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38577, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0d1d842b1b8716d7a548951036b5049288032053", + "data": { + "inGameID": 38577 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38577, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "179a456f0945f5c9ea64762435a043a1621a8a21", + "data": { + "inGameID": 38577 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38577, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7197607fc715ac49686bf0980f60140902bd3367", + "data": { + "inGameID": 38578 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38578, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "06ca9f0e92b32804e536b6bb4273e059fc6dbffa", + "data": { + "inGameID": 38578 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38578, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5ce9f53d65532b318661ddba4b1030a1f81f4a44", + "data": { + "inGameID": 38578 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38578, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6cdc6923e06c70955f77e54cb1d8383c645630b3", + "data": { + "inGameID": 38578 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38578, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f649d02e3519a6fbcbb2cbe955a04f9a85aeb188", + "data": { + "inGameID": 38578 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38578, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "438433b4b45210b589b47d9cd327c791cd283322", + "data": { + "inGameID": 38578 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38578, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "492f11849705edfae99caef7ca73f5b177e11702", + "data": { + "inGameID": 38578 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38578, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6b8b9f2399d74137c59433f80946c74059e181ae", + "data": { + "inGameID": 38579 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38579, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "905f106a44cd9062867f23da8f18f49e13d41762", + "data": { + "inGameID": 38579 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38579, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fd1395a2dc74fd4f0d8d68da22266c2f1313a061", + "data": { + "inGameID": 38579 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38579, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6afad34cd5dc62c2edc0cb6890d812e1c53bb110", + "data": { + "inGameID": 38579 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38579, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0432fc7440c67533cf286a952b3231297d395486", + "data": { + "inGameID": 38579 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38579, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ad984a6f5a64b8ac384c5c52f583458a6bb8460d", + "data": { + "inGameID": 38579 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38579, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bc07db1b5a5016bba84f4129849ba91cc2480a54", + "data": { + "inGameID": 38579 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38579, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "04f7c56a5548fa434cb4ff7406ba71f41e0db302", + "data": { + "inGameID": 38580 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38580, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dfdeee1d6ac2a53b9c0606cf0f830dd7dab31657", + "data": { + "inGameID": 38580 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38580, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0ffc839e8a01a3859694f6a3e42b2b22be51da05", + "data": { + "inGameID": 38580 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38580, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a58138aa17fb5c7f1d91d90927b57548c502b407", + "data": { + "inGameID": 38580 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38580, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aa30c1d481be0415eb33dc684bd32861e0802220", + "data": { + "inGameID": 38580 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38580, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7097bc216a998ff51afb43e0fbe5a5290a5de8c5", + "data": { + "inGameID": 38580 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38580, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dcf6c148cb063804c60d35e4958898c41c708ef0", + "data": { + "inGameID": 38580 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38580, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0cff64e376ac7deff648f56712c3b867f60fae10", + "data": { + "inGameID": 38580 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38580, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2fc210675fc5eadade18467e8e179eb9d0211fe7", + "data": { + "inGameID": 38580 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38580, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "97f8e434dd784fefd7e5caf1b58a0aba7e8e52e8", + "data": { + "inGameID": 38581 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38581, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "49a8f4cec4389322bb3941cf71f4570f45b7c1de", + "data": { + "inGameID": 38581 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38581, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f505beb52317360e5fbfa62b443f76fda3207464", + "data": { + "inGameID": 38581 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38581, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "af3eae4e52810b44de5b74a2353eef195fac0c3a", + "data": { + "inGameID": 38581 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38581, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "60dc20d8aebd02a42c86bf78a3a7083bc887f6a2", + "data": { + "inGameID": 38581 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38581, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aea9973134a7899a735852347c331b598ab5f3a2", + "data": { + "inGameID": 38581 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38581, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9a09f054c0102c3840862b85a208992f0caa8903", + "data": { + "inGameID": 38581 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38581, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f14e17c4ccbea9ce20b99c19823cc2ff62acdc22", + "data": { + "inGameID": 38582 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38582, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e79d606f96dd5aaf0bf670ddb14768980263ed5c", + "data": { + "inGameID": 38582 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38582, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f796f37bdb7ea95833d557b3c8d630ca18d6843e", + "data": { + "inGameID": 38582 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38582, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "43c5dda079e26dfa0e1aa826b8fa046630c3126d", + "data": { + "inGameID": 38582 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38582, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "25a278e9065ef35486c2c362d499b87425fc3328", + "data": { + "inGameID": 38582 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38582, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "004d3bc7c3b82b61345072cbd057880106ed59ff", + "data": { + "inGameID": 38582 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38582, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "070d91094eb321d1a064d349dabeebfb61786f8d", + "data": { + "inGameID": 38582 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38582, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7c724a9808bd75c23f557c7974750ec16cf159d7", + "data": { + "inGameID": 38583 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38583, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1044ee3f95a1ac65f87f0088382e83050bdb866b", + "data": { + "inGameID": 38583 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38583, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8ab8e7ebd71372b9d2825c667fb567b867483065", + "data": { + "inGameID": 38583 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38583, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "57c5dff2408d1a97f7c879b75f49a0537e8efdec", + "data": { + "inGameID": 38583 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38583, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c2ecb57ce268f1afbf0dcc84f0997b00e31586ad", + "data": { + "inGameID": 38583 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38583, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "783d0999849f220b4cb9ec045813655272961d89", + "data": { + "inGameID": 38583 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38583, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d18bb9cb8a5f50321b5257bbc042582ffe806da9", + "data": { + "inGameID": 38583 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38583, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f6aca89e3273362b0d926c98480bce74e57db552", + "data": { + "inGameID": 38584 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38584, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "79458dd3c99be5f4e209f58f955f5426de2d52e1", + "data": { + "inGameID": 38584 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38584, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce0fb41607c0f8f5b5b61966c02f4721246ed472", + "data": { + "inGameID": 38584 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38584, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "65fca2eed3d080680342414bb02aa1beeeed3544", + "data": { + "inGameID": 38584 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38584, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4a093f888973113c29ae698675621794cf769753", + "data": { + "inGameID": 38584 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38584, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e6c9b0be41d4755187a89fe1a6ed3a8ce0092f7e", + "data": { + "inGameID": 38584 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38584, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b94378e7c4530b9ce97e3a4aa325feebf3ce1745", + "data": { + "inGameID": 38584 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38584, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5be89b454b932e0d84e24a19313e5c9bedc0cbed", + "data": { + "inGameID": 38585 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38585, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "791f28b14c8b93a511b9e0ae5edd0effc25e8157", + "data": { + "inGameID": 38585 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38585, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "aa4d8ec77f0db55df8f6224d353535bfdee977ac", + "data": { + "inGameID": 38585 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38585, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dfe62beb9c1c6d40c26e3366468a540a6e8e96ac", + "data": { + "inGameID": 38585 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38585, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3dc38bb2f2864d3db348631871ac563e2af374ba", + "data": { + "inGameID": 38585 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38585, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "89ffd85365d3c5faa3307c2b3867fc31e1e1dfbc", + "data": { + "inGameID": 38585 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38585, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1209f837ee45be0b638c72abf525ff6802693f2f", + "data": { + "inGameID": 38585 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38585, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "68d889b6fecaa743b33a70f4d45719bed4b62ef2", + "data": { + "inGameID": 38586 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38586, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2dccf715eac5eaf1936940bf6e68d197bd8cc5eb", + "data": { + "inGameID": 38586 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38586, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c7e26d8b6b2c5bc3e2d31bdb9a269e63d7f92bfc", + "data": { + "inGameID": 38586 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38586, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "029324f68facec210ef3242dea8435b280909eb8", + "data": { + "inGameID": 38586 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38586, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6a1a2a77b73eb1c28c45bb6a519205906e7dada6", + "data": { + "inGameID": 38586 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38586, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "940b72abb3b1511b27d7195741464e89d28fc61a", + "data": { + "inGameID": 38586 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38586, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7c2567398944104b230533e52e3968ee0ed015f0", + "data": { + "inGameID": 38586 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38586, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "172296e8b8a796ad982f12a04fe0acbf4c96fecc", + "data": { + "inGameID": 38587 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38587, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a481c23a37492762bd327bc72cf3d307de05a556", + "data": { + "inGameID": 38587 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38587, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "113bc8d0982d3b7b7e36269672e320b41ac11236", + "data": { + "inGameID": 38587 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38587, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cf2cdd6347d2db702ae33902431dd8f18f26927a", + "data": { + "inGameID": 38587 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38587, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "49fe575fbeeb662808e02d3314d71bc55cc76521", + "data": { + "inGameID": 38587 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38587, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1f93d4cb42eb0003fe4172fa7e4383df8614bebf", + "data": { + "inGameID": 38587 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38587, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1589295449636083476bc31e95f784d2f34e6c43", + "data": { + "inGameID": 38587 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38587, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "063744e17f5077b44c2b9db855f83dfc4ef7a9be", + "data": { + "inGameID": 38588 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 38588, + "versions": [ + "konaste" + ] + }, + { + "chartID": "3f4d9173718f8dbef91479b4091e2e631a698267", + "data": { + "inGameID": 38588 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38588, + "versions": [ + "konaste" + ] + }, + { + "chartID": "41b9a9a1e9995f7d23366e4e2adcbcbd1dec62ca", + "data": { + "inGameID": 38588 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38588, + "versions": [ + "konaste" + ] + }, + { + "chartID": "712e36bf46eda50280738d3115843d6ddb2713ed", + "data": { + "inGameID": 38588 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38588, + "versions": [ + "konaste" + ] + }, + { + "chartID": "cccb4070e58f64315262babe3e587c14a850c948", + "data": { + "inGameID": 38588 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38588, + "versions": [ + "konaste" + ] + }, + { + "chartID": "a90cd1d8a00d7104d95792718060e6b062cd96c3", + "data": { + "inGameID": 38588 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38588, + "versions": [ + "konaste" + ] + }, + { + "chartID": "8bf0e500d0daa358abaefb9c4f7a0951f58cdd4c", + "data": { + "inGameID": 38588 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38588, + "versions": [ + "konaste" + ] + }, + { + "chartID": "46241ed4e1e074c946772497466e1b40a173e41a", + "data": { + "inGameID": 38589 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38589, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "76a32dd7d0a8d86fed2017a9448bd4eda3ecd555", + "data": { + "inGameID": 38589 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38589, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9d2751d9fbde77b628017ee6bf0a8f544a0adf4c", + "data": { + "inGameID": 38589 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38589, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b1e39cc4a01b47c1021f8d6ecc294077eda5f3f9", + "data": { + "inGameID": 38589 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38589, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e6c622f88ed22be48eba6d910c1bace54a7ce4b7", + "data": { + "inGameID": 38589 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38589, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8b76a5a5d4dc08c42332d3b0dac95f3f92e820f1", + "data": { + "inGameID": 38589 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38589, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "407979701ac5c856e38be846e15d91d1a22ee77b", + "data": { + "inGameID": 38589 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38589, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f914351a42454f93479d7f3648a003e21dbfd981", + "data": { + "inGameID": 38590 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "DP", + "songID": 38590, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8f8ca70f58479e1e0a1904cdc48424fb9318930a", + "data": { + "inGameID": 38590 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38590, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6e5b0ffe936dae1e1916b6bb71b73af572c0d8af", + "data": { + "inGameID": 38590 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38590, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5fe26c061c6c5b37af77c0b19c65ac55b8df8f3b", + "data": { + "inGameID": 38590 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38590, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "849314a1cce39bf49fd95483baab2e4eadfeda0b", + "data": { + "inGameID": 38590 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38590, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e365b01c2e9039fa74a1e4a006fd55b7e194ba92", + "data": { + "inGameID": 38590 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38590, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "99ddacfb4e39e3e58dcbad1f515ed16a3889978e", + "data": { + "inGameID": 38590 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38590, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "efb9b479c428c804c5c3d961b99c8adc9dabf665", + "data": { + "inGameID": 38591 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38591, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9121c438124d51c8812fd068df711f7f3e768084", + "data": { + "inGameID": 38591 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "19", + "levelNum": 19, + "playtype": "DP", + "songID": 38591, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e242b5230e2f646e66b4095b306a01fa43387928", + "data": { + "inGameID": 38591 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38591, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "90b1e8790154bdbf0dd242dcf896a2c978ab34af", + "data": { + "inGameID": 38591 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38591, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8b2875ab0d1ebec8c9fc1e44cdf73747c9152fa4", + "data": { + "inGameID": 38591 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38591, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bea13b4882e39b98d84ded5296c3065dff405722", + "data": { + "inGameID": 38591 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38591, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "63421bf32eda5a0200dfd1904869914a93d2b571", + "data": { + "inGameID": 38591 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "19", + "levelNum": 19, + "playtype": "SP", + "songID": 38591, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "47ecfd9bf1a18731ab3c5c0d679e7e261679b717", + "data": { + "inGameID": 38591 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38591, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ea765151fd99d24380924b53f4886600007a58fa", + "data": { + "inGameID": 38591 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38591, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8bf75606aa820e24b7f7704a7eb895d7e15917b0", + "data": { + "inGameID": 38592 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38592, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8691c0723e001b5d4b93128640b22f9ce0818f99", + "data": { + "inGameID": 38592 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38592, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7efc344c2d9d85de72d94a8b66fe900b34bc66f4", + "data": { + "inGameID": 38592 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38592, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "94c6e21b36db7470175295d23c9bb7d471ae41d9", + "data": { + "inGameID": 38592 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38592, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2a337108beb10c11ef8dd613df81dc40a2e7508e", + "data": { + "inGameID": 38592 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38592, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a63f57ae2ec35be26c36132903494305d8d23547", + "data": { + "inGameID": 38592 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38592, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d8b3aedc08c3f560efea678009b227f0bfe387e1", + "data": { + "inGameID": 38592 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38592, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ebd7aa375f5a70041a452f2b114e4299e6159428", + "data": { + "inGameID": 38593 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38593, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff75d7c9e1674f787450d1318d1e6831d23c2f68", + "data": { + "inGameID": 38593 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38593, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6f18494f231cc988e07cc19adaae827be18224ba", + "data": { + "inGameID": 38593 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38593, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bb5e55efb81d30c8997bee36870c5bb1943a8d5a", + "data": { + "inGameID": 38593 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38593, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ce1ba7fec4fd78848042074adb1e6815093d12fc", + "data": { + "inGameID": 38593 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38593, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "66cbb2109a9c46c12578422d5fbd822b16939afb", + "data": { + "inGameID": 38593 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38593, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "beedcd47077b8183b6583776f62b1802c11f06df", + "data": { + "inGameID": 38593 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38593, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "018f566e6318dfca5c29b35a2129b355cdc960ac", + "data": { + "inGameID": 38594 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38594, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f6a30ec9d38b9946c330dac6f7b9277e1ea5494c", + "data": { + "inGameID": 38594 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38594, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b2e4e1e60126e26da55b3f425c3a29752e5728a9", + "data": { + "inGameID": 38594 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38594, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bb53a77a0898474df5d28bdc0ca2e8701fb49a21", + "data": { + "inGameID": 38594 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38594, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5b8869ae2e53fb4d7316768c733564b055ce1c01", + "data": { + "inGameID": 38594 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38594, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "df29025f2433c4d2d07f3bb6ef8be4cca208e92e", + "data": { + "inGameID": 38594 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38594, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d4273250ac7b48d58615c03ddea8934057f3d8c8", + "data": { + "inGameID": 38594 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38594, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b960680a544f9992ba2dc9b97ce087a464540a5c", + "data": { + "inGameID": 38595 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38595, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "39a0816d2ff81747ace7c9ef9817c0fb7f271d34", + "data": { + "inGameID": 38595 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38595, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8a2876cf2592c6924111e5c2d38b7a9c92b4ca96", + "data": { + "inGameID": 38595 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38595, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fc63f7427d16c3e26270ad61f7760d0f3ad1b5a1", + "data": { + "inGameID": 38595 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38595, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9595641ea04637075ef3ddd393172b1e092b302e", + "data": { + "inGameID": 38595 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38595, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4b939e8afa65cc19954a937f1cdc73b7c386c2c8", + "data": { + "inGameID": 38595 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38595, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "24e787b88f546fb6e4aa7b2994026952db12ca87", + "data": { + "inGameID": 38595 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38595, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9c9d02fb0cea7739a25ea099aa05f6e8c8963e46", + "data": { + "inGameID": 38596 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38596, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "99cbd39b0f38794df56a5ee52700634debfded1b", + "data": { + "inGameID": 38596 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38596, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5131ed03d79626826fb460e8d3212e00035c61ea", + "data": { + "inGameID": 38596 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38596, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8774c59b2a7bfc27510dcf4364d6b4ece4205242", + "data": { + "inGameID": 38596 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38596, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e6226ac5653fb5efc6ab7d33946dc7cc7361898f", + "data": { + "inGameID": 38596 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38596, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "186955b390cebcea25c27b6a04e54edae1d75668", + "data": { + "inGameID": 38596 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38596, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8e98cc51c98214433673ce2690e6dede69fc165b", + "data": { + "inGameID": 38596 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38596, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d5c676cec5b7fbe22b997e109d800eb13b7c2657", + "data": { + "inGameID": 38597 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38597, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2cf378455a53f23218287a59191aab646c4d6f50", + "data": { + "inGameID": 38597 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38597, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5d89ba8df7864daa4cc0e3d4b8f355751ff7ca75", + "data": { + "inGameID": 38597 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38597, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "afa25d7ac9581593b91efaca87efd1c1186be82a", + "data": { + "inGameID": 38597 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38597, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5f8051b5fdf975fdaeafd43eb8cfb674dd422793", + "data": { + "inGameID": 38597 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38597, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0ffb7317a95f9971f99af19ea563d3831ef4a5aa", + "data": { + "inGameID": 38597 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38597, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "145d07566cceeea59ff8f5eb433f711f732e4b3e", + "data": { + "inGameID": 38597 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38597, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "46fe150e9cba9eccc2b39838fa3a7e457d1e3a28", + "data": { + "inGameID": 38598 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38598, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "972ac9acfd1591b7d5a1e51a08f27bcc40e5cbbf", + "data": { + "inGameID": 38598 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38598, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e3eaa48cc171184d252139d1b92ebc2866e8b34d", + "data": { + "inGameID": 38598 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38598, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "187b14daedee7e1a225b82000014f550ae74d849", + "data": { + "inGameID": 38598 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38598, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "30f34c4f1ed3ecfee3b97c23a6c79917dad828a0", + "data": { + "inGameID": 38598 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38598, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ad452823b54a3ff8997f8854db47b222c7b1db64", + "data": { + "inGameID": 38598 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38598, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a6937b91a7711a306b1fa4bdfba6d7ad06df2b8f", + "data": { + "inGameID": 38598 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38598, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9368cf0914642e0889fd46d7a6e869186e30b2ab", + "data": { + "inGameID": 38599 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38599, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ca80dc29df938d54db8e171d74ab7bd9b29668b0", + "data": { + "inGameID": 38599 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38599, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f86e7b8efddcf4426fa808d74fc4de83b83e4f44", + "data": { + "inGameID": 38599 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38599, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "29d390feda1333f4f9f4018c2c5c16ad6f5c7012", + "data": { + "inGameID": 38599 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38599, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1e02ecddd12f69f6e78b6244d6808a37b218bd4f", + "data": { + "inGameID": 38599 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38599, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d901bd07ae8919be20985a788e2f2f75be9eaea", + "data": { + "inGameID": 38599 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38599, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8aff4272b204391d58885d121d608628cf665e5d", + "data": { + "inGameID": 38599 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38599, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "84ee718fb7cf21b11a770ca1c3f564d55859e690", + "data": { + "inGameID": 38602 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38602, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "38b0aa822a19fc681e816cef54e56fd130746187", + "data": { + "inGameID": 38602 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38602, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f7a1083bbd9dca921c9faaac4b0e6edc192cb5c3", + "data": { + "inGameID": 38602 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38602, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9d57e9141f82f4d7fd9057c12d8bf57a86e75198", + "data": { + "inGameID": 38602 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38602, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d4955822d92c0c1c5cab836e6faadf4e3b7e6b83", + "data": { + "inGameID": 38602 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38602, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3ae9202e9761541fe3ba0a77fa05b735a85c084b", + "data": { + "inGameID": 38602 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38602, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5645da1a3991f316b29fb5cfcfc15fbd7b49b95b", + "data": { + "inGameID": 38602 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38602, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0b0bd25828285726ea812487038f992227ebd53d", + "data": { + "inGameID": 38603 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38603, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c2fcdc17386ab995c200a231e2dd87e8df85b6b9", + "data": { + "inGameID": 38603 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38603, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "07bec75367e85444404e732790ff47be444e8a04", + "data": { + "inGameID": 38603 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38603, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "009c6ed3af11567ccecce4a7fa1d15e4c854157d", + "data": { + "inGameID": 38603 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38603, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8231ec099bfbe7cd1586a5cf7d11272543197364", + "data": { + "inGameID": 38603 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38603, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "53a1690986c8165641cfb34ff4e0ae0e75ac5d10", + "data": { + "inGameID": 38603 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38603, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4fe80d79e243546ee353c1a7e026cb7306401e54", + "data": { + "inGameID": 38603 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38603, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f85c0230cd005c787831fe52c731d71147be5208", + "data": { + "inGameID": 38604 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38604, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0ded1186513fd15a8729d94fed382a7f301a1bd7", + "data": { + "inGameID": 38604 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38604, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a9584c036c208dbf1704b1eb5ec379d044ed7c13", + "data": { + "inGameID": 38604 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38604, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9442b3f30b4fa088e0d4e250ac543f39cc19d11b", + "data": { + "inGameID": 38604 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38604, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9611e64f315479841ff67c74d3e471d293a67c97", + "data": { + "inGameID": 38604 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38604, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b1c92451c241e4ead3abd4d0ff66bf3344813b55", + "data": { + "inGameID": 38604 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38604, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fb77f64e6cabc8fcbf62e7c1a156b0403cf0db9a", + "data": { + "inGameID": 38604 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38604, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5efaf542b3ec08c76fca3eba821233f930c64722", + "data": { + "inGameID": 38605 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38605, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "89fbdc2bfc99b5c120cede3e410115755c1910d9", + "data": { + "inGameID": 38605 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38605, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "337b31ce1ebdeccd54c82eb02ec614d0619a7d17", + "data": { + "inGameID": 38605 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38605, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cba853cc5d64a3727c868805ee4c25ae46d538a9", + "data": { + "inGameID": 38605 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38605, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "165befd7dc2df9e79b377c6f9c3c778a5b68a9de", + "data": { + "inGameID": 38605 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38605, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "78064ce96e0e0a62c3776b82712476507df3f644", + "data": { + "inGameID": 38605 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38605, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "995b531f6b80cc5c43bc5f22040f111270343fa4", + "data": { + "inGameID": 38605 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38605, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "de310f3a6ebcf3682a49f3a21d5f8d98b67c6336", + "data": { + "inGameID": 38605 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38605, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "da9b92250f60191b30061e6a2420855ae7e1d7d8", + "data": { + "inGameID": 38605 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38605, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "895710d02c710c75977e5dcb912c971438c233ca", + "data": { + "inGameID": 38606 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38606, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bff3da630cbb6467f9a3afe9a0b3d30c9217b19d", + "data": { + "inGameID": 38606 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38606, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "386b4368b7bf89ab4ea82f5d95fed99b1e66ab53", + "data": { + "inGameID": 38606 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38606, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5f69469badd8f35ba9232d003e04b634e6632b09", + "data": { + "inGameID": 38606 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38606, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bcf340ee8e07277ccd08a1dbd366e37329575c87", + "data": { + "inGameID": 38606 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38606, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "23fb5bb939fe9c2936aa7576b4cf02d628be3a55", + "data": { + "inGameID": 38606 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38606, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "84cd5ac8c090d958249778816476894b3b21300e", + "data": { + "inGameID": 38606 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38606, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6de44291f4fdaf98f1a4d68b3c42f0e5fd444570", + "data": { + "inGameID": 38607 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38607, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d64dd3f9ac27a6aa24259a512573fee23d19df7", + "data": { + "inGameID": 38607 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38607, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "42ac44f79c15bacd855e84273f7e8a5585506326", + "data": { + "inGameID": 38607 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38607, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d57190e80c8b6ca77817bc9333046f944cdb4dc8", + "data": { + "inGameID": 38607 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38607, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "46b963dbe1235ce6ab0e2fed953da572f7406b9f", + "data": { + "inGameID": 38607 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38607, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "23d53e2165ed5d609d5272833a9541ecd11f0976", + "data": { + "inGameID": 38607 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38607, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ecb3eac027d8c34ecf02ed3c6157807c6f275ba6", + "data": { + "inGameID": 38607 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38607, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ad019e908a9a0516426adb707bed90ad4f4d5d00", + "data": { + "inGameID": 38608 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38608, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "180066b21890da60bb61888eeb9eb18a3f06bd8f", + "data": { + "inGameID": 38608 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38608, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e5cc1d3acda4be9ed8b04ad5c2aa270d4d24204a", + "data": { + "inGameID": 38608 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38608, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "82d688e8043c03befb0db4a2b2ce8c0650166808", + "data": { + "inGameID": 38608 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38608, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dc78204ca7be30b9d2b2c5731915fa3fef574bb2", + "data": { + "inGameID": 38608 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38608, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "13f8832b44cf51272c5a0069b8e5c022f62f4794", + "data": { + "inGameID": 38608 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38608, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "401a69d7ef13dbe79d3283899e227c6ed7bb1222", + "data": { + "inGameID": 38608 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38608, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9ef90530990d66d69f1088dbfd02aa480aaa23b6", + "data": { + "inGameID": 38609 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38609, + "versions": [ + "a3" + ] + }, + { + "chartID": "cb6ae8cd2645286e86a994608f0b8f14cbfa11e1", + "data": { + "inGameID": 38609 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38609, + "versions": [ + "a3" + ] + }, + { + "chartID": "0eb84085b73a4a51fa2dcaf0288a1f65ed6ee3dd", + "data": { + "inGameID": 38609 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38609, + "versions": [ + "a3" + ] + }, + { + "chartID": "d1ae5eaa874ffb49030c2b13a85b1b9285666bba", + "data": { + "inGameID": 38609 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38609, + "versions": [ + "a3" + ] + }, + { + "chartID": "a2387d080ae6e81e6d511c4e64ae01e95d1a9d85", + "data": { + "inGameID": 38609 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38609, + "versions": [ + "a3" + ] + }, + { + "chartID": "233d8e8690effd36810698ca2147798ce3486f7b", + "data": { + "inGameID": 38609 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38609, + "versions": [ + "a3" + ] + }, + { + "chartID": "7f3fb71ac21a8efdeb0cd9b933692abb55344b46", + "data": { + "inGameID": 38609 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38609, + "versions": [ + "a3" + ] + }, + { + "chartID": "bfef064d58f41b6fe243031f38188f583e3f7958", + "data": { + "inGameID": 38609 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38609, + "versions": [ + "a3" + ] + }, + { + "chartID": "dd7f997d5251f221188113575b2d3ec3aa55ce00", + "data": { + "inGameID": 38609 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38609, + "versions": [ + "a3" + ] + }, + { + "chartID": "e0f984d112db6c6753d69d62ab75c6b2759c6e82", + "data": { + "inGameID": 38610 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38610, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b6950bbb878d8af54ad54442beecd549c4716d0a", + "data": { + "inGameID": 38610 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38610, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eadc309c8059a010556cfe50d5f805ebf8dd244a", + "data": { + "inGameID": 38610 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38610, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7553ba57fceca137c6e6d37639eccfa14b91605f", + "data": { + "inGameID": 38610 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38610, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "917c6498d7d463b271d893b8ac399b1fe4328091", + "data": { + "inGameID": 38610 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38610, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cc56a3cf2cc62bc5144432872daefc35bc7dca70", + "data": { + "inGameID": 38610 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38610, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a113c529caa68fcce062474c4b9425d72a16f3b9", + "data": { + "inGameID": 38610 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38610, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d35a7644d9db052b68a7d7852e0939e36bbe868b", + "data": { + "inGameID": 38611 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38611, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "010b7f36931b644c8b4759baa24292a1974a056d", + "data": { + "inGameID": 38611 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38611, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "785d7e6f08ef585981c44cf7679faff7b564b9ad", + "data": { + "inGameID": 38611 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38611, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "54a314844870c1e5c99ef547a9dda741ce081441", + "data": { + "inGameID": 38611 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38611, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1fd9b5f6f3e5eded216935b7ba98b2271a42fbb3", + "data": { + "inGameID": 38611 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38611, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f0d8e46b0a124d282e1ee53755c24f337eadf4bb", + "data": { + "inGameID": 38611 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38611, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cf9a5f88e0f0837d3a600575d50d472e916ab52e", + "data": { + "inGameID": 38611 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38611, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "66ea541586da0894885e5b0a50618745c2a59132", + "data": { + "inGameID": 38612 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38612, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d3761236c81cc8dbe3712ab43796ea062b8e4017", + "data": { + "inGameID": 38612 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38612, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3335870496011f3f5b5216cbd83b965f2e8799d5", + "data": { + "inGameID": 38612 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38612, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "61684325abf0ad99b995d8a8a63aa9d4e14dac13", + "data": { + "inGameID": 38612 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38612, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b7b1d4bb1b969bb07dd6c4a30e3e13c2de62b0eb", + "data": { + "inGameID": 38612 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38612, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c926e468da1ea995c2a8e0e4b206121a66c51601", + "data": { + "inGameID": 38612 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38612, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "60cdcf592ba4a249f01f4d4bb60c58ebfaf207e2", + "data": { + "inGameID": 38612 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38612, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "41f1712df2bca82b406e70713fae6792047d5012", + "data": { + "inGameID": 38613 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38613, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6acc8d23a0334574adc089c235f8da111612da16", + "data": { + "inGameID": 38613 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38613, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3267a391ee2ab127cd6fb0e5e8a71fc9ef659b6d", + "data": { + "inGameID": 38613 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38613, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8e6141bef113f14e87bc85c1c2da12462e2b0b6a", + "data": { + "inGameID": 38613 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38613, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3486f14e0da4ddb9c04bdb9bb447c2890a2fbaed", + "data": { + "inGameID": 38613 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38613, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3f2ee0fcdadbf73cd4d14e89ee77264333195e83", + "data": { + "inGameID": 38613 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38613, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7fc7267c7c97abd5396da2dc46def5aa95f2913e", + "data": { + "inGameID": 38613 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38613, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eac0c514832507bff00b5efe793ad22090484af3", + "data": { + "inGameID": 38614 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38614, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eb34fc8e3e57179dca455b3e0a1cac19c96ed907", + "data": { + "inGameID": 38614 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38614, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6f8b22f9e8ce8faf2061bbe95a23d6365eba0eec", + "data": { + "inGameID": 38614 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38614, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "535427e20097f68ccc84b48a525e9f80b0f7ec9a", + "data": { + "inGameID": 38614 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38614, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0c2b25365fa40af0fdea5fe6177339a3a1007cec", + "data": { + "inGameID": 38614 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38614, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "731017baa717dc5680ca4b8d18ffa6f150942d34", + "data": { + "inGameID": 38614 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38614, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "00718f8c2ef6683799f99d00b0d63cead37e7a33", + "data": { + "inGameID": 38614 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38614, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5e9c8464f9d79992be225c891293e558a929619e", + "data": { + "inGameID": 38615 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38615, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "04753061d1ed6602c70c6afd29f8115af2dad239", + "data": { + "inGameID": 38615 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38615, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fab0aa869146bbf7aefc27148dbee75914876ef5", + "data": { + "inGameID": 38615 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38615, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "48884af4897cbb91d0ec63f6b5e834f4b78985c0", + "data": { + "inGameID": 38615 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38615, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7b1ff16a8c41f0207be2355a08371ff0aedcfb58", + "data": { + "inGameID": 38615 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38615, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "595a88e11e484488bf3e23b000545548f948910a", + "data": { + "inGameID": 38615 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38615, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f553fd5e7a8a76fac5c12887b457ba2affa6b6d4", + "data": { + "inGameID": 38615 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38615, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bccd701d428c150ceb5951446f8985260ee64c8b", + "data": { + "inGameID": 38616 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38616, + "versions": [ + "a3" + ] + }, + { + "chartID": "bd513292674a8f6d9c5ec3beeee80ad04f395bc5", + "data": { + "inGameID": 38616 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38616, + "versions": [ + "a3" + ] + }, + { + "chartID": "09f29600a67da5544f5f8ed8ea8478642e90d874", + "data": { + "inGameID": 38616 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38616, + "versions": [ + "a3" + ] + }, + { + "chartID": "09d788bfd860177622fee7b01a2617a7efdf01b0", + "data": { + "inGameID": 38616 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38616, + "versions": [ + "a3" + ] + }, + { + "chartID": "8a8f72d944c8cda8dd05fcb584dea430b7a645ee", + "data": { + "inGameID": 38616 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38616, + "versions": [ + "a3" + ] + }, + { + "chartID": "bfbb4e0dda52962f7bf644335f7e9095836c99c1", + "data": { + "inGameID": 38616 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38616, + "versions": [ + "a3" + ] + }, + { + "chartID": "d057ffb19bad1b425e5c05d65be46b1cc65c6a28", + "data": { + "inGameID": 38616 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38616, + "versions": [ + "a3" + ] + }, + { + "chartID": "867377c5d7f899805be44c75474740d8ec85df5b", + "data": { + "inGameID": 38617 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38617, + "versions": [ + "a3" + ] + }, + { + "chartID": "6bb31d0ff9d3b6287b6cecddfabd1808e5a138e8", + "data": { + "inGameID": 38617 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38617, + "versions": [ + "a3" + ] + }, + { + "chartID": "d84aaa7d0734498c65f8076420413f0c984bad1d", + "data": { + "inGameID": 38617 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38617, + "versions": [ + "a3" + ] + }, + { + "chartID": "499cf64b8b04f1bb5d67f5cf81e4919d30ed4f81", + "data": { + "inGameID": 38617 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38617, + "versions": [ + "a3" + ] + }, + { + "chartID": "a4f6bcce73c877a599a66f8be23739964e63048c", + "data": { + "inGameID": 38617 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38617, + "versions": [ + "a3" + ] + }, + { + "chartID": "2783bddda39b2eea0f26b2a64c944610a9b6541a", + "data": { + "inGameID": 38617 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38617, + "versions": [ + "a3" + ] + }, + { + "chartID": "2d52a4cdb15e5766adbbe4c33b40334d8bad26ff", + "data": { + "inGameID": 38617 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38617, + "versions": [ + "a3" + ] + }, + { + "chartID": "b79480034d57d9204c7f779f7b040d6d87a72b9a", + "data": { + "inGameID": 38618 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38618, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "98a997f107e80eeb1426c8a262b900d024d2aa80", + "data": { + "inGameID": 38618 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38618, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "74632efb0ed597600251af8489d6db9b5b82ca3b", + "data": { + "inGameID": 38618 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38618, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "260e5dc7883d6b92d7090ca7aaec6e64be6d83be", + "data": { + "inGameID": 38618 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38618, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9027a8840c72cc470be01ec445de040b1cdb0d69", + "data": { + "inGameID": 38618 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38618, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e10838c9a3527a501d0ecac0bd9e4578af18142d", + "data": { + "inGameID": 38618 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38618, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1593ea02ea4ecf42b8428f7f24cc31c41f3d0c59", + "data": { + "inGameID": 38618 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38618, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "24faffafd3d9a7a313fbee63676228b65b140d0a", + "data": { + "inGameID": 38619 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38619, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2aca4f9a60630099a54d495d3953b04edead4604", + "data": { + "inGameID": 38619 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38619, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2328b527b2686fa102a6286cf576c2c08312e9c1", + "data": { + "inGameID": 38619 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38619, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "19e43e2afb39c7e46056caf254bfce93827c2b03", + "data": { + "inGameID": 38619 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38619, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c9fd736bcc415e1b213fec3d885f3ec9e598ac74", + "data": { + "inGameID": 38619 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38619, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d971d4a98680e51efa22b5b9d4200ce5e0c552c3", + "data": { + "inGameID": 38619 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38619, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "35706f22bb2df121b7dc2249ebca358d2f8236bd", + "data": { + "inGameID": 38619 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38619, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c82d396f1a970d86a43cfe5a3a0cb8856cfd9b9a", + "data": { + "inGameID": 38619 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38619, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b3d0004702ce16bc25baf249c83edb8fcc882ff3", + "data": { + "inGameID": 38619 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38619, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8b00880c94f027e3bd3caaec77194bdf0b048106", + "data": { + "inGameID": 38620 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38620, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d07e2f52939379fcd0de202aeef155a8bbea0488", + "data": { + "inGameID": 38620 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38620, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "54e681146d858cc6080966f9bd77be347e10fdf7", + "data": { + "inGameID": 38620 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38620, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "83ce7c07320876130f968923cb6fbd1d7a696180", + "data": { + "inGameID": 38620 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38620, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "eb3dcbadc45e8a43f2cca97c584f4e618d8bceaf", + "data": { + "inGameID": 38620 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38620, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a9cb0c4dd2c2501ba8da96402121fea62d634be2", + "data": { + "inGameID": 38620 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38620, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "120037cb2ef4e4da5df7eb6b790db8de9011f869", + "data": { + "inGameID": 38620 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38620, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9b0cfe7b7916b3f660886152c5d47b05f70e3b73", + "data": { + "inGameID": 38621 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38621, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "de935f0451d686273e86c613b92206ddffe323a5", + "data": { + "inGameID": 38621 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38621, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f1c338e4feaa110b654ec2401675681d3f414329", + "data": { + "inGameID": 38621 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38621, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "56f52a3b55a2df28ce3654acfe06a71bbb778f6b", + "data": { + "inGameID": 38621 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38621, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "28d4b8e87c4ecbad1c24544f1d896f629526bf4a", + "data": { + "inGameID": 38621 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38621, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f1c2e94b16e25847119f0bf99c515537bfc961f8", + "data": { + "inGameID": 38621 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38621, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c79085449a8d4b5b1d94d2376de3dab7aa877b76", + "data": { + "inGameID": 38621 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38621, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e2b0d765f584d07fa88f00459e7914a4840d61c5", + "data": { + "inGameID": 38623 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38623, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7950b0ebae99f86e93ab03683ed9bc8126d9d84a", + "data": { + "inGameID": 38623 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38623, + "versions": [ + "konaste" + ] + }, + { + "chartID": "1f417ea877cc7cf375f8e9240f7cc97957553491", + "data": { + "inGameID": 38623 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38623, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5efaa925411ec4f8da68e887adcf66291e3a324d", + "data": { + "inGameID": 38623 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38623, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c1a266bdf59d3bac9847eceeac626e3c1cec4862", + "data": { + "inGameID": 38623 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38623, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3dc24732f6ee0790a34eac9c0908f111e4b5f1a2", + "data": { + "inGameID": 38623 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38623, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f0a7ba237c42f569ddd8b75b171240c5948299c", + "data": { + "inGameID": 38623 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38623, + "versions": [ + "konaste" + ] + }, + { + "chartID": "a9bdbc924fdf7fd596d69f2b39a5ff58cb687e07", + "data": { + "inGameID": 38623 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38623, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "076ac39dd7e8a44eb4d614efbeb473b1747de79d", + "data": { + "inGameID": 38623 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38623, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0918e35bc97070091083d1c5b7e197404592a3a9", + "data": { + "inGameID": 38624 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38624, + "versions": [ + "a3" + ] + }, + { + "chartID": "6f7c13c7a733cf2cfa87ab303f1702a9235a5646", + "data": { + "inGameID": 38624 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38624, + "versions": [ + "a3" + ] + }, + { + "chartID": "675d1b785bcace0ddb7d8dc4484db7221fa4db24", + "data": { + "inGameID": 38624 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38624, + "versions": [ + "a3" + ] + }, + { + "chartID": "4850be4180f057b6f436471b12acd9ec9f93030a", + "data": { + "inGameID": 38624 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38624, + "versions": [ + "a3" + ] + }, + { + "chartID": "1848156a948a163f1d2c468d8747b5a453cfd02a", + "data": { + "inGameID": 38624 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38624, + "versions": [ + "a3" + ] + }, + { + "chartID": "a21136925352b0c72a5b68c8341bb5e93150c8d6", + "data": { + "inGameID": 38624 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38624, + "versions": [ + "a3" + ] + }, + { + "chartID": "e629e51bb9d1fb67001424c21fb7461dc70e964b", + "data": { + "inGameID": 38624 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38624, + "versions": [ + "a3" + ] + }, + { + "chartID": "90f44010f1085d45153b736408b30434303f9ed1", + "data": { + "inGameID": 38625 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38625, + "versions": [ + "a3" + ] + }, + { + "chartID": "f52674b66fc078e3967406a490871fcdd6babb28", + "data": { + "inGameID": 38625 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38625, + "versions": [ + "a3" + ] + }, + { + "chartID": "2d962ef16162506f71ba893c154f7c43c66ac741", + "data": { + "inGameID": 38625 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38625, + "versions": [ + "a3" + ] + }, + { + "chartID": "b9686ad327e2e0a4f28f7b644c85eacdf7a8c46a", + "data": { + "inGameID": 38625 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38625, + "versions": [ + "a3" + ] + }, + { + "chartID": "cf2394f5a33c59d9e1891e2fdf9e8be6afea638c", + "data": { + "inGameID": 38625 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38625, + "versions": [ + "a3" + ] + }, + { + "chartID": "861b055375225efd2554f37af01be710c90e2e9b", + "data": { + "inGameID": 38625 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38625, + "versions": [ + "a3" + ] + }, + { + "chartID": "a5e070ec4505edb99fa616cad13115838c9f58f6", + "data": { + "inGameID": 38625 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38625, + "versions": [ + "a3" + ] + }, + { + "chartID": "97981d45ce0837e518dc40f2b2ae273edf9a7a87", + "data": { + "inGameID": 38625 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38625, + "versions": [ + "a3" + ] + }, + { + "chartID": "2713f67d1d3d0db72cc074bc87394a0a06bf93ed", + "data": { + "inGameID": 38625 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38625, + "versions": [ + "a3" + ] + }, + { + "chartID": "21995b7c7105bfa696317efcb6c159f15a8d9a1b", + "data": { + "inGameID": 38626 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38626, + "versions": [ + "a3" + ] + }, + { + "chartID": "6546a8c958f95ad87967b9fa1856ff939955aafc", + "data": { + "inGameID": 38626 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38626, + "versions": [ + "a3" + ] + }, + { + "chartID": "1a5aa46e41b115522178052f7b00ad15985a818b", + "data": { + "inGameID": 38626 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38626, + "versions": [ + "a3" + ] + }, + { + "chartID": "e25e3b6553218504e3373cde1a8abea31f9a57f5", + "data": { + "inGameID": 38626 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38626, + "versions": [ + "a3" + ] + }, + { + "chartID": "4b55b5a263cea6a2ea89cd7503297e58b5bf9c2f", + "data": { + "inGameID": 38626 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38626, + "versions": [ + "a3" + ] + }, + { + "chartID": "444fce16d37e1fccb0fd6edd51d9ada9f39b2e33", + "data": { + "inGameID": 38626 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38626, + "versions": [ + "a3" + ] + }, + { + "chartID": "a43a3dab0e4c52d9e0c73b793d566e1c3a1c711a", + "data": { + "inGameID": 38626 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38626, + "versions": [ + "a3" + ] + }, + { + "chartID": "d2f4fe5398e7eb1fa8568b8601021841f4524206", + "data": { + "inGameID": 38626 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38626, + "versions": [ + "a3" + ] + }, + { + "chartID": "a191975a2ab516ec86cb2ea95ed823f43b02d86e", + "data": { + "inGameID": 38626 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38626, + "versions": [ + "a3" + ] + }, + { + "chartID": "d46395a5037df19d28ef3f74b0d2c80dfe600b17", + "data": { + "inGameID": 38627 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38627, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "18c8e344332c6eb14641d8a8fc9e1ffce79edd48", + "data": { + "inGameID": 38627 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38627, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5587046f188fa28a731dfb6dfa9d6b7e95c2d20a", + "data": { + "inGameID": 38627 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38627, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6013868d4a30d2290a58c0bd02cedd0e61f46b93", + "data": { + "inGameID": 38627 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38627, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1a3fd8c6c2b7f3fa386b87eccc2328dbf37fc767", + "data": { + "inGameID": 38627 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38627, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d93d6f9674975f073e1e7f078fa6b43e48f0e02e", + "data": { + "inGameID": 38627 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38627, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a19d98b48d96c2f8ff36c00fc037209983748b84", + "data": { + "inGameID": 38627 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38627, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9b7141a044ac65cabf42c0cbf0feff39a30ebb26", + "data": { + "inGameID": 38627 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38627, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e26cedbe9bbb8fc70e01650d1309c15dce073b62", + "data": { + "inGameID": 38627 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38627, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "98abfb62bd1643fe3de5ebc53cb7e6bf3cb9dfa8", + "data": { + "inGameID": 38628 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38628, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6d2b5c509e46ddb59b854a65e402abfe8394af4f", + "data": { + "inGameID": 38628 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38628, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "663bbed47d361400bcae305abf1f462c2cdb4abe", + "data": { + "inGameID": 38628 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38628, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "79720158a608989f6ed48149e97cf3dcaa73f350", + "data": { + "inGameID": 38628 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38628, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dbb159f8307f04385456ee44a4322756d6f953ac", + "data": { + "inGameID": 38628 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38628, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b2c12f6616e5a4afb0e03eb842909f80bad6ec07", + "data": { + "inGameID": 38628 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38628, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fcc331c138a34770d701567e43cc8d66692608e1", + "data": { + "inGameID": 38628 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38628, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0623f2562b2298f1e4bb5396e1af4263c1aa1da1", + "data": { + "inGameID": 38632 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38632, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0f40877db06cb049f81abf50d1aae3180a51be42", + "data": { + "inGameID": 38632 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38632, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fb772e500eff80f364b15d3bdf786567d663975b", + "data": { + "inGameID": 38632 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38632, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3444264331f286a95c873f105a6871c6aec1134a", + "data": { + "inGameID": 38632 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38632, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "26585d4598171874c49f13a760870c9361879c94", + "data": { + "inGameID": 38632 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38632, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4f5b6bf81be8593171255d575b5c8daa624ac044", + "data": { + "inGameID": 38632 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38632, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2eb0aa99e9ba059465f2584abe7d8b3961731d58", + "data": { + "inGameID": 38632 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38632, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fcd6a923d3961c39b155cea61c1c9f49260989f1", + "data": { + "inGameID": 38633 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38633, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1535d836302b58b4a8a51083636973ce9aafa463", + "data": { + "inGameID": 38633 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38633, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bbea72bac9622080e0a0cd08415703f4ce0f1cd2", + "data": { + "inGameID": 38633 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38633, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "87fcdacd96b6afbab003cfa073fdfd34054adb3a", + "data": { + "inGameID": 38633 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38633, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dd61205645a829b8c5de751d0e0572128ec53cbd", + "data": { + "inGameID": 38633 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38633, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "84cd6fd5e58f87382e258cb485abb67d8199001b", + "data": { + "inGameID": 38633 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38633, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "598e846f3511c34f25ea4d57566b13fa4f20e4e2", + "data": { + "inGameID": 38633 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38633, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4b201504ae997c24a3d688e8a0c64b3feee6438a", + "data": { + "inGameID": 38634 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38634, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f1107519a0c2901216f0779026170191d33c81bc", + "data": { + "inGameID": 38634 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38634, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ac934b45ba7bbfff5091dcb61beca8957844db74", + "data": { + "inGameID": 38634 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38634, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cfc387a8700ad6eb1c4a8bb75f937859ba875d87", + "data": { + "inGameID": 38634 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38634, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dd6e8655b386261767472121c262c90723558e9e", + "data": { + "inGameID": 38634 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38634, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cdf8ba82832d1e159e3d78a18a86bc9d65746f8e", + "data": { + "inGameID": 38634 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38634, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "536e1b70208bb895b16df91551c8dd092dbe5925", + "data": { + "inGameID": 38634 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38634, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "66f6fa4b82a1145a6b649aa9e1b55d74f7bbbaa3", + "data": { + "inGameID": 38635 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38635, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "444d446cf3764cf70b7c7dedf01a25d0c8c8f8f4", + "data": { + "inGameID": 38635 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38635, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1056e4b86e4ab6bca6db9113fb3707332c8cf425", + "data": { + "inGameID": 38635 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38635, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9639922c9a50a6371620619d38c75af3aa44e8a1", + "data": { + "inGameID": 38635 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38635, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0f17064f3ed2f87af9a0fdc15062d42931aa1542", + "data": { + "inGameID": 38635 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38635, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b03b21b39d2de3977a9ce0975cbdd64ad3fa17ed", + "data": { + "inGameID": 38635 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38635, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "641df1626e35d8a564d15f05b91c776544b440ef", + "data": { + "inGameID": 38635 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38635, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "50c045745244c6f4ec493a26f78b2b0cfb811614", + "data": { + "inGameID": 38636 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38636, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2db2bf1c296d3462c8082b0a36ed6e4aeec71ff2", + "data": { + "inGameID": 38636 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38636, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "925b9a139b67334bc55b872d1036dfe8f764f1c4", + "data": { + "inGameID": 38636 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38636, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e9657497b6d3b92be53d960cd3c06ff2cfdc156e", + "data": { + "inGameID": 38636 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38636, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "496a7c8b1618e37556ca42b76a8a41d3ea202e80", + "data": { + "inGameID": 38636 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38636, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4b8339a503ffe0eae5ed207e762b934008f0560d", + "data": { + "inGameID": 38636 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38636, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "276a63b5c2a513b42630dee5f5f37f056b6be199", + "data": { + "inGameID": 38636 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38636, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0b14aaba7d93f033fbced7100f07125867500d5b", + "data": { + "inGameID": 38636 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38636, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "008c9cf16daa18a108893231d314a2c0ccfa35eb", + "data": { + "inGameID": 38636 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38636, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ed2081de4a2a2e3207c194c7ce97e042a8e391f6", + "data": { + "inGameID": 38637 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38637, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dc566cc6ccccc9e44ccfb1a8f4d7199f02ce8bdb", + "data": { + "inGameID": 38637 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38637, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ea8ea413fcfb816835e3ea11256619c40729b0ca", + "data": { + "inGameID": 38637 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38637, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f5dfe600568ab0bb6b52ba13078b673ebb2d2aa8", + "data": { + "inGameID": 38637 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38637, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f29b1197e1d53490b5d41e7fd0afe485fd3628d", + "data": { + "inGameID": 38637 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38637, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "753c27480501b407dec92a3247ab9b2f136621c7", + "data": { + "inGameID": 38637 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38637, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7600cd9fb98ed02bec5498ce19985a3137588e3c", + "data": { + "inGameID": 38637 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38637, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5f5991c8b960a97b555f5dbfa78b941af7aa363a", + "data": { + "inGameID": 38638 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38638, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a0c4de77863f788e1e12b2de1dc5aa7d7636359c", + "data": { + "inGameID": 38638 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38638, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f3885e6ec757cb9ccf1e8cc5aaf62c5c59c5b8b9", + "data": { + "inGameID": 38638 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38638, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "72714c482342917cfa90d7cd008f9b79f0e0e7a0", + "data": { + "inGameID": 38638 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38638, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f23f70b42e74d8a7e2dda3c09bc8b3e763d55a2c", + "data": { + "inGameID": 38638 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38638, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2784b7ed252f421e7eaf14f0eaedc1d3a0177003", + "data": { + "inGameID": 38638 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38638, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6fdd58eb4881e2ca03a4f24f15ee36b9a9b03050", + "data": { + "inGameID": 38638 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38638, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a28669f32eb6b12a23449254cfd8fa55bdb8b21d", + "data": { + "inGameID": 38639 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38639, + "versions": [ + "a3" + ] + }, + { + "chartID": "0a815769e2e8306ec8729c7d6dc0533786e4495c", + "data": { + "inGameID": 38639 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38639, + "versions": [ + "a3" + ] + }, + { + "chartID": "391871140b244dae36979bf57b5f395527359b9c", + "data": { + "inGameID": 38639 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38639, + "versions": [ + "a3" + ] + }, + { + "chartID": "d2348e6a3cda329f5ddae65bdce1222766ca5bbd", + "data": { + "inGameID": 38639 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38639, + "versions": [ + "a3" + ] + }, + { + "chartID": "40975916060e6f4516267ef05d577b4bae5846f9", + "data": { + "inGameID": 38639 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38639, + "versions": [ + "a3" + ] + }, + { + "chartID": "ec1956214665302462ed1ea35b95861c927e06fe", + "data": { + "inGameID": 38639 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38639, + "versions": [ + "a3" + ] + }, + { + "chartID": "e19281ac36bc6a73860b738b73716923b2b62e08", + "data": { + "inGameID": 38639 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38639, + "versions": [ + "a3" + ] + }, + { + "chartID": "fa66b2675599e90bc0f31d2e6f5ba77f92a6e003", + "data": { + "inGameID": 38639 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38639, + "versions": [ + "a3" + ] + }, + { + "chartID": "47491ddb2089c874d67cdcc9a6e0ec9b4bba81e5", + "data": { + "inGameID": 38639 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38639, + "versions": [ + "a3" + ] + }, + { + "chartID": "a3429acf29477adb4c1dfc1f7930831d8c7465e9", + "data": { + "inGameID": 38640 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38640, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8d2a1643a583238c3dc39106866635f4ca546add", + "data": { + "inGameID": 38640 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38640, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "44e047e73c734c0e9c5c01a423d86dde45d08ddc", + "data": { + "inGameID": 38640 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38640, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7d9b59bba6cf2cbd84123d0e21ac98f2eed0e2d4", + "data": { + "inGameID": 38640 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38640, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cd3fda55cf48bc76521997cd2ac3fa0596673c7e", + "data": { + "inGameID": 38640 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38640, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8140405a35f2a4bee967c675c9b10b1fb640f5a4", + "data": { + "inGameID": 38640 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38640, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "68f91d345b8a8b4eb5ccf9e389fc206b667611e1", + "data": { + "inGameID": 38640 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38640, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "214d0dd75bff1abaccf2b384ce1cc64eab16fa42", + "data": { + "inGameID": 38641 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38641, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a034f57f1d521bb2dd4ce79da9351cb444524a8d", + "data": { + "inGameID": 38641 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38641, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "63e3aa1aeadf4cd80db93509c62b209ee9f4a3fc", + "data": { + "inGameID": 38641 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38641, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ff709b2bc2c3cc2811ace528965b90a13977f4e3", + "data": { + "inGameID": 38641 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38641, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "20a63847a640bc15470e2cb3d2d952e23b344fe5", + "data": { + "inGameID": 38641 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38641, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ea0e0f4cc950bba85d680b62c84ca5f86a43c4bc", + "data": { + "inGameID": 38641 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38641, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9effc9bcf900d39f106474f7e22a5009a3180001", + "data": { + "inGameID": 38641 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38641, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e03231ab87b762aaf17ccc8b775098f9c28f63b4", + "data": { + "inGameID": 38643 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38643, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c57dd3e56404d6af1e352267f7d3909e8c683e5c", + "data": { + "inGameID": 38643 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38643, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1c345c460c5075c309de1f4be89747989cd6aa35", + "data": { + "inGameID": 38643 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38643, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ad3600f912dca65dfdec6924c4274d0d0529ad9b", + "data": { + "inGameID": 38643 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38643, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9e17f032b35ba6815e2c6c4e88a9e31372f3b4fe", + "data": { + "inGameID": 38643 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38643, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0f101ae3138e67a65e840f9394e19497e0ad4a4a", + "data": { + "inGameID": 38643 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38643, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "33988cf3f7db968f1b6474d13f22b6a531d42ff4", + "data": { + "inGameID": 38643 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38643, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "676a5dc4835bdc62d8f857d0d92156b56505f8e1", + "data": { + "inGameID": 38643 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38643, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "431fa51250977455f71e3e802da4621086d94391", + "data": { + "inGameID": 38643 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38643, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "965c094bf6e7728f869fa2ae286b1c10c72d523e", + "data": { + "inGameID": 38644 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38644, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "847c7ed302b340c1a59b384a1d58ac5a24f1e058", + "data": { + "inGameID": 38644 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38644, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7ce2f67f04b9e5a4d845da73a96971041b087ffb", + "data": { + "inGameID": 38644 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38644, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "725d60ce5a80806c360316c856835f46c5945c00", + "data": { + "inGameID": 38644 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38644, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5bed1ede52afc541b115f8eb710e76b2a97059e3", + "data": { + "inGameID": 38644 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38644, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dad4fe1301079aef1c41aa1f75f33c5a67e39fd4", + "data": { + "inGameID": 38644 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38644, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "23d9a18182bc2d9efb3cdb66b1523f4b77437db0", + "data": { + "inGameID": 38644 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38644, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "32846fa5e4f74eefbeb44788c3a09a76236da3fa", + "data": { + "inGameID": 38645 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38645, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c2b567b9fb554ff47bc93682beb9f8baf0076431", + "data": { + "inGameID": 38645 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38645, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e4ee361bdde4e0f857aa089cb12118e182f6173f", + "data": { + "inGameID": 38645 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38645, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "548985ab1107739628e8f188fc3c1ed18cd3b433", + "data": { + "inGameID": 38645 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38645, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9dab3a76562a570b71b984c8471d6924039649e1", + "data": { + "inGameID": 38645 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38645, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1b810ffa701fe694f4228114bbf9a02d2bacb8f1", + "data": { + "inGameID": 38645 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38645, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b508f85fedb808ce96a5b52f46bb574f3e964654", + "data": { + "inGameID": 38645 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38645, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bdc08b6649e4ff4075d08367167ecf783c3904bf", + "data": { + "inGameID": 38646 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38646, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b44363c17c61fa3e4f081dcdda27e8251a860376", + "data": { + "inGameID": 38646 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38646, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2255861c5a8242165664d9e135395c9989cbf4b8", + "data": { + "inGameID": 38646 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38646, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "52fae0d536d536b646a840e8e3e1d90113681631", + "data": { + "inGameID": 38646 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38646, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "6826d4dc1dab7094a6abc9b3ba5fd73b229bb698", + "data": { + "inGameID": 38646 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38646, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f8736781529da3f6c4d6785ebfd3a5f573e6eaae", + "data": { + "inGameID": 38646 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38646, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7e872e6a5adf5e03bc55f2201bf24cb6211a6f98", + "data": { + "inGameID": 38646 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38646, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8bdc453349a98d724b041820eb7a3090fa1c476a", + "data": { + "inGameID": 38647 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38647, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4cd77f529f8b46b44f2aa3e8d35ca62c7e661942", + "data": { + "inGameID": 38647 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38647, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "20540b47820826a01c0b2a88ef407ebb61294fd2", + "data": { + "inGameID": 38647 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38647, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "66543cf1bf94ace8e1bf710e3185b385a9ab6bf9", + "data": { + "inGameID": 38647 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38647, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "be4b7619625292040c951c412f3140f42da2e6f0", + "data": { + "inGameID": 38647 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38647, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dae08ac97e0a40fbf285b301bcf00c733dad2160", + "data": { + "inGameID": 38647 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38647, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7c9a4cca729bde7473f17f86874fde5b661d7c4a", + "data": { + "inGameID": 38647 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38647, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7856207e84084146a27360a2537f9280cb952b38", + "data": { + "inGameID": 38648 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38648, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "42abf6a39bc792d8687ed94a58ee1814d4620dc9", + "data": { + "inGameID": 38648 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38648, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ad17e8e2c7d97dda2937cd29557fe0458bf6bb59", + "data": { + "inGameID": 38648 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38648, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bab1cdc239e7c44dc39230a2e1296772295375f6", + "data": { + "inGameID": 38648 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38648, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "7dd7eba486da617091267fb952984f0b64f520ab", + "data": { + "inGameID": 38648 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38648, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5d7d6a441b89f1ac170b02a229146eb223c1c1d9", + "data": { + "inGameID": 38648 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38648, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2570e6d93112788d045db66eb0aadda45f1cad53", + "data": { + "inGameID": 38648 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38648, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2f2a325a88eb3d96b4f9e093c3a665a0708ee56f", + "data": { + "inGameID": 38649 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38649, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "677a1d357fdfbdc1ff2d01139663f3b879c30c18", + "data": { + "inGameID": 38649 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38649, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4ed3ea72a8e903b7bbdfe78ed06282b76a04de12", + "data": { + "inGameID": 38649 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38649, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "23b1cd2e53e9a2886fa395b8c51419cc88897aa5", + "data": { + "inGameID": 38649 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38649, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "69a644804238e83280b0d34a96ea0af09ae96616", + "data": { + "inGameID": 38649 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38649, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d82f4dddc656f1c7c521066fd5dffd1961995a5", + "data": { + "inGameID": 38649 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38649, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ba5f3606b5910a8e494f521faf4a5d9ee1ca0ffa", + "data": { + "inGameID": 38649 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38649, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5ecfabc84cc71a05101fe1c597e879376081a220", + "data": { + "inGameID": 38650 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38650, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8e25b94a76a4ad4e73e2469c5055c31e51ea7d5a", + "data": { + "inGameID": 38650 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38650, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "95262fd9090f2fb4b76190583d8172f932d9699b", + "data": { + "inGameID": 38650 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38650, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "76435b32306e04bce256621009391d2674d409da", + "data": { + "inGameID": 38650 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38650, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "492a5ed8d2fccdb9d958930999a7a115345cce4e", + "data": { + "inGameID": 38650 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38650, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2df62afc082780f26eede625437673385169ef2e", + "data": { + "inGameID": 38650 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38650, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d983eff2c35bfb1f139ef1f6c4874eef0c1c1263", + "data": { + "inGameID": 38650 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38650, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0bcbf971727a6ad35a72706207c020a5a274e200", + "data": { + "inGameID": 38650 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38650, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e22f6f368cc3b20eb6cc024075b426579bccbac4", + "data": { + "inGameID": 38650 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38650, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d06c9b5e6d9c56d96a53492481e25b40ee545380", + "data": { + "inGameID": 38651 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38651, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3d07f7195420e6bd027684ec7d11b6d499585ee3", + "data": { + "inGameID": 38651 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38651, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f381c7c75adef31fff2ed53e0b023f1cd79a31be", + "data": { + "inGameID": 38651 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38651, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "5b5b3fb1aad41b179acbdb2ee11d99a698c677e9", + "data": { + "inGameID": 38651 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38651, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9277c2f199dc191e0b8bf0985cfbfc864007aa10", + "data": { + "inGameID": 38651 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38651, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "a3e4bdaccec5cc08612825a15f937be79664fdec", + "data": { + "inGameID": 38651 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38651, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "cef36c4d37c1165559ce7cd1acf16f1ddb418909", + "data": { + "inGameID": 38651 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38651, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "bccf608b1bb98d0427651bfef95b4dcc5ec603d2", + "data": { + "inGameID": 38651 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38651, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e2bfccf1b65cdc1c9d53042a700d671f2551df8e", + "data": { + "inGameID": 38651 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38651, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "ba27aecd48e67486d5116d381d83f7e7badfb1de", + "data": { + "inGameID": 38652 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38652, + "versions": [ + "a3" + ] + }, + { + "chartID": "c712231e08ae17ecf6fd290c200093eb1e395e75", + "data": { + "inGameID": 38652 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38652, + "versions": [ + "a3" + ] + }, + { + "chartID": "069663ad5be166f46e294589cc233d03b418a0d6", + "data": { + "inGameID": 38652 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38652, + "versions": [ + "a3" + ] + }, + { + "chartID": "1a16ae877016ad1760442a51c641bda8ce207411", + "data": { + "inGameID": 38652 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38652, + "versions": [ + "a3" + ] + }, + { + "chartID": "885f07a6f34a0ed5ce565d87a49b9595401447c2", + "data": { + "inGameID": 38652 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38652, + "versions": [ + "a3" + ] + }, + { + "chartID": "ad096c9906ee977b14b61276cbcd4481c19df5f4", + "data": { + "inGameID": 38652 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38652, + "versions": [ + "a3" + ] + }, + { + "chartID": "3da5c84cc3c0a27a58c864992392486fda48c1cf", + "data": { + "inGameID": 38652 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38652, + "versions": [ + "a3" + ] + }, + { + "chartID": "3e2f36a60b6c759c4d7e38aa818057e73514b422", + "data": { + "inGameID": 38653 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38653, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d99ae63d57347faeee4aa9361eae860f46e7d0e4", + "data": { + "inGameID": 38653 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38653, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "767a915126ba0869e4ceaf968be0e472618b5c26", + "data": { + "inGameID": 38653 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38653, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d0e0253dc3784a509a93def5f02d05d876354240", + "data": { + "inGameID": 38653 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38653, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "fe3d09a27a87fa0eeefe1fbbeb3ab388d160e219", + "data": { + "inGameID": 38653 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38653, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "08484c5087f9088cc30d3419d3bdc43b6aa446a9", + "data": { + "inGameID": 38653 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38653, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d89561833157a449f54c662ddebff717b7bfee1e", + "data": { + "inGameID": 38653 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38653, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9dc3445f3d877572c6f7eb622e0829c4cfc203b3", + "data": { + "inGameID": 38654 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38654, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "42e53abec2ce7a5d8ca593f06a42617143eadee5", + "data": { + "inGameID": 38654 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38654, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "d4058a1fbac954c7a90791a88d2ae1a383371c17", + "data": { + "inGameID": 38654 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38654, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "575128db60743f4874b47b509044f68335f8782f", + "data": { + "inGameID": 38654 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38654, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "24988e4e638424388f5253f0516386fd0b004c77", + "data": { + "inGameID": 38654 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38654, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1fa3d649f6b81893ac93ea8d92eae464d8d6615c", + "data": { + "inGameID": 38654 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38654, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8af23a270a409949a20f796cb7dbb6261cdc5d29", + "data": { + "inGameID": 38654 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38654, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3aca5ed03d771d216a47f5e5e92e1246170a3fe1", + "data": { + "inGameID": 38655 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38655, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "493e2f6cf06251bd1bc24f5a5968e1362b4e5c7d", + "data": { + "inGameID": 38655 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38655, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9f9db31752cdaf3b81b7116ec6bd14397f8c3548", + "data": { + "inGameID": 38655 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38655, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "838a4f3fa34592a0083678dd7202315a61439e07", + "data": { + "inGameID": 38655 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38655, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "334b11e3570c9995fff72fba6255b651e31144f6", + "data": { + "inGameID": 38655 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38655, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dc6266d5e4a9ac334a0456b977545760032597b8", + "data": { + "inGameID": 38655 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38655, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "16b514ac30a79a835997c3a7d8bc5f65bae83142", + "data": { + "inGameID": 38655 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38655, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c2a2f4f804df167d4f0674469a629a870d55f83c", + "data": { + "inGameID": 38656 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38656, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "dae38c38add93909491808fcfbbc457eb355efe8", + "data": { + "inGameID": 38656 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38656, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "779e65f2735312b1b1638f3f7d9169972ff8b2b7", + "data": { + "inGameID": 38656 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38656, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f023c4e25f04916468073c7cef6bcbbe025633b8", + "data": { + "inGameID": 38656 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38656, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "29d8d5309e0c08de749114938442dc53f3349093", + "data": { + "inGameID": 38656 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38656, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8008a7b0f2128b46749c41473ad10a0143795e3b", + "data": { + "inGameID": 38656 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38656, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b742f5da70e1ac079a29af403b4ffbde676e3702", + "data": { + "inGameID": 38656 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38656, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "422e769d2d55fc75c672b7f148a89d2fe6d9b1eb", + "data": { + "inGameID": 38657 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38657, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "582a4cf21ea760cfdb556e924b8743983f4abf1a", + "data": { + "inGameID": 38657 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38657, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4c06f21181784103e30242b80c7be72c8c917e70", + "data": { + "inGameID": 38657 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38657, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "1f69f7faa9dbe7b8441b3c7974f49f2beab4ca8b", + "data": { + "inGameID": 38657 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38657, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "c3a3a091c4bd16f92b981d9a397b337e3cce7341", + "data": { + "inGameID": 38657 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38657, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "146ea69c90850b4e044feba719d094e769f01ff3", + "data": { + "inGameID": 38657 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38657, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e5cac6d4fc355d61f9ced98630d39cf97d0375d7", + "data": { + "inGameID": 38657 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38657, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b93c30ad626778df0e5565e87798c5c9f47e4c4e", + "data": { + "inGameID": 38658 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38658, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "9a831ddf9d211beb52034bfdafc34db99bd39a61", + "data": { + "inGameID": 38658 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38658, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b232af023e31fa5ed2d9ccbac6e1c73911a77e67", + "data": { + "inGameID": 38658 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38658, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "81650103a815b868839195cdaea92c2d0316a1ad", + "data": { + "inGameID": 38658 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38658, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8eece25188fee2277179aca3600a324f6fe23395", + "data": { + "inGameID": 38658 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38658, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e5f66c36656699f23569993b8c20c7d358220f68", + "data": { + "inGameID": 38658 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38658, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "df856195a747fb8bd98e00cd7df688059438fcd8", + "data": { + "inGameID": 38658 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38658, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "875b2cfb5994469af5055a7bc7d90cd56b338974", + "data": { + "inGameID": 38660 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38660, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f4de004bac4381659fe21bc95748670ea3e4ef17", + "data": { + "inGameID": 38660 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38660, + "versions": [ + "konaste" + ] + }, + { + "chartID": "917f28d5d44bba0b9a644fadc9a7ab6c33a6c82b", + "data": { + "inGameID": 38660 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38660, + "versions": [ + "konaste" + ] + }, + { + "chartID": "a37e97c6d703b865f0c092064417e8b6b4dfa29a", + "data": { + "inGameID": 38660 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38660, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f19ece3f5d6e2a8f0a795490e71a2b5274a06f6c", + "data": { + "inGameID": 38660 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38660, + "versions": [ + "konaste" + ] + }, + { + "chartID": "24afab5b4b5ecc60e4573a69f2d674de681dac76", + "data": { + "inGameID": 38660 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38660, + "versions": [ + "konaste" + ] + }, + { + "chartID": "4cf0386eee150b4a1dd6c23ba7a3af2b14af69ef", + "data": { + "inGameID": 38660 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38660, + "versions": [ + "konaste" + ] + }, + { + "chartID": "bf1444392a3465a0c580a260ceb2b36815c840c3", + "data": { + "inGameID": 38661 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38661, + "versions": [ + "konaste" + ] + }, + { + "chartID": "e5e6bb84590d7d3a623ed43b7530786035276d35", + "data": { + "inGameID": 38661 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38661, + "versions": [ + "konaste" + ] + }, + { + "chartID": "ca1eec18790b6ca10a1c734c61e9756083409561", + "data": { + "inGameID": 38661 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38661, + "versions": [ + "konaste" + ] + }, + { + "chartID": "89e1890ed0da7aebd7b23ac71814840b588fb855", + "data": { + "inGameID": 38661 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38661, + "versions": [ + "konaste" + ] + }, + { + "chartID": "9d11e7673bebd83547c95039cfaaf94314fce5d4", + "data": { + "inGameID": 38661 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38661, + "versions": [ + "konaste" + ] + }, + { + "chartID": "b4f271c383487a3b9f932c7f15550a7cc0887918", + "data": { + "inGameID": 38661 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38661, + "versions": [ + "konaste" + ] + }, + { + "chartID": "dc00e7953759d14a2e5ee8721938baed3016157d", + "data": { + "inGameID": 38661 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38661, + "versions": [ + "konaste" + ] + }, + { + "chartID": "bb87ce2eda24deb568bc27f013aca8c5cfc30ed3", + "data": { + "inGameID": 38662 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38662, + "versions": [ + "konaste" + ] + }, + { + "chartID": "dd5d1a64a1fcc352228a59e593af79f483bc651e", + "data": { + "inGameID": 38662 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38662, + "versions": [ + "konaste" + ] + }, + { + "chartID": "da2be3c861c37970499f26655706d70e7388a5a4", + "data": { + "inGameID": 38662 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38662, + "versions": [ + "konaste" + ] + }, + { + "chartID": "ce20e749e4b6453a6c0cddd337ee6f5cf5651982", + "data": { + "inGameID": 38662 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38662, + "versions": [ + "konaste" + ] + }, + { + "chartID": "586dc1ace8344f7e9c5ee3371484066d1b7a8ac0", + "data": { + "inGameID": 38662 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38662, + "versions": [ + "konaste" + ] + }, + { + "chartID": "c90cb7a13aa3ab264adfbabb76d3008e184e872f", + "data": { + "inGameID": 38662 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38662, + "versions": [ + "konaste" + ] + }, + { + "chartID": "728e977bf3390a2646e28836ed40624edfcc979a", + "data": { + "inGameID": 38662 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38662, + "versions": [ + "konaste" + ] + }, + { + "chartID": "1c12ef56fc7917d3e5d56e9be8fa9c7149a39dd7", + "data": { + "inGameID": 38663 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38663, + "versions": [ + "konaste" + ] + }, + { + "chartID": "98fc2f9b03bf16ba3f15c176023f8086773bf403", + "data": { + "inGameID": 38663 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38663, + "versions": [ + "konaste" + ] + }, + { + "chartID": "ec24b0aad216fe5682b2421c97e92eb78b8f3da9", + "data": { + "inGameID": 38663 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38663, + "versions": [ + "konaste" + ] + }, + { + "chartID": "c678e6ee7db7e344bedb033c271e8b6b1659c0ba", + "data": { + "inGameID": 38663 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38663, + "versions": [ + "konaste" + ] + }, + { + "chartID": "04bccf36b9459a4300c5a29d16d9d479ab111360", + "data": { + "inGameID": 38663 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38663, + "versions": [ + "konaste" + ] + }, + { + "chartID": "45e9648d3678833dd898417cc5e6169fe9362586", + "data": { + "inGameID": 38663 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38663, + "versions": [ + "konaste" + ] + }, + { + "chartID": "c0820c5df2555a2065e8ef7ae5abb407af5dafc9", + "data": { + "inGameID": 38663 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38663, + "versions": [ + "konaste" + ] + }, + { + "chartID": "2e465e96a308cbb2c772969b7495a3b00a0d025f", + "data": { + "inGameID": 38664 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38664, + "versions": [ + "konaste" + ] + }, + { + "chartID": "55f5742150f05fbbb79621c02aceba8fe36c745c", + "data": { + "inGameID": 38664 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38664, + "versions": [ + "konaste" + ] + }, + { + "chartID": "3a515d91770cda6a8f4bbeda2e0c22347186a0dc", + "data": { + "inGameID": 38664 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38664, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f1a1c8c28e530dd3194368fd4084f1f1af59a6e2", + "data": { + "inGameID": 38664 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38664, + "versions": [ + "konaste" + ] + }, + { + "chartID": "a94b1d67576a9c18fdf05576ff03a7f708a82728", + "data": { + "inGameID": 38664 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38664, + "versions": [ + "konaste" + ] + }, + { + "chartID": "bc1bbd4ffaed0dbfed2f94ca5e058b094be7e5f6", + "data": { + "inGameID": 38664 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38664, + "versions": [ + "konaste" + ] + }, + { + "chartID": "985634e96fdf4e1724afe3c06c410611275d7fd7", + "data": { + "inGameID": 38664 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38664, + "versions": [ + "konaste" + ] + }, + { + "chartID": "00ed5a769116dac5056266835eaba5e157888c13", + "data": { + "inGameID": 38665 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38665, + "versions": [ + "konaste" + ] + }, + { + "chartID": "adc6f819203c57130ea83307fa8f67f9cf3ecb7d", + "data": { + "inGameID": 38665 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38665, + "versions": [ + "konaste" + ] + }, + { + "chartID": "9a5a01d2e730d37fd07e6f71bda0e69e7e2fd82a", + "data": { + "inGameID": 38665 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38665, + "versions": [ + "konaste" + ] + }, + { + "chartID": "ea60c9e9e39ed14a1fb7323309dc27b035afe818", + "data": { + "inGameID": 38665 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38665, + "versions": [ + "konaste" + ] + }, + { + "chartID": "ee95db822463554e37c08a59ea369df30fffc733", + "data": { + "inGameID": 38665 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38665, + "versions": [ + "konaste" + ] + }, + { + "chartID": "60b392399212a36baf21ac93a4d569f31c988e24", + "data": { + "inGameID": 38665 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38665, + "versions": [ + "konaste" + ] + }, + { + "chartID": "8518c475ae3b6da98bc87ef133db3f8caa28286f", + "data": { + "inGameID": 38665 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38665, + "versions": [ + "konaste" + ] + }, + { + "chartID": "794d20af916f53206d98d2bad7d9a19ada82c91b", + "data": { + "inGameID": 38665 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38665, + "versions": [ + "konaste" + ] + }, + { + "chartID": "2ea8b7e3ed4ba07c57ad9e44a547563b13cafbef", + "data": { + "inGameID": 38665 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38665, + "versions": [ + "konaste" + ] + }, + { + "chartID": "7109e6327bd09660c668cd4ccca98bd555f34bf5", + "data": { + "inGameID": 38666 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38666, + "versions": [ + "konaste" + ] + }, + { + "chartID": "a15645fc4889eeab8595b668b29354dae1bd4797", + "data": { + "inGameID": 38666 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38666, + "versions": [ + "konaste" + ] + }, + { + "chartID": "965d7c8b930f6363abdf06cec119ccd6f4593d24", + "data": { + "inGameID": 38666 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38666, + "versions": [ + "konaste" + ] + }, + { + "chartID": "8c8d29ade73f2c8cee83db0b2a0e9c1f8d4133ce", + "data": { + "inGameID": 38666 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38666, + "versions": [ + "konaste" + ] + }, + { + "chartID": "fb6c70ff960d9d6e909277f49c6cb6c9e94d2201", + "data": { + "inGameID": 38666 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38666, + "versions": [ + "konaste" + ] + }, + { + "chartID": "b1443740db4498560ee5f7b3e868d6ec101a4e5f", + "data": { + "inGameID": 38666 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38666, + "versions": [ + "konaste" + ] + }, + { + "chartID": "844fc76cd30d71ba0d449a4a4287e7a84a21e15d", + "data": { + "inGameID": 38666 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38666, + "versions": [ + "konaste" + ] + }, + { + "chartID": "4d2c4645475180dfafd08d7a82dc02e34a612520", + "data": { + "inGameID": 38667 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38667, + "versions": [ + "konaste" + ] + }, + { + "chartID": "a26b4cf088d36a7cd67e3aedada17f784c391670", + "data": { + "inGameID": 38667 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38667, + "versions": [ + "konaste" + ] + }, + { + "chartID": "adadc1162188fef8e9ed97912e29658486def131", + "data": { + "inGameID": 38667 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38667, + "versions": [ + "konaste" + ] + }, + { + "chartID": "d2deadd0f6075497f3a2114ff24ada8ff83c8864", + "data": { + "inGameID": 38667 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38667, + "versions": [ + "konaste" + ] + }, + { + "chartID": "8a07f5196d73bd488f07039e53d8053ff0e9175b", + "data": { + "inGameID": 38667 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38667, + "versions": [ + "konaste" + ] + }, + { + "chartID": "c94cf4ab6d396e2f41b736e4938b1f332ddb2a56", + "data": { + "inGameID": 38667 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38667, + "versions": [ + "konaste" + ] + }, + { + "chartID": "fa00fbacfa7b4e58fd01dbf95f14ddd56fda9606", + "data": { + "inGameID": 38667 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38667, + "versions": [ + "konaste" + ] + }, + { + "chartID": "ade75273863687a4c5f7ac796636f21ff8b9c42e", + "data": { + "inGameID": 38668 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38668, + "versions": [ + "konaste" + ] + }, + { + "chartID": "15d12668909206fefb32aaa41d48b67b2e3a1941", + "data": { + "inGameID": 38668 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38668, + "versions": [ + "konaste" + ] + }, + { + "chartID": "b142100e6a8e97dda5de09e96daf84977ea77b71", + "data": { + "inGameID": 38668 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38668, + "versions": [ + "konaste" + ] + }, + { + "chartID": "9490accc3c8a51006fed5ae02a77ee2725cd5d89", + "data": { + "inGameID": 38668 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38668, + "versions": [ + "konaste" + ] + }, + { + "chartID": "edd4bd49d497fd04bea142da41dc479c31a47d01", + "data": { + "inGameID": 38668 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38668, + "versions": [ + "konaste" + ] + }, + { + "chartID": "0f3a2848361cb80546d91693ec9e123d36f5b33b", + "data": { + "inGameID": 38668 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38668, + "versions": [ + "konaste" + ] + }, + { + "chartID": "b648fde4eafa1f9dbb247d0d186b3f6ce8ce17d8", + "data": { + "inGameID": 38668 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38668, + "versions": [ + "konaste" + ] + }, + { + "chartID": "4cd0b524e75aaae79476c894feaf16ad2122cf03", + "data": { + "inGameID": 38670 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38670, + "versions": [ + "konaste" + ] + }, + { + "chartID": "692bce4495667cf987b12632785cd1762a77b3e9", + "data": { + "inGameID": 38670 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38670, + "versions": [ + "konaste" + ] + }, + { + "chartID": "814a68dcb0cc73f6ec7ed97fe9cde984237efb90", + "data": { + "inGameID": 38670 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38670, + "versions": [ + "konaste" + ] + }, + { + "chartID": "0a2804b81e25c0c4b8cbc594ef54deea5e078c0c", + "data": { + "inGameID": 38670 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38670, + "versions": [ + "konaste" + ] + }, + { + "chartID": "58134c16fa8af83630e00005fd3842028f7e7f5d", + "data": { + "inGameID": 38670 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38670, + "versions": [ + "konaste" + ] + }, + { + "chartID": "cdb32422e5fd549ca46d3d5a78e08a88c5540af3", + "data": { + "inGameID": 38670 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38670, + "versions": [ + "konaste" + ] + }, + { + "chartID": "cdb2b43c54d8553ad63168e033324fe094eed2cb", + "data": { + "inGameID": 38670 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38670, + "versions": [ + "konaste" + ] + }, + { + "chartID": "9c6537a0fc46bf9a63d509ae28ec5e48689b1eeb", + "data": { + "inGameID": 38671 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38671, + "versions": [ + "konaste" + ] + }, + { + "chartID": "d264b71c1932932c87641963c1af0536ae066c45", + "data": { + "inGameID": 38671 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38671, + "versions": [ + "konaste" + ] + }, + { + "chartID": "65c7ad13cefbbff7ccfbfb1e3178274e53dbe47f", + "data": { + "inGameID": 38671 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38671, + "versions": [ + "konaste" + ] + }, + { + "chartID": "55b676622a5bd3cb0f3c3c538e2312fc8c20a1a2", + "data": { + "inGameID": 38671 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38671, + "versions": [ + "konaste" + ] + }, + { + "chartID": "043a5b01cd0a8188d7c03542a44350fa8bdb47a5", + "data": { + "inGameID": 38671 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38671, + "versions": [ + "konaste" + ] + }, + { + "chartID": "a2ceed183adfc7f6a354dcb83f03dcde25e20a1b", + "data": { + "inGameID": 38671 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38671, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f58acb42550d0bd4fce0f682f29ff255735d2798", + "data": { + "inGameID": 38671 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38671, + "versions": [ + "konaste" + ] + }, + { + "chartID": "9b6bab776ddc4f15946f6b367e25816ed55e90e1", + "data": { + "inGameID": 38672 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38672, + "versions": [ + "konaste" + ] + }, + { + "chartID": "83b12590de74673a6c28b919f39777fa97b52faf", + "data": { + "inGameID": 38672 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38672, + "versions": [ + "konaste" + ] + }, + { + "chartID": "9b7de84b49b624c83bf12922bfc0b6699c86fe8b", + "data": { + "inGameID": 38672 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38672, + "versions": [ + "konaste" + ] + }, + { + "chartID": "41bd0973e428140144b274b03a6639ff562fb75f", + "data": { + "inGameID": 38672 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38672, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f278a62fa3bbe92128e41eec0340c53422be5652", + "data": { + "inGameID": 38672 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38672, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f2b1949211a2d30162d59ef2aa61438496856ea1", + "data": { + "inGameID": 38672 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38672, + "versions": [ + "konaste" + ] + }, + { + "chartID": "8f29e396c7f166972f4db55653af2e525f8e766f", + "data": { + "inGameID": 38672 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38672, + "versions": [ + "konaste" + ] + }, + { + "chartID": "9030b4f2e73b908f98ffd209bb6ce8112742be4d", + "data": { + "inGameID": 38680 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38680, + "versions": [ + "konaste" + ] + }, + { + "chartID": "8d78d4f726d4e32af12e1fb73f0a9b9223e97ec1", + "data": { + "inGameID": 38680 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38680, + "versions": [ + "konaste" + ] + }, + { + "chartID": "fa37aa6ac6c9ffc7fc47bad267cd66a98b38a2b8", + "data": { + "inGameID": 38680 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38680, + "versions": [ + "konaste" + ] + }, + { + "chartID": "457672f92a92f67ae81cab5aeaac6a082ff009ac", + "data": { + "inGameID": 38680 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38680, + "versions": [ + "konaste" + ] + }, + { + "chartID": "8e2288cc2b75dda600cd2662ba08418a535b5cb8", + "data": { + "inGameID": 38680 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38680, + "versions": [ + "konaste" + ] + }, + { + "chartID": "c8548c1a51996bf90feedf48054d4b80a9890b9f", + "data": { + "inGameID": 38680 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38680, + "versions": [ + "konaste" + ] + }, + { + "chartID": "ea7b8d0b587d74b9230a6dc71a9e0a3b3f028e5e", + "data": { + "inGameID": 38680 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38680, + "versions": [ + "konaste" + ] + }, + { + "chartID": "3e96cb27bb57135e5a51ed9eb7fbe1d067879b26", + "data": { + "inGameID": 38688 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38688, + "versions": [ + "konaste" + ] + }, + { + "chartID": "b8c05ed7fb6d031ebc538d2cdf6aa57e376ff0b3", + "data": { + "inGameID": 38688 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38688, + "versions": [ + "konaste" + ] + }, + { + "chartID": "e035f6221393c665656f908d6427d17e35180173", + "data": { + "inGameID": 38688 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38688, + "versions": [ + "konaste" + ] + }, + { + "chartID": "c7d88d43d6769b2edf55c5f6f9d7cf532349d448", + "data": { + "inGameID": 38688 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38688, + "versions": [ + "konaste" + ] + }, + { + "chartID": "e0fc6e50ca97d4579e2c6c5a23c54e81bb3dde1f", + "data": { + "inGameID": 38688 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38688, + "versions": [ + "konaste" + ] + }, + { + "chartID": "fc4bb58dfcf8471d23e48573dd8270e170662456", + "data": { + "inGameID": 38688 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38688, + "versions": [ + "konaste" + ] + }, + { + "chartID": "b3a6c00c9a14d80de1a196394446d1139f7c855b", + "data": { + "inGameID": 38688 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38688, + "versions": [ + "konaste" + ] + }, + { + "chartID": "15842441943194db8674f5e384ad70ab86846364", + "data": { + "inGameID": 38691 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38691, + "versions": [ + "konaste" + ] + }, + { + "chartID": "7cf891fe2a75f775954f2d48013d49a67535f746", + "data": { + "inGameID": 38691 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38691, + "versions": [ + "konaste" + ] + }, + { + "chartID": "97525ee69aaa06f2fd3983c1dc3f4b9b287e2d60", + "data": { + "inGameID": 38691 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38691, + "versions": [ + "konaste" + ] + }, + { + "chartID": "0865a5a083c0761f6fa42517f49533f36cdaf9ff", + "data": { + "inGameID": 38691 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38691, + "versions": [ + "konaste" + ] + }, + { + "chartID": "d200a774bd6ba65c09f80d5e2cfb01462aa129ec", + "data": { + "inGameID": 38691 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38691, + "versions": [ + "konaste" + ] + }, + { + "chartID": "ec0792b6762dd30b74ab58a2fe50e230f847e75f", + "data": { + "inGameID": 38691 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38691, + "versions": [ + "konaste" + ] + }, + { + "chartID": "27815baaec7de70ca1e77b5ff80d45c5a47cc160", + "data": { + "inGameID": 38691 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38691, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f872fc3ed0010e520376fcbdf3a79f195e1daf99", + "data": { + "inGameID": 38692 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38692, + "versions": [ + "konaste" + ] + }, + { + "chartID": "44ed51c8ab0718f9878e3ed85622fb78e6234a7e", + "data": { + "inGameID": 38692 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38692, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f65d51405016563e849988f01c119abcc1428cbd", + "data": { + "inGameID": 38692 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38692, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f85d0a5d4baa0f800dc6db3ebc9bef673f13b330", + "data": { + "inGameID": 38692 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38692, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f6b58a50fd5c366d2af68370e4b3363bc4dd8796", + "data": { + "inGameID": 38692 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38692, + "versions": [ + "konaste" + ] + }, + { + "chartID": "bbdd46a4107e7e38234bc11253edabae254661cc", + "data": { + "inGameID": 38692 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38692, + "versions": [ + "konaste" + ] + }, + { + "chartID": "678624453e223beed9a3276b181f10e4b2acf899", + "data": { + "inGameID": 38692 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38692, + "versions": [ + "konaste" + ] + }, + { + "chartID": "fee50543cab853ea872a1203a0868ebad6c978de", + "data": { + "inGameID": 38693 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38693, + "versions": [ + "konaste" + ] + }, + { + "chartID": "1a775dad6f0d92748eada01bba4445d4d21e2a89", + "data": { + "inGameID": 38693 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38693, + "versions": [ + "konaste" + ] + }, + { + "chartID": "3008c25115fdd7e3b80429a6616df2f56e5d33ce", + "data": { + "inGameID": 38693 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38693, + "versions": [ + "konaste" + ] + }, + { + "chartID": "c8bc976ce3f133efc5401df5dafa301c939e5e5f", + "data": { + "inGameID": 38693 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38693, + "versions": [ + "konaste" + ] + }, + { + "chartID": "549237fcbff4af8f5c36267ec76b80f75a68490f", + "data": { + "inGameID": 38693 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38693, + "versions": [ + "konaste" + ] + }, + { + "chartID": "ea317a2d03a50e1d92be38d1436cb1ec189dc366", + "data": { + "inGameID": 38693 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38693, + "versions": [ + "konaste" + ] + }, + { + "chartID": "75ed0e554de7b168534ff8dca49fae2081ca5ef8", + "data": { + "inGameID": 38693 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38693, + "versions": [ + "konaste" + ] + }, + { + "chartID": "9e2b12ac538d0b217a5bdc3bdd3c568a8a9f4c58", + "data": { + "inGameID": 38694 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38694, + "versions": [ + "konaste" + ] + }, + { + "chartID": "ffd8c7d3c4b9ec216c1de38a5e04fc70471de657", + "data": { + "inGameID": 38694 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38694, + "versions": [ + "konaste" + ] + }, + { + "chartID": "69fd261c3a1659b6cc8f2fdcfa638fd5ee158539", + "data": { + "inGameID": 38694 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38694, + "versions": [ + "konaste" + ] + }, + { + "chartID": "452a52ece08faaaa7c4d2b5228dea1e7c92edcf8", + "data": { + "inGameID": 38694 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38694, + "versions": [ + "konaste" + ] + }, + { + "chartID": "055003a7f2aae5b9cfb8b3830263d10e6e6203f8", + "data": { + "inGameID": 38694 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38694, + "versions": [ + "konaste" + ] + }, + { + "chartID": "aa19b04e31c1deaba2b0a94a8a8d336df68f24ec", + "data": { + "inGameID": 38694 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38694, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f63630172ca498818bf91315bbac8efc33aa9831", + "data": { + "inGameID": 38694 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38694, + "versions": [ + "konaste" + ] + }, + { + "chartID": "bed05369faf8bd64084a9869b6e96fa1d9ee00e7", + "data": { + "inGameID": 38695 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38695, + "versions": [ + "konaste" + ] + }, + { + "chartID": "79c3b75f08cd2bc0aa6472ed5ff59855fa6fe0ce", + "data": { + "inGameID": 38695 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38695, + "versions": [ + "konaste" + ] + }, + { + "chartID": "d5a43154d9823e3332afbbcc8efe73cd98ba4a82", + "data": { + "inGameID": 38695 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38695, + "versions": [ + "konaste" + ] + }, + { + "chartID": "2c778047c4050a47893366122423aaf1e36c5278", + "data": { + "inGameID": 38695 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38695, + "versions": [ + "konaste" + ] + }, + { + "chartID": "393fab8c4640191c24ffdbcc87d3943da0769aae", + "data": { + "inGameID": 38695 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38695, + "versions": [ + "konaste" + ] + }, + { + "chartID": "86e5869f25aab1e7b5ef9eb9cbb919b74ed53ff1", + "data": { + "inGameID": 38695 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38695, + "versions": [ + "konaste" + ] + }, + { + "chartID": "d2b73af1881839353abee9273e3b46c63f6a09b2", + "data": { + "inGameID": 38695 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38695, + "versions": [ + "konaste" + ] + }, + { + "chartID": "a19f756bd3f228f2c7f6c0b0eeb5c422edf682e5", + "data": { + "inGameID": 38701 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38701, + "versions": [ + "a3" + ] + }, + { + "chartID": "1ed6ad92b9eebc5666ff7d8e01187869f1b938eb", + "data": { + "inGameID": 38701 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38701, + "versions": [ + "a3" + ] + }, + { + "chartID": "9e4dd37760763bcd2b162124c9d3147bc51d2706", + "data": { + "inGameID": 38701 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38701, + "versions": [ + "a3" + ] + }, + { + "chartID": "086b60b3d49eb1936d8f74c9933bc8c1393caf4f", + "data": { + "inGameID": 38701 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38701, + "versions": [ + "a3" + ] + }, + { + "chartID": "25baf1a26e5783a35fac8e10b39f59924a5a43b3", + "data": { + "inGameID": 38701 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38701, + "versions": [ + "a3" + ] + }, + { + "chartID": "c22f912afaeb34f7dbd3ca993dd94556162cab5e", + "data": { + "inGameID": 38701 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38701, + "versions": [ + "a3" + ] + }, + { + "chartID": "63d4659fc61dc1a91e93a455e167711c4c075d75", + "data": { + "inGameID": 38701 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38701, + "versions": [ + "a3" + ] + }, + { + "chartID": "c2b34a00e6db213efbbae0a0ea4c7944f04b807b", + "data": { + "inGameID": 38702 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38702, + "versions": [ + "a3" + ] + }, + { + "chartID": "d9f6581cc4f5b579c90e4a9eb35d820991d9cf8d", + "data": { + "inGameID": 38702 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38702, + "versions": [ + "a3" + ] + }, + { + "chartID": "41a90bafeed85ca409fb61dec7ce9ed2f10b0d64", + "data": { + "inGameID": 38702 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38702, + "versions": [ + "a3" + ] + }, + { + "chartID": "ab987c6355847a230a779eb8820970b55597b97a", + "data": { + "inGameID": 38702 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38702, + "versions": [ + "a3" + ] + }, + { + "chartID": "1677415d29f5e4f7a0df9b095c2746594177c58c", + "data": { + "inGameID": 38702 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38702, + "versions": [ + "a3" + ] + }, + { + "chartID": "28dd048904c47bfac89a4668cb1856854cef9147", + "data": { + "inGameID": 38702 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38702, + "versions": [ + "a3" + ] + }, + { + "chartID": "c72f7ea51cf8b7b18fc63099564878341903e113", + "data": { + "inGameID": 38702 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38702, + "versions": [ + "a3" + ] + }, + { + "chartID": "d9e6832ee5f6d77c1388978441f965c5030be83a", + "data": { + "inGameID": 38703 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38703, + "versions": [ + "a3" + ] + }, + { + "chartID": "46c6018571dc2e95d4816176a1c0b067520b7289", + "data": { + "inGameID": 38703 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38703, + "versions": [ + "a3" + ] + }, + { + "chartID": "e36115edc6e375b07d45a05d3123781b67c6af0f", + "data": { + "inGameID": 38703 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38703, + "versions": [ + "a3" + ] + }, + { + "chartID": "3f47e23cf7ac85070583877e38a47be4b0a135c8", + "data": { + "inGameID": 38703 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38703, + "versions": [ + "a3" + ] + }, + { + "chartID": "da99424f8c74c32aebbdbae9ee5d741cc23c4e40", + "data": { + "inGameID": 38703 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38703, + "versions": [ + "a3" + ] + }, + { + "chartID": "f11c2c1fc7e55b1e80545dc8e6336fde7b7a9645", + "data": { + "inGameID": 38703 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38703, + "versions": [ + "a3" + ] + }, + { + "chartID": "cfa7e69656b333241454baae04ca28f56c396a08", + "data": { + "inGameID": 38703 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38703, + "versions": [ + "a3" + ] + }, + { + "chartID": "81ba0c8d1a0d38beb9750ccbff93b6c022b0d01e", + "data": { + "inGameID": 38708 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38708, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "32e911e2038e76ff23e2ad31364ba8a0d97f603e", + "data": { + "inGameID": 38708 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38708, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0c53177b5e1c5bd25b7fe6de38c36df9bb698710", + "data": { + "inGameID": 38708 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38708, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "46024a29184b98d9ce0b6354b52efa808ad1ed27", + "data": { + "inGameID": 38708 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38708, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f72296bac5e62e9a6c10ca9bba6efb0d908fb856", + "data": { + "inGameID": 38708 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38708, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "2ed28d3fa8725aff0016b21c33c31f1af6e87d68", + "data": { + "inGameID": 38708 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38708, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "8035dfeaa30a0d43578ee92c0567714f37b93c47", + "data": { + "inGameID": 38708 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38708, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f76d8506909902fbc5cbfcc49ae541988f18a055", + "data": { + "inGameID": 38710 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38710, + "versions": [ + "konaste" + ] + }, + { + "chartID": "b0b812fcc2cff493689db438358f2fa4b89b832d", + "data": { + "inGameID": 38710 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38710, + "versions": [ + "konaste" + ] + }, + { + "chartID": "b43cf722b9d8a255846fa6d1ebeed6ec300850fc", + "data": { + "inGameID": 38710 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38710, + "versions": [ + "konaste" + ] + }, + { + "chartID": "6666adbc94beb22650f17c422dcce8ac79b96d51", + "data": { + "inGameID": 38710 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38710, + "versions": [ + "konaste" + ] + }, + { + "chartID": "510be24986998a8cd4b9be732260f47187fefa62", + "data": { + "inGameID": 38710 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38710, + "versions": [ + "konaste" + ] + }, + { + "chartID": "bf331ebe272b2884ec526a9cc8865cb05e1737ab", + "data": { + "inGameID": 38710 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38710, + "versions": [ + "konaste" + ] + }, + { + "chartID": "4c3e8316bd4679130028741543291c3bf11e5f51", + "data": { + "inGameID": 38710 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38710, + "versions": [ + "konaste" + ] + }, + { + "chartID": "eba8fb41a18c5ee9b9cc0864b829ce4e784a2599", + "data": { + "inGameID": 38711 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38711, + "versions": [ + "konaste" + ] + }, + { + "chartID": "d974612657692b6d87f0592cc0013841bc39f9fa", + "data": { + "inGameID": 38711 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38711, + "versions": [ + "konaste" + ] + }, + { + "chartID": "b94774ee904d40cabe7f996eadb1989706787f06", + "data": { + "inGameID": 38711 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38711, + "versions": [ + "konaste" + ] + }, + { + "chartID": "6db96b25492426a07a5579f809440101c4d55d91", + "data": { + "inGameID": 38711 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38711, + "versions": [ + "konaste" + ] + }, + { + "chartID": "4787938db08fb3f695d23f90724e100ef16d425b", + "data": { + "inGameID": 38711 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38711, + "versions": [ + "konaste" + ] + }, + { + "chartID": "30a81d48ed55099158cbb0a41e48e164fa20e67c", + "data": { + "inGameID": 38711 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38711, + "versions": [ + "konaste" + ] + }, + { + "chartID": "b1d088f2152c02365c80384b0763e7374f4ae937", + "data": { + "inGameID": 38711 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38711, + "versions": [ + "konaste" + ] + }, + { + "chartID": "0dbd20b4a1786e81c07fc519de9f64b379d41e94", + "data": { + "inGameID": 38712 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38712, + "versions": [ + "konaste" + ] + }, + { + "chartID": "d9f99db0f17dc4859d9b0e508149ad3ccb858ea1", + "data": { + "inGameID": 38712 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38712, + "versions": [ + "konaste" + ] + }, + { + "chartID": "d6a6338e23b5cfebbe39c387e257edea3684d6f3", + "data": { + "inGameID": 38712 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38712, + "versions": [ + "konaste" + ] + }, + { + "chartID": "3cc2e40a78915545ee991a0bc6c430fe41a56a72", + "data": { + "inGameID": 38712 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38712, + "versions": [ + "konaste" + ] + }, + { + "chartID": "ad86b5ea3a57b07c647be27d546cb46652dbf5ef", + "data": { + "inGameID": 38712 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38712, + "versions": [ + "konaste" + ] + }, + { + "chartID": "e8bf69bca35430f81628251c01087b12deb5629d", + "data": { + "inGameID": 38712 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38712, + "versions": [ + "konaste" + ] + }, + { + "chartID": "6c6134f9f42cbe05990bfb1f7b44de991c369910", + "data": { + "inGameID": 38712 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38712, + "versions": [ + "konaste" + ] + }, + { + "chartID": "ba115539a7a6536f875606b9c7ab1ff63b2a70d4", + "data": { + "inGameID": 38713 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38713, + "versions": [ + "konaste" + ] + }, + { + "chartID": "6c071444e2237ee2524ba077646434cb78a6668d", + "data": { + "inGameID": 38713 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38713, + "versions": [ + "konaste" + ] + }, + { + "chartID": "beeaea186ca3fe11d53a777e9a8aceb3e92c05e0", + "data": { + "inGameID": 38713 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38713, + "versions": [ + "konaste" + ] + }, + { + "chartID": "c3d66c38c4ef47e720de2d167f58912a41396ca0", + "data": { + "inGameID": 38713 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38713, + "versions": [ + "konaste" + ] + }, + { + "chartID": "a5d8ca47e97ba526b4ebb6d28173908a92025f05", + "data": { + "inGameID": 38713 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38713, + "versions": [ + "konaste" + ] + }, + { + "chartID": "a36647e07c8141242e3e1a07b7889a75220fc97b", + "data": { + "inGameID": 38713 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38713, + "versions": [ + "konaste" + ] + }, + { + "chartID": "a361ab7862a46aad3c479d2bd654709d0f0e10a5", + "data": { + "inGameID": 38713 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38713, + "versions": [ + "konaste" + ] + }, + { + "chartID": "28e1bc3a7c5d888eb2e31fd5f266719b316e25e9", + "data": { + "inGameID": 38714 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "DP", + "songID": 38714, + "versions": [ + "konaste" + ] + }, + { + "chartID": "190c20661833968826becec893e3d59d17a85413", + "data": { + "inGameID": 38714 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38714, + "versions": [ + "konaste" + ] + }, + { + "chartID": "3aee281157ed4d215e7047560e2d61cd2aecbd1f", + "data": { + "inGameID": 38714 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38714, + "versions": [ + "konaste" + ] + }, + { + "chartID": "df7c741382b894b060f92365d7b9f8cc82e62df0", + "data": { + "inGameID": 38714 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38714, + "versions": [ + "konaste" + ] + }, + { + "chartID": "2be661fcc0bde5d50841b668ca266413102a3c11", + "data": { + "inGameID": 38714 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "SP", + "songID": 38714, + "versions": [ + "konaste" + ] + }, + { + "chartID": "6fd55622596ef4c147e7b2405369da1f7008ca39", + "data": { + "inGameID": 38714 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38714, + "versions": [ + "konaste" + ] + }, + { + "chartID": "2c2cbfa252d978b839186a9acdbff2c0a58c6d9e", + "data": { + "inGameID": 38714 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38714, + "versions": [ + "konaste" + ] + }, + { + "chartID": "5dbb8fed7fb08215fc8b419e6078a9101628f729", + "data": { + "inGameID": 38715 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38715, + "versions": [ + "konaste" + ] + }, + { + "chartID": "cc618ee92739d725ea92be27d6f750106531c86f", + "data": { + "inGameID": 38715 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38715, + "versions": [ + "konaste" + ] + }, + { + "chartID": "e5655f5f68dd929ef357a0b351d12a1875149d3c", + "data": { + "inGameID": 38715 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38715, + "versions": [ + "konaste" + ] + }, + { + "chartID": "a90a77a514c096f5a1717e3ac1d88ebf6632e20a", + "data": { + "inGameID": 38715 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38715, + "versions": [ + "konaste" + ] + }, + { + "chartID": "68299e3d8754428e99c8e74247c61bf2c2337895", + "data": { + "inGameID": 38715 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38715, + "versions": [ + "konaste" + ] + }, + { + "chartID": "ff790b36e0e83048a0865420a22c9ea81756dd1c", + "data": { + "inGameID": 38715 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "SP", + "songID": 38715, + "versions": [ + "konaste" + ] + }, + { + "chartID": "446182813eb06dea3983db19f10f1294ad2ed761", + "data": { + "inGameID": 38715 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38715, + "versions": [ + "konaste" + ] + }, + { + "chartID": "7fc598190a7aabc97cd7848c022e8a9e889f1247", + "data": { + "inGameID": 38715 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38715, + "versions": [ + "konaste" + ] + }, + { + "chartID": "ea80348bf79160ad3d0e8319dd75cb13b7db8603", + "data": { + "inGameID": 38715 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38715, + "versions": [ + "konaste" + ] + }, + { + "chartID": "58d796e1442d6b955d454d8eebb64b76e7068d0d", + "data": { + "inGameID": 38716 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38716, + "versions": [ + "konaste" + ] + }, + { + "chartID": "e428e2b56fe94d615cbeb2238b40e9183ac4fd89", + "data": { + "inGameID": 38716 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38716, + "versions": [ + "konaste" + ] + }, + { + "chartID": "b6d427d0786fba2033705dea39fac90c35168a3e", + "data": { + "inGameID": 38716 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38716, + "versions": [ + "konaste" + ] + }, + { + "chartID": "85486fe7e603fa891abe801cd62cc616972a4f2d", + "data": { + "inGameID": 38716 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38716, + "versions": [ + "konaste" + ] + }, + { + "chartID": "452e0a885ecce805b8996cf775a0582ad63d2fc8", + "data": { + "inGameID": 38716 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38716, + "versions": [ + "konaste" + ] + }, + { + "chartID": "d00069683bfc5e647ddd66b6a41127df4329d69f", + "data": { + "inGameID": 38716 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38716, + "versions": [ + "konaste" + ] + }, + { + "chartID": "fe49be231512962c299b082906e3434473dbc7b9", + "data": { + "inGameID": 38716 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38716, + "versions": [ + "konaste" + ] + }, + { + "chartID": "3d6452b55f48b2b6228751ecb48e87f4605eee28", + "data": { + "inGameID": 38717 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38717, + "versions": [ + "konaste" + ] + }, + { + "chartID": "79b4b2ac93cc2e9f2f95062d8ac63c33444e7d02", + "data": { + "inGameID": 38717 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "DP", + "songID": 38717, + "versions": [ + "konaste" + ] + }, + { + "chartID": "83a783187d467333f818ab3aee6d5f363fd961a3", + "data": { + "inGameID": 38717 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38717, + "versions": [ + "konaste" + ] + }, + { + "chartID": "5fea67db5e5c904fa21fe477be124a7fc294e047", + "data": { + "inGameID": 38717 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38717, + "versions": [ + "konaste" + ] + }, + { + "chartID": "1e66970f4229b4b5a487e0c0f57c6a5c86255e9e", + "data": { + "inGameID": 38717 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38717, + "versions": [ + "konaste" + ] + }, + { + "chartID": "c92a21894e159aa9599acabed007f789d9f258ac", + "data": { + "inGameID": 38717 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38717, + "versions": [ + "konaste" + ] + }, + { + "chartID": "5cde4f5a5e8ae23e0686b55f627eb9d09a92338f", + "data": { + "inGameID": 38717 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "18", + "levelNum": 18, + "playtype": "SP", + "songID": 38717, + "versions": [ + "konaste" + ] + }, + { + "chartID": "487623e93fe3f8ca6eed43fa9a05904b09b35556", + "data": { + "inGameID": 38717 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38717, + "versions": [ + "konaste" + ] + }, + { + "chartID": "88183db36f61852aecbcc7901fb755135ca28dd3", + "data": { + "inGameID": 38717 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38717, + "versions": [ + "konaste" + ] + }, + { + "chartID": "2b23a48aec93406b63b292983a7de3c00af43609", + "data": { + "inGameID": 38718 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38718, + "versions": [ + "konaste" + ] + }, + { + "chartID": "8a6fe7be14e9ffc17249bd0f6f8638a8803b82ad", + "data": { + "inGameID": 38718 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38718, + "versions": [ + "konaste" + ] + }, + { + "chartID": "0ba912a81b5fa1970002ea44930c8c5783475c15", + "data": { + "inGameID": 38718 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38718, + "versions": [ + "konaste" + ] + }, + { + "chartID": "c2fc160a4cd8ab02e53578be75db0a50837b1b74", + "data": { + "inGameID": 38718 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38718, + "versions": [ + "konaste" + ] + }, + { + "chartID": "c08cef4fc57c543ef3860e59c40ac44a2ed51777", + "data": { + "inGameID": 38718 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38718, + "versions": [ + "konaste" + ] + }, + { + "chartID": "6664fcb61930a24f5b0e5e00db3003781dbbeced", + "data": { + "inGameID": 38718 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38718, + "versions": [ + "konaste" + ] + }, + { + "chartID": "aab78b3a78b6c032e2aa27569f618f9dd04a7e62", + "data": { + "inGameID": 38718 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38718, + "versions": [ + "konaste" + ] + }, + { + "chartID": "9be96d32bdca1737e66634fa4ab8e80cb3c53924", + "data": { + "inGameID": 38719 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38719, + "versions": [ + "konaste" + ] + }, + { + "chartID": "a46d251e1a2b10327ebd287a020004fe8a8449c2", + "data": { + "inGameID": 38719 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38719, + "versions": [ + "konaste" + ] + }, + { + "chartID": "8869b3e6f6d12e962b4972297d30f87d696bbbb7", + "data": { + "inGameID": 38719 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38719, + "versions": [ + "konaste" + ] + }, + { + "chartID": "c77996961ec559e35895e09d413e9774c7392129", + "data": { + "inGameID": 38719 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38719, + "versions": [ + "konaste" + ] + }, + { + "chartID": "b5e76a60b5ed8384e8b11af90e0030a968462fd1", + "data": { + "inGameID": 38719 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38719, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f4eb56cb9ff0857ee3ca611f579a254005146838", + "data": { + "inGameID": 38719 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38719, + "versions": [ + "konaste" + ] + }, + { + "chartID": "c595d4182705c7aef80201514b7610d5340c49fe", + "data": { + "inGameID": 38719 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38719, + "versions": [ + "konaste" + ] + }, + { + "chartID": "8471f23090849a43bc35c6a26fd54e2aa521a5d7", + "data": { + "inGameID": 38720 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38720, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "e38d29ceb89dfbe7477219d9aa297ac86b36801a", + "data": { + "inGameID": 38720 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38720, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "f0a054134a41cead9dd8cc5e64aa0d5c8b054752", + "data": { + "inGameID": 38720 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38720, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "4a5fb281b33d5eefb50e9aacab1e34dfafb87a56", + "data": { + "inGameID": 38720 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38720, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "081e8cba10648f14a787a5d0ddb6bae0db2a93aa", + "data": { + "inGameID": 38720 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38720, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "0411156f81bf6b2946f549c6e08ff2506d8e0b0f", + "data": { + "inGameID": 38720 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38720, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "b53608d5229814a3ce4f679a5e73f1719b6fb745", + "data": { + "inGameID": 38720 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38720, + "versions": [ + "a3", + "konaste" + ] + }, + { + "chartID": "3c31019c81b216faadcca8de2a1355eb5052f53a", + "data": { + "inGameID": 38727 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38727, + "versions": [ + "konaste" + ] + }, + { + "chartID": "803e36f9c0fa4ca1cdf91c912de7854ee1003fdb", + "data": { + "inGameID": 38727 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38727, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f74cf4279a2f42ea99585806670e03e0202aa715", + "data": { + "inGameID": 38727 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "DP", + "songID": 38727, + "versions": [ + "konaste" + ] + }, + { + "chartID": "1936df66572eb0b9ba80fa89946f3b162ca030ef", + "data": { + "inGameID": 38727 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38727, + "versions": [ + "konaste" + ] + }, + { + "chartID": "1bedc9d692e69669ee15b0fc0fbc7891e161c5df", + "data": { + "inGameID": 38727 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38727, + "versions": [ + "konaste" + ] + }, + { + "chartID": "fd08c22b97f84463e59f6b96bdfe3dd0f9b4ac8c", + "data": { + "inGameID": 38727 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38727, + "versions": [ + "konaste" + ] + }, + { + "chartID": "b2040c56ad3d9d51c7800f0a37fef06b440fd4a1", + "data": { + "inGameID": 38727 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "14", + "levelNum": 14, + "playtype": "SP", + "songID": 38727, + "versions": [ + "konaste" + ] + }, + { + "chartID": "299dace4c6706436131fb235628b0a0a9cf5a785", + "data": { + "inGameID": 38728 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "DP", + "songID": 38728, + "versions": [ + "konaste" + ] + }, + { + "chartID": "09fbb45cd3c39dffe0ea87ffc2645d37f3d85979", + "data": { + "inGameID": 38728 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38728, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f9eb1847ca24fd1bc75d7cb601b1535b3e8d6a2d", + "data": { + "inGameID": 38728 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38728, + "versions": [ + "konaste" + ] + }, + { + "chartID": "28f9161fb83e00e64a2675e8d54fec6c2a721a95", + "data": { + "inGameID": 38728 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "SP", + "songID": 38728, + "versions": [ + "konaste" + ] + }, + { + "chartID": "870d4d13bbb299c5169005b5aa868ae6d3821f7a", + "data": { + "inGameID": 38728 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38728, + "versions": [ + "konaste" + ] + }, + { + "chartID": "d5b7b85e0d547f859f615ade9f62acd7c4b551f4", + "data": { + "inGameID": 38728 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38728, + "versions": [ + "konaste" + ] + }, + { + "chartID": "df5ad2f188675db1fe03c69b404b62ec97e5f460", + "data": { + "inGameID": 38728 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38728, + "versions": [ + "konaste" + ] + }, + { + "chartID": "0ab346a7871eb36d88665800c55fbd45c25f732d", + "data": { + "inGameID": 38733 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38733, + "versions": [ + "konaste" + ] + }, + { + "chartID": "50bf7e379256950429dfc4879809beb9fd41889e", + "data": { + "inGameID": 38733 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38733, + "versions": [ + "konaste" + ] + }, + { + "chartID": "987d50ceadfe5c13bc900f4b1a83054b04150014", + "data": { + "inGameID": 38733 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38733, + "versions": [ + "konaste" + ] + }, + { + "chartID": "86f737f8e69996f19813b9b5736520a69795783a", + "data": { + "inGameID": 38733 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38733, + "versions": [ + "konaste" + ] + }, + { + "chartID": "1c298922f2aa503792f2eca9b3bf395640c382e7", + "data": { + "inGameID": 38733 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38733, + "versions": [ + "konaste" + ] + }, + { + "chartID": "308e42a172b00acb05e37072c10e6bef7ca2f6cd", + "data": { + "inGameID": 38733 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38733, + "versions": [ + "konaste" + ] + }, + { + "chartID": "fa6d51922e23f469a396dc55bfde69911e5b6c9d", + "data": { + "inGameID": 38733 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38733, + "versions": [ + "konaste" + ] + }, + { + "chartID": "d903b0c9c76556f792ae69d42f7f2abc1fd694bc", + "data": { + "inGameID": 38735 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38735, + "versions": [ + "konaste" + ] + }, + { + "chartID": "9666b5d336ce6c2f1931cf92733c42d3b49bd64d", + "data": { + "inGameID": 38735 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "DP", + "songID": 38735, + "versions": [ + "konaste" + ] + }, + { + "chartID": "69f713d7e9927078e379f98f811dba5a02ab1fe2", + "data": { + "inGameID": 38735 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38735, + "versions": [ + "konaste" + ] + }, + { + "chartID": "983221d536a8847e07502c8b0df8fe558e5737c9", + "data": { + "inGameID": 38735 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38735, + "versions": [ + "konaste" + ] + }, + { + "chartID": "cb42f3831db175d58e33a8836d69e9cac46d35d2", + "data": { + "inGameID": 38735 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38735, + "versions": [ + "konaste" + ] + }, + { + "chartID": "5529bb1316810781014e54fb64f261ff01f627b6", + "data": { + "inGameID": 38735 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "SP", + "songID": 38735, + "versions": [ + "konaste" + ] + }, + { + "chartID": "c85a65c5ddb16d337cbded3d79cbc1e97583eebf", + "data": { + "inGameID": 38735 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38735, + "versions": [ + "konaste" + ] + }, + { + "chartID": "749f0c9bcaad8dd089e6942160fa834d045433d7", + "data": { + "inGameID": 38736 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38736, + "versions": [ + "konaste" + ] + }, + { + "chartID": "4ad3c4e41a38fc021cfb3b322d76f805bdf44922", + "data": { + "inGameID": 38736 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38736, + "versions": [ + "konaste" + ] + }, + { + "chartID": "14b8fe4b4580642fd38b850d94d5c9bf46683320", + "data": { + "inGameID": 38736 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38736, + "versions": [ + "konaste" + ] + }, + { + "chartID": "399cff5081bd3d14de01c4c881d6cfc402cb55fd", + "data": { + "inGameID": 38736 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38736, + "versions": [ + "konaste" + ] + }, + { + "chartID": "4984b3a7787c5bd035de6481b1a6fede1b8ff873", + "data": { + "inGameID": 38736 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38736, + "versions": [ + "konaste" + ] + }, + { + "chartID": "7c7c643c526293929231ae4752ceeb5ffc4650b5", + "data": { + "inGameID": 38736 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38736, + "versions": [ + "konaste" + ] + }, + { + "chartID": "d92f798314256bb1ab3c284eb2bb16e30f3bb0f0", + "data": { + "inGameID": 38736 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38736, + "versions": [ + "konaste" + ] + }, + { + "chartID": "93c2961a4ad09339570480134814aa1cadf3ab9a", + "data": { + "inGameID": 38737 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "DP", + "songID": 38737, + "versions": [ + "konaste" + ] + }, + { + "chartID": "c71f9492161c6ee938577f86380fb98e8472eca4", + "data": { + "inGameID": 38737 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "DP", + "songID": 38737, + "versions": [ + "konaste" + ] + }, + { + "chartID": "ae6b89cd960a8c57af6c9cc651261fc60a3eb332", + "data": { + "inGameID": 38737 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "DP", + "songID": 38737, + "versions": [ + "konaste" + ] + }, + { + "chartID": "02149e4ebd98d084bc8f8a23d28bf589d675f4ec", + "data": { + "inGameID": 38737 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "DP", + "songID": 38737, + "versions": [ + "konaste" + ] + }, + { + "chartID": "e83b609ba87921840f91428aac3206643793eba2", + "data": { + "inGameID": 38737 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "SP", + "songID": 38737, + "versions": [ + "konaste" + ] + }, + { + "chartID": "3468631c3f52d01a7546eb88ca28aa6729120725", + "data": { + "inGameID": 38737 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38737, + "versions": [ + "konaste" + ] + }, + { + "chartID": "ae913a4beb8608bf72683c13acc17863100a3c7e", + "data": { + "inGameID": 38737 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "16", + "levelNum": 16, + "playtype": "SP", + "songID": 38737, + "versions": [ + "konaste" + ] + }, + { + "chartID": "7b0d3195397577a07c5bdc5104a66daad3dc45ba", + "data": { + "inGameID": 38737 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "SP", + "songID": 38737, + "versions": [ + "konaste" + ] + }, + { + "chartID": "44c2a812d5880dd371b656386ad61c5cf1eca0f7", + "data": { + "inGameID": 38737 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "13", + "levelNum": 13, + "playtype": "SP", + "songID": 38737, + "versions": [ + "konaste" + ] + }, + { + "chartID": "fcf96e540983bed53a7e8c4f1cae68a8260cd60a", + "data": { + "inGameID": 38738 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38738, + "versions": [ + "konaste" + ] + }, + { + "chartID": "be302e6d62ea79e2be15a7965e76a57e8de4dc5e", + "data": { + "inGameID": 38738 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "DP", + "songID": 38738, + "versions": [ + "konaste" + ] + }, + { + "chartID": "e8117de406917c4f9700325c26aa7ad6780b8697", + "data": { + "inGameID": 38738 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "DP", + "songID": 38738, + "versions": [ + "konaste" + ] + }, + { + "chartID": "c138e6f5fe4fe6ce18b4ab17ebe7914b5989a220", + "data": { + "inGameID": 38738 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38738, + "versions": [ + "konaste" + ] + }, + { + "chartID": "7279dbee49980bbf4671f26beede16ec2a041c8f", + "data": { + "inGameID": 38738 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38738, + "versions": [ + "konaste" + ] + }, + { + "chartID": "fe97086edb6e5abf197ae411d93d91a15787be19", + "data": { + "inGameID": 38738 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "SP", + "songID": 38738, + "versions": [ + "konaste" + ] + }, + { + "chartID": "10387a5c68d263d93a987fbf34b2a154d387aaa8", + "data": { + "inGameID": 38738 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "17", + "levelNum": 17, + "playtype": "SP", + "songID": 38738, + "versions": [ + "konaste" + ] + }, + { + "chartID": "babeff6bcfd5dc64d3b63db54429cf6a27034c04", + "data": { + "inGameID": 38738 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "SP", + "songID": 38738, + "versions": [ + "konaste" + ] + }, + { + "chartID": "d91c3776e3adecb3f121e75bbb4fb28977815bcc", + "data": { + "inGameID": 38738 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38738, + "versions": [ + "konaste" + ] + }, + { + "chartID": "8b9faf0c529d3de3086fbfaf5626be069f8ce21e", + "data": { + "inGameID": 38739 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "DP", + "songID": 38739, + "versions": [ + "konaste" + ] + }, + { + "chartID": "23edfbe4718657fbca3c600991319be637feb0d2", + "data": { + "inGameID": 38739 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "DP", + "songID": 38739, + "versions": [ + "konaste" + ] + }, + { + "chartID": "8ea7967d63fae5b5204adc9ac48fe56f62f1bbce", + "data": { + "inGameID": 38739 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "DP", + "songID": 38739, + "versions": [ + "konaste" + ] + }, + { + "chartID": "af83c1fc4db84a605290fe051b06554983e5c016", + "data": { + "inGameID": 38739 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "DP", + "songID": 38739, + "versions": [ + "konaste" + ] + }, + { + "chartID": "5628ce58b1432a001854a3900327ac3e9a321f0d", + "data": { + "inGameID": 38739 + }, + "difficulty": "BASIC", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "SP", + "songID": 38739, + "versions": [ + "konaste" + ] + }, + { + "chartID": "f12a3374ff96ccae1eea1138e7e1db9a51a88b02", + "data": { + "inGameID": 38739 + }, + "difficulty": "BEGINNER", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "SP", + "songID": 38739, + "versions": [ + "konaste" + ] + }, + { + "chartID": "e9c7fcb130e0ac9b17f9b9fe47432c00e8e7157c", + "data": { + "inGameID": 38739 + }, + "difficulty": "CHALLENGE", + "isPrimary": true, + "level": "15", + "levelNum": 15, + "playtype": "SP", + "songID": 38739, + "versions": [ + "konaste" + ] + }, + { + "chartID": "3a7f2c5990b63155e27d94fca52c9828351708a9", + "data": { + "inGameID": 38739 + }, + "difficulty": "DIFFICULT", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "SP", + "songID": 38739, + "versions": [ + "konaste" + ] + }, + { + "chartID": "fede842af9523ad35fcc5cd99feb9202dccfb256", + "data": { + "inGameID": 38739 + }, + "difficulty": "EXPERT", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "SP", + "songID": 38739, + "versions": [ + "konaste" + ] + } +] \ No newline at end of file diff --git a/database-seeds/collections/folders.json b/database-seeds/collections/folders.json index c02d38651..2ff9dd0f5 100644 --- a/database-seeds/collections/folders.json +++ b/database-seeds/collections/folders.json @@ -12337,6 +12337,652 @@ "title": "ULTIMA (SUN)", "type": "charts" }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "1", + "table": "Level " + } + } + }, + "folderID": "F0c09b0447497e6ce7016e593f26fb860526c47705e4823fe8e31079b8dc20814", + "game": "ddr", + "inactive": false, + "playtype": "DP", + "searchTerms": [], + "title": "Level 1", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "10", + "table": "Level " + } + } + }, + "folderID": "F0c9a877c6bedb79a8a49edfc353b1051f85752b57c91a2ae6d12bed0a3196417", + "game": "ddr", + "inactive": false, + "playtype": "DP", + "searchTerms": [], + "title": "Level 10", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "11", + "table": "Level " + } + } + }, + "folderID": "F520973c7d85f0d197862a897b1a81fc931080e185f6b098be2028ba22c492fc7", + "game": "ddr", + "inactive": false, + "playtype": "DP", + "searchTerms": [], + "title": "Level 11", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "12", + "table": "Level " + } + } + }, + "folderID": "Fc5acf2723ed0ae888f129be0b77d5414a6fab3420eb5e02d5eb3c08a3fa49741", + "game": "ddr", + "inactive": false, + "playtype": "DP", + "searchTerms": [], + "title": "Level 12", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "13", + "table": "Level " + } + } + }, + "folderID": "F80d3a7b581735e1b0c8f1669937fad455ec66b34f3c55457278f4cfd36b1c115", + "game": "ddr", + "inactive": false, + "playtype": "DP", + "searchTerms": [], + "title": "Level 13", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "14", + "table": "Level " + } + } + }, + "folderID": "Ff975e532c7589db66cc619384cf45ee1d9a14d775be4efd2c9253ba8630b13ed", + "game": "ddr", + "inactive": false, + "playtype": "DP", + "searchTerms": [], + "title": "Level 14", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "15", + "table": "Level " + } + } + }, + "folderID": "Fcdd639a6c30acc4703b98ba6ee87613229bfe726c0f5a3438ce913b52c68e537", + "game": "ddr", + "inactive": false, + "playtype": "DP", + "searchTerms": [], + "title": "Level 15", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "16", + "table": "Level " + } + } + }, + "folderID": "F408f16670afeff015eb0d8f1c149013a3cb2b29bd474bc676e5993ca25b312cd", + "game": "ddr", + "inactive": false, + "playtype": "DP", + "searchTerms": [], + "title": "Level 16", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "17", + "table": "Level " + } + } + }, + "folderID": "Fdde615d765569b32535711ef67fd85dde59c31999dda1f48176529f03b6e5de3", + "game": "ddr", + "inactive": false, + "playtype": "DP", + "searchTerms": [], + "title": "Level 17", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "18", + "table": "Level " + } + } + }, + "folderID": "F9934345ea33451bd21be4151a5ddc130aa735960e8bf9ff66a060e42819f3888", + "game": "ddr", + "inactive": false, + "playtype": "DP", + "searchTerms": [], + "title": "Level 18", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "19", + "table": "Level " + } + } + }, + "folderID": "Fc6d420869984a20cc8954cff43df46c49b0e2c06998b94e3226655bf13c75d3c", + "game": "ddr", + "inactive": false, + "playtype": "DP", + "searchTerms": [], + "title": "Level 19", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "2", + "table": "Level " + } + } + }, + "folderID": "F1e62ed269483936c348678b307c649bf674e0d3a3735d9635ed43dae79caa7c0", + "game": "ddr", + "inactive": false, + "playtype": "DP", + "searchTerms": [], + "title": "Level 2", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "3", + "table": "Level " + } + } + }, + "folderID": "F848646e7a6689964ef7ca99672e32d41560dd4e50b49a2247e800fbff1958323", + "game": "ddr", + "inactive": false, + "playtype": "DP", + "searchTerms": [], + "title": "Level 3", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "4", + "table": "Level " + } + } + }, + "folderID": "F83239573a4f29a9ac847425afba58cf41fc43bc74d415daf5826611936b59da2", + "game": "ddr", + "inactive": false, + "playtype": "DP", + "searchTerms": [], + "title": "Level 4", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "5", + "table": "Level " + } + } + }, + "folderID": "F37df248ab2f58f732f24940293c5e91c4aaf5e64344d5fb1cd192a9e4b0d8d45", + "game": "ddr", + "inactive": false, + "playtype": "DP", + "searchTerms": [], + "title": "Level 5", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "6", + "table": "Level " + } + } + }, + "folderID": "F1e794bc73e08cd2843130b7a9df76877941b3a4d2789ec76c2c3bab878c9f43d", + "game": "ddr", + "inactive": false, + "playtype": "DP", + "searchTerms": [], + "title": "Level 6", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "7", + "table": "Level " + } + } + }, + "folderID": "Fb59f8945c3d7b0eaa113c9899e9ae55d5a7ad7e157d374c0d9a74235287d4794", + "game": "ddr", + "inactive": false, + "playtype": "DP", + "searchTerms": [], + "title": "Level 7", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "8", + "table": "Level " + } + } + }, + "folderID": "F2463f6bc988f960f2b6e822187805a35b7c66412e9cfecf2ba0f81c2a9aacebc", + "game": "ddr", + "inactive": false, + "playtype": "DP", + "searchTerms": [], + "title": "Level 8", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "9", + "table": "Level " + } + } + }, + "folderID": "F5efd26d77d73dc52c934ff7e97b554de63e20ead805525069bc4993cf4d50ffb", + "game": "ddr", + "inactive": false, + "playtype": "DP", + "searchTerms": [], + "title": "Level 9", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "1", + "table": "Level " + } + } + }, + "folderID": "F298d0411534d7b38b7cbca14a43a1e4de71f30d73a5bdbb7f677b30fcc6e6cc2", + "game": "ddr", + "inactive": false, + "playtype": "SP", + "searchTerms": [], + "title": "Level 1", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "10", + "table": "Level " + } + } + }, + "folderID": "Ff99e411eb0e3dbaa2dab8e52dda4ef35ccc327c788140c10c2d2a286c55cdd46", + "game": "ddr", + "inactive": false, + "playtype": "SP", + "searchTerms": [], + "title": "Level 10", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "11", + "table": "Level " + } + } + }, + "folderID": "F5437f25765ead737606c7fd9042163a0063532c125fe17d9e77d113b7d1ac7ef", + "game": "ddr", + "inactive": false, + "playtype": "SP", + "searchTerms": [], + "title": "Level 11", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "12", + "table": "Level " + } + } + }, + "folderID": "F9ad83b2f07753c7fbebee715cbaddd0e444bf6c808e4b26fdb8fcd42a46bab92", + "game": "ddr", + "inactive": false, + "playtype": "SP", + "searchTerms": [], + "title": "Level 12", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "13", + "table": "Level " + } + } + }, + "folderID": "Fe80638cfba7c94e1dbf7c6a8e094ee1b771f886f9b083b5d9ed6d89fbe24290d", + "game": "ddr", + "inactive": false, + "playtype": "SP", + "searchTerms": [], + "title": "Level 13", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "14", + "table": "Level " + } + } + }, + "folderID": "F5a72b2268e14987eec04b9bd471740109354a683151443469ad44cada067fb12", + "game": "ddr", + "inactive": false, + "playtype": "SP", + "searchTerms": [], + "title": "Level 14", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "15", + "table": "Level " + } + } + }, + "folderID": "F8a04baa09fb2466d8f5c45d3223a4fd75dd2cff80b09dd3db87d54bee98ee49c", + "game": "ddr", + "inactive": false, + "playtype": "SP", + "searchTerms": [], + "title": "Level 15", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "16", + "table": "Level " + } + } + }, + "folderID": "F50bad5092469b33ef153acb28aa545a7f5cd0b6ff699ef5e6145667f4377508d", + "game": "ddr", + "inactive": false, + "playtype": "SP", + "searchTerms": [], + "title": "Level 16", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "17", + "table": "Level " + } + } + }, + "folderID": "F0d6274231e5060bb8f1b4f72f3e0b132825629bbc9a193b3fe8781aa10c628e3", + "game": "ddr", + "inactive": false, + "playtype": "SP", + "searchTerms": [], + "title": "Level 17", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "18", + "table": "Level " + } + } + }, + "folderID": "Ffb7d33d91fc0ab5c613dd200a51d595fca03d9252f5c10d0a55952c769aeae66", + "game": "ddr", + "inactive": false, + "playtype": "SP", + "searchTerms": [], + "title": "Level 18", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "19", + "table": "Level " + } + } + }, + "folderID": "F210ff4a4b62852c199717f07532d74371db48ac8922fec0496b8f97813d8c1c7", + "game": "ddr", + "inactive": false, + "playtype": "SP", + "searchTerms": [], + "title": "Level 19", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "2", + "table": "Level " + } + } + }, + "folderID": "F2f3c320dcb69a9810f88f1bef0ec357b6f25d1200dab5daea6c7d88b4021f0ea", + "game": "ddr", + "inactive": false, + "playtype": "SP", + "searchTerms": [], + "title": "Level 2", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "3", + "table": "Level " + } + } + }, + "folderID": "F0f6e04147a238bb365fa78d8b45d53f8fb7af3b2b0084c0e7630512c6fb28f94", + "game": "ddr", + "inactive": false, + "playtype": "SP", + "searchTerms": [], + "title": "Level 3", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "4", + "table": "Level " + } + } + }, + "folderID": "F374c59150d51b54d8096c9873095e4e425d615f35ed88bb03ff1f8c939dcf345", + "game": "ddr", + "inactive": false, + "playtype": "SP", + "searchTerms": [], + "title": "Level 4", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "5", + "table": "Level " + } + } + }, + "folderID": "F319b480a6607d528b8a630d5a08904c01b5d1357e5c80a23bab5e03cb2d8d6fa", + "game": "ddr", + "inactive": false, + "playtype": "SP", + "searchTerms": [], + "title": "Level 5", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "6", + "table": "Level " + } + } + }, + "folderID": "F8f4111b72204384257bfd6acd615dd50e28414348efc773a28073fed4165c71f", + "game": "ddr", + "inactive": false, + "playtype": "SP", + "searchTerms": [], + "title": "Level 6", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "7", + "table": "Level " + } + } + }, + "folderID": "F20ee236c6cb25263eac9af9c9d873b741499778995e3f6ca97a688410ee948b2", + "game": "ddr", + "inactive": false, + "playtype": "SP", + "searchTerms": [], + "title": "Level 7", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "8", + "table": "Level " + } + } + }, + "folderID": "F35e045b4f2b46bf783ff17ab67e2e834f36561cc7eb7ffeeba2a69e5538bcb01", + "game": "ddr", + "inactive": false, + "playtype": "SP", + "searchTerms": [], + "title": "Level 8", + "type": "charts" + }, + { + "data": { + "data¬tableFolders": { + "~elemMatch": { + "level": "9", + "table": "Level " + } + } + }, + "folderID": "F5379a63559ac7925560c02e98fc8a32c4a8210c989203cb8deaac01120c017b0", + "game": "ddr", + "inactive": false, + "playtype": "SP", + "searchTerms": [], + "title": "Level 9", + "type": "charts" + }, { "data": { "levelNum": { diff --git a/database-seeds/collections/songs-ddr.json b/database-seeds/collections/songs-ddr.json new file mode 100644 index 000000000..f6af19567 --- /dev/null +++ b/database-seeds/collections/songs-ddr.json @@ -0,0 +1,14258 @@ +[ + { + "altTitles": [], + "artist": "UZI-LAY", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 10 + }, + "id": 10, + "searchTerms": [], + "title": "PUT YOUR FAITH IN ME" + }, + { + "altTitles": [], + "artist": "NAOKI", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 11 + }, + "id": 11, + "searchTerms": [], + "title": "BRILLIANT 2U" + }, + { + "altTitles": [], + "artist": "UZI-LAY", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 12 + }, + "id": 12, + "searchTerms": [], + "title": "PUT YOUR FAITH IN ME (Jazzy Groove)" + }, + { + "altTitles": [], + "artist": "NAOKI", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 13 + }, + "id": 13, + "searchTerms": [], + "title": "BRILLIANT 2U(Orchestra Groove)" + }, + { + "altTitles": [], + "artist": "mitsu-O!", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 14 + }, + "id": 14, + "searchTerms": [], + "title": "MAKE IT BETTER" + }, + { + "altTitles": [], + "artist": "mitsu-O!SUMMER", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 15 + }, + "id": 15, + "searchTerms": [], + "title": "MAKE IT BETTER (So-REAL Mix)" + }, + { + "altTitles": [], + "artist": "KTz", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 25 + }, + "id": 25, + "searchTerms": [], + "title": "AM-3P" + }, + { + "altTitles": [], + "artist": "DE-SIRE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 26 + }, + "id": 26, + "searchTerms": [], + "title": "TRIP MACHINE" + }, + { + "altTitles": [], + "artist": "180", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 27 + }, + "id": 27, + "searchTerms": [], + "title": "PARANOiA" + }, + { + "altTitles": [], + "artist": "DE-SIRE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 28 + }, + "id": 28, + "searchTerms": [], + "title": "SP-TRIP MACHINE~JUNGLE MIX~" + }, + { + "altTitles": [], + "artist": "190", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 29 + }, + "id": 29, + "searchTerms": [], + "title": "PARANOiA MAX~DIRTY MIX~" + }, + { + "altTitles": [], + "artist": "U1", + "data": { + "flareCategory": "WHITE", + "inGameID": 41 + }, + "id": 41, + "searchTerms": [], + "title": "MAKE A JAM!" + }, + { + "altTitles": [], + "artist": "2MB", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 42 + }, + "id": 42, + "searchTerms": [], + "title": "PARANOiA KCET ~clean mix~" + }, + { + "altTitles": [], + "artist": "2MB", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 43 + }, + "id": 43, + "searchTerms": [], + "title": "TRIP MACHINE~luv mix~" + }, + { + "altTitles": [], + "artist": "Chang ma", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 44 + }, + "id": 44, + "searchTerms": [], + "title": "LOVE THIS FEELIN'" + }, + { + "altTitles": [], + "artist": "sAmi", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 45 + }, + "id": 45, + "searchTerms": [], + "title": "think ya better D" + }, + { + "altTitles": [], + "artist": "N.M.R", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 46 + }, + "id": 46, + "searchTerms": [], + "title": "KEEP ON MOVIN'" + }, + { + "altTitles": [], + "artist": "e.o.s", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 58 + }, + "id": 58, + "searchTerms": [], + "title": "e-motion" + }, + { + "altTitles": [], + "artist": "L.E.D.LIGHT", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 84 + }, + "id": 84, + "searchTerms": [], + "title": "GENOM SCREAMS" + }, + { + "altTitles": [], + "artist": "RE-VENGE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 124 + }, + "id": 124, + "searchTerms": [], + "title": "AFRONOVA" + }, + { + "altTitles": [], + "artist": "NAOKI", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 126 + }, + "id": 126, + "searchTerms": [], + "title": "DYNAMITE RAVE" + }, + { + "altTitles": [], + "artist": "N & S", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 127 + }, + "id": 127, + "searchTerms": [], + "title": "DEAD END" + }, + { + "altTitles": [], + "artist": "CAPTAIN.T", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 128 + }, + "id": 128, + "searchTerms": [], + "title": "La Señorita" + }, + { + "altTitles": [], + "artist": "THOMAS HOWARD", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 129 + }, + "id": 129, + "searchTerms": [], + "title": "Silent Hill" + }, + { + "altTitles": [], + "artist": "190'", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 130 + }, + "id": 130, + "searchTerms": [], + "title": "PARANOiA Rebirth" + }, + { + "altTitles": [], + "artist": "BIG-O feat. TAKA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 133 + }, + "id": 133, + "searchTerms": [], + "title": "GRADIUSIC CYBER ~AMD G5 MIX~" + }, + { + "altTitles": [], + "artist": "NPD3", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 137 + }, + "id": 137, + "searchTerms": [], + "title": "AFTER THE GAME OF LOVE" + }, + { + "altTitles": [], + "artist": "CLUB SPICE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 138 + }, + "id": 138, + "searchTerms": [], + "title": "CUTIE CHASER" + }, + { + "altTitles": [], + "artist": "Scotty D.", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 139 + }, + "id": 139, + "searchTerms": [], + "title": "DROP THE BOMB" + }, + { + "altTitles": [], + "artist": "2MB", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 140 + }, + "id": 140, + "searchTerms": [], + "title": "La Señorita Virtual" + }, + { + "altTitles": [], + "artist": "KTz(remixed by U1)", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 141 + }, + "id": 141, + "searchTerms": [], + "title": "AM-3P -303 BASS MIX-" + }, + { + "altTitles": [], + "artist": "NW260", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 154 + }, + "id": 154, + "searchTerms": [], + "title": "DROP OUT" + }, + { + "altTitles": [], + "artist": "NAOKI", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 155 + }, + "id": 155, + "searchTerms": [], + "title": "CAN'T STOP FALLIN' IN LOVE" + }, + { + "altTitles": [], + "artist": "FACTOR-X", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 156 + }, + "id": 156, + "searchTerms": [], + "title": "WILD RUSH" + }, + { + "altTitles": [], + "artist": "D.J.RICH feat. TAILBROS.", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 158 + }, + "id": 158, + "searchTerms": [], + "title": "SUPER STAR" + }, + { + "altTitles": [], + "artist": "NAOKI 190", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 159 + }, + "id": 159, + "searchTerms": [], + "title": "HYSTERIA" + }, + { + "altTitles": [], + "artist": "200", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 160 + }, + "id": 160, + "searchTerms": [], + "title": "PARANOIA EVOLUTION" + }, + { + "altTitles": [], + "artist": "DIVAS", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 182 + }, + "id": 182, + "searchTerms": [], + "title": "BABY BABY GIMME YOUR LOVE" + }, + { + "altTitles": [], + "artist": "DE-SIRE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 183 + }, + "id": 183, + "searchTerms": [], + "title": "TRIP MACHINE CLIMAX" + }, + { + "altTitles": [], + "artist": "NAOKI", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 184 + }, + "id": 184, + "searchTerms": [], + "title": "BURNIN' THE FLOOR" + }, + { + "altTitles": [], + "artist": "NM feat. SUNNY", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 185 + }, + "id": 185, + "searchTerms": [], + "title": "HIGHER" + }, + { + "altTitles": [], + "artist": "RE-VENGE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 186 + }, + "id": 186, + "searchTerms": [], + "title": "ORION.78(AMeuro-MIX)" + }, + { + "altTitles": [], + "artist": "NAOKI", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 187 + }, + "id": 187, + "searchTerms": [], + "title": "B4U" + }, + { + "altTitles": [], + "artist": "NAOKI feat. PAULA TERRY", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 188 + }, + "id": 188, + "searchTerms": [], + "title": "LOVE AGAIN TONIGHT~For Melissa MIX~" + }, + { + "altTitles": [], + "artist": "MITSU-O! with GEILA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 190 + }, + "id": 190, + "searchTerms": [], + "title": "MY SUMMER LOVE" + }, + { + "altTitles": [], + "artist": "dj TAKA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 195 + }, + "id": 195, + "searchTerms": [], + "title": "LEADING CYBER" + }, + { + "altTitles": [], + "artist": "dj TAKA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 196 + }, + "id": 196, + "searchTerms": [], + "title": "0.59" + }, + { + "altTitles": [], + "artist": "TaQ", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 197 + }, + "id": 197, + "searchTerms": [], + "title": "Holic" + }, + { + "altTitles": [], + "artist": "TaQ", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 198 + }, + "id": 198, + "searchTerms": [], + "title": "era (nostalmix)" + }, + { + "altTitles": [], + "artist": "Dr.VIBE feat. JP Miles", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 201 + }, + "id": 201, + "searchTerms": [], + "title": "Don't Stop!~AMD 2nd MIX~" + }, + { + "altTitles": [], + "artist": "2MB", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 213 + }, + "id": 213, + "searchTerms": [], + "title": "ORION.78~civilization mix~" + }, + { + "altTitles": [], + "artist": "N.M.R", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 221 + }, + "id": 221, + "searchTerms": [], + "title": "CELEBRATE NITE" + }, + { + "altTitles": [], + "artist": "Crystal Aliens", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 222 + }, + "id": 222, + "searchTerms": [], + "title": "SEXY PLANET" + }, + { + "altTitles": [], + "artist": "DE-SIRE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 233 + }, + "id": 233, + "searchTerms": [], + "title": "Healing Vision" + }, + { + "altTitles": [], + "artist": "NAOKI", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 234 + }, + "id": 234, + "searchTerms": [], + "title": "STILL IN MY HEART" + }, + { + "altTitles": [], + "artist": "d-complex", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 235 + }, + "id": 235, + "searchTerms": [], + "title": "ECSTASY" + }, + { + "altTitles": [], + "artist": "dj TAKA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 236 + }, + "id": 236, + "searchTerms": [], + "title": "ABSOLUTE" + }, + { + "altTitles": [], + "artist": "NAOKI feat. PAULA TERRY", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 237 + }, + "id": 237, + "searchTerms": [], + "title": "BROKEN MY HEART" + }, + { + "altTitles": [], + "artist": "TaQ", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 238 + }, + "id": 238, + "searchTerms": [], + "title": "DXY!" + }, + { + "altTitles": [], + "artist": "TaQ", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 243 + }, + "id": 243, + "searchTerms": [], + "title": "Electro Tuned ( the SubS Mix )" + }, + { + "altTitles": [], + "artist": "STM 200", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 244 + }, + "id": 244, + "searchTerms": [], + "title": "PARANOiA ETERNAL" + }, + { + "altTitles": [], + "artist": "dj TAKA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 257 + }, + "id": 257, + "searchTerms": [], + "title": "Abyss" + }, + { + "altTitles": [], + "artist": "Togo Project feat. Sana", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 258 + }, + "id": 258, + "searchTerms": [], + "title": "サナ・モレッテ・ネ・エンテ" + }, + { + "altTitles": [], + "artist": "8 bit", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 267 + }, + "id": 267, + "searchTerms": [], + "title": "AFRONOVA PRIMEVAL" + }, + { + "altTitles": [], + "artist": "NAOKI underground", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 269 + }, + "id": 269, + "searchTerms": [], + "title": "INSERTiON" + }, + { + "altTitles": [], + "artist": "NAOKI", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 270 + }, + "id": 270, + "searchTerms": [], + "title": "CAN'T STOP FALLIN' IN LOVE ~SPEED MIX~" + }, + { + "altTitles": [], + "artist": "Stone Bros.", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 297 + }, + "id": 297, + "searchTerms": [], + "title": "Let the beat hit em!(CLASSIC R&B STYLE)" + }, + { + "altTitles": [], + "artist": "2MB", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 299 + }, + "id": 299, + "searchTerms": [], + "title": "Healing Vision ~Angelic mix~" + }, + { + "altTitles": [], + "artist": "Ω", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 325 + }, + "id": 325, + "searchTerms": [], + "title": "MAX 300" + }, + { + "altTitles": [], + "artist": "RevenG", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 332 + }, + "id": 332, + "searchTerms": [], + "title": "exotic ethnic" + }, + { + "altTitles": [], + "artist": "Luv UNLIMITED", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 333 + }, + "id": 333, + "searchTerms": [], + "title": "CANDY☆" + }, + { + "altTitles": [], + "artist": "Caramel.S", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 336 + }, + "id": 336, + "searchTerms": [], + "title": "SO IN LOVE" + }, + { + "altTitles": [], + "artist": "NAOKI", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 342 + }, + "id": 342, + "searchTerms": [], + "title": "D2R" + }, + { + "altTitles": [], + "artist": "NAOKI feat. PAULA TERRY", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 343 + }, + "id": 343, + "searchTerms": [], + "title": "DESTINY" + }, + { + "altTitles": [], + "artist": "jun", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 346 + }, + "id": 346, + "searchTerms": [], + "title": "Sweet Sweet ♥ Magic" + }, + { + "altTitles": [], + "artist": "DIVAS", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 354 + }, + "id": 354, + "searchTerms": [], + "title": "Secret Rendez-vous" + }, + { + "altTitles": [], + "artist": "NM feat. EBONY FAY", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 356 + }, + "id": 356, + "searchTerms": [], + "title": "rain of sorrow" + }, + { + "altTitles": [], + "artist": "Z", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 357 + }, + "id": 357, + "searchTerms": [], + "title": "MAXX UNLIMITED" + }, + { + "altTitles": [], + "artist": "小坂りゆ", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 358 + }, + "id": 358, + "searchTerms": [], + "title": "DIVE TO THE NIGHT" + }, + { + "altTitles": [], + "artist": "RevenG vs DE-SIRE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 359 + }, + "id": 359, + "searchTerms": [], + "title": "TSUGARU" + }, + { + "altTitles": [], + "artist": "BeForU", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 360 + }, + "id": 360, + "searchTerms": [], + "title": "BRE∀K DOWN!" + }, + { + "altTitles": [], + "artist": "Mr.T with Motoaki. F", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 361 + }, + "id": 361, + "searchTerms": [], + "title": "BURNING HEAT!(3 Option MIX)" + }, + { + "altTitles": [], + "artist": "AKIRA YAMAOKA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 364 + }, + "id": 364, + "searchTerms": [], + "title": "i feel ..." + }, + { + "altTitles": [], + "artist": "小坂りゆ", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 365 + }, + "id": 365, + "searchTerms": [], + "title": "CANDY♡" + }, + { + "altTitles": [], + "artist": "dj TAKA with NAOKI", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 371 + }, + "id": 371, + "searchTerms": [], + "title": "革命" + }, + { + "altTitles": [], + "artist": "RE-VENGE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 372 + }, + "id": 372, + "searchTerms": [], + "title": "AFRONOVA(FROM NONSTOP MEGAMIX)" + }, + { + "altTitles": [], + "artist": "KTz", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 373 + }, + "id": 373, + "searchTerms": [], + "title": "AM-3P(AM EAST mix)" + }, + { + "altTitles": [], + "artist": "NAOKI", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 374 + }, + "id": 374, + "searchTerms": [], + "title": "BRILLIANT 2U(K.O.G G3 MIX)" + }, + { + "altTitles": [], + "artist": "NAOKI", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 375 + }, + "id": 375, + "searchTerms": [], + "title": "B4U(B4 ZA BEAT MIX)" + }, + { + "altTitles": [], + "artist": "NW260", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 376 + }, + "id": 376, + "searchTerms": [], + "title": "DROP OUT(FROM NONSTOP MEGAMIX)" + }, + { + "altTitles": [], + "artist": "NM", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 378 + }, + "id": 378, + "searchTerms": [], + "title": "HYSTERIA 2001" + }, + { + "altTitles": [], + "artist": "Crystal Aliens", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 380 + }, + "id": 380, + "searchTerms": [], + "title": "SEXY PLANET(FROM NONSTOP MEGAMIX)" + }, + { + "altTitles": [], + "artist": "D.J.RICH feat. TAILBROS.", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 381 + }, + "id": 381, + "searchTerms": [], + "title": "SUPER STAR(FROM NONSTOP MEGAMIX)" + }, + { + "altTitles": [], + "artist": "NAOKI", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 382 + }, + "id": 382, + "searchTerms": [], + "title": "STILL IN MY HEART(MOMO MIX)" + }, + { + "altTitles": [], + "artist": "FACTOR-X", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 383 + }, + "id": 383, + "searchTerms": [], + "title": "WILD RUSH(FROM NONSTOP MEGAMIX)" + }, + { + "altTitles": [], + "artist": "NAOKI", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 384 + }, + "id": 384, + "searchTerms": [], + "title": "BURNIN' THE FLOOR(BLUE FIRE mix)" + }, + { + "altTitles": [], + "artist": "RevenG vs DE-SIRE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 385 + }, + "id": 385, + "searchTerms": [], + "title": "TSUGARU (APPLE MIX)" + }, + { + "altTitles": [], + "artist": "d-complex", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 386 + }, + "id": 386, + "searchTerms": [], + "title": "ECSTASY (midnight blue mix)" + }, + { + "altTitles": [], + "artist": "THOMAS HOWARD", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 387 + }, + "id": 387, + "searchTerms": [], + "title": "Silent Hill (3rd christmas mix)" + }, + { + "altTitles": [], + "artist": "N.M.R", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 388 + }, + "id": 388, + "searchTerms": [], + "title": "CELEBRATE NITE(EURO TRANCE STYLE)" + }, + { + "altTitles": [], + "artist": "NM feat. SUNNY", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 389 + }, + "id": 389, + "searchTerms": [], + "title": "HIGHER(next morning mix)" + }, + { + "altTitles": [], + "artist": "MITSU-O! with GEILA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 390 + }, + "id": 390, + "searchTerms": [], + "title": "MY SUMMER LOVE(TOMMY'S SMILE MIX)" + }, + { + "altTitles": [], + "artist": "FIXX", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 411 + }, + "id": 411, + "searchTerms": [], + "title": "VANITY ANGEL" + }, + { + "altTitles": [], + "artist": "FinalOffset", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 414 + }, + "id": 414, + "searchTerms": [], + "title": "Jam & Marmalade" + }, + { + "altTitles": [], + "artist": "DJ TAKA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 415 + }, + "id": 415, + "searchTerms": [], + "title": "LOGICAL DASH" + }, + { + "altTitles": [], + "artist": "L.E.D. feat. Sana", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 420 + }, + "id": 420, + "searchTerms": [], + "title": "THE SHINING POLARIS" + }, + { + "altTitles": [], + "artist": "Scotty D.", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 421 + }, + "id": 421, + "searchTerms": [], + "title": "DROP THE BOMB(SyS.F. Mix)" + }, + { + "altTitles": [], + "artist": "CLUB SPICE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 428 + }, + "id": 428, + "searchTerms": [], + "title": "CUTIE CHASER(MORNING MIX)" + }, + { + "altTitles": [], + "artist": "小坂りゆ", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 429 + }, + "id": 429, + "searchTerms": [], + "title": "LOVE♥SHINE" + }, + { + "altTitles": [], + "artist": "270", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 430 + }, + "id": 430, + "searchTerms": [], + "title": "PARANOIA survivor" + }, + { + "altTitles": [], + "artist": "NAOKI feat. SHANTI", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 436 + }, + "id": 436, + "searchTerms": [], + "title": "KISS KISS KISS" + }, + { + "altTitles": [], + "artist": "dj TAKA feat.のりあ", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 437 + }, + "id": 437, + "searchTerms": [], + "title": "♥Love²シュガ→♥" + }, + { + "altTitles": [], + "artist": "NAOKI underground", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 438 + }, + "id": 438, + "searchTerms": [], + "title": "L'amour et la liberté(DDR Ver.)" + }, + { + "altTitles": [], + "artist": "Kelly Cosmo", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 439 + }, + "id": 439, + "searchTerms": [], + "title": "I'm gonna get you!" + }, + { + "altTitles": [], + "artist": "くにたけ みゆき", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 440 + }, + "id": 440, + "searchTerms": [], + "title": "Destiny lovers" + }, + { + "altTitles": [], + "artist": "Hirofumi Sasaki", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 441 + }, + "id": 441, + "searchTerms": [], + "title": "The Least 100sec" + }, + { + "altTitles": [], + "artist": "TOMOSUKE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 442 + }, + "id": 442, + "searchTerms": [], + "title": "Gamelan de Couple" + }, + { + "altTitles": [], + "artist": "T.E.M.P.O. feat.Mohammed & Emi", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 443 + }, + "id": 443, + "searchTerms": [], + "title": "jane jana" + }, + { + "altTitles": [], + "artist": "D-Crew", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 445 + }, + "id": 445, + "searchTerms": [], + "title": "BE LOVIN" + }, + { + "altTitles": [], + "artist": "Togo Project feat. Sana", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 446 + }, + "id": 446, + "searchTerms": [], + "title": "Miracle Moon ~L.E.D.LIGHT STYLE MIX~" + }, + { + "altTitles": [], + "artist": "BeForU", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 447 + }, + "id": 447, + "searchTerms": [], + "title": "GRADUATION ~それぞれの明日~" + }, + { + "altTitles": [], + "artist": "TAKA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 448 + }, + "id": 448, + "searchTerms": [], + "title": "V ~for EXTREME~" + }, + { + "altTitles": [], + "artist": "D.J.Amuro", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 449 + }, + "id": 449, + "searchTerms": [], + "title": "A" + }, + { + "altTitles": [], + "artist": "dj TAKA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 452 + }, + "id": 452, + "searchTerms": [], + "title": "Colors ~for EXTREME~" + }, + { + "altTitles": [], + "artist": "emi", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 453 + }, + "id": 453, + "searchTerms": [], + "title": "STAY (Organic house Version)" + }, + { + "altTitles": [], + "artist": "NAOKI J-STYLE feat.MIU", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 454 + }, + "id": 454, + "searchTerms": [], + "title": "Kiss me all night long" + }, + { + "altTitles": [], + "artist": "dj TAKA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 456 + }, + "id": 456, + "searchTerms": [], + "title": "Frozen Ray ~for EXTREME~" + }, + { + "altTitles": [], + "artist": "Des-ROW feat. TSUBOI for ALPHA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 459 + }, + "id": 459, + "searchTerms": [], + "title": "大見解" + }, + { + "altTitles": [], + "artist": "Mutsuhiko Izumi", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 462 + }, + "id": 462, + "searchTerms": [], + "title": "JET WORLD" + }, + { + "altTitles": [], + "artist": "ASKA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 463 + }, + "id": 463, + "searchTerms": [], + "title": "Happy Wedding" + }, + { + "altTitles": [], + "artist": "290", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 464 + }, + "id": 464, + "searchTerms": [], + "title": "PARANOIA survivor MAX" + }, + { + "altTitles": [], + "artist": "RevenG", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 465 + }, + "id": 465, + "searchTerms": [], + "title": "bag" + }, + { + "altTitles": [], + "artist": "ZZ", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 466 + }, + "id": 466, + "searchTerms": [], + "title": "The legend of MAX" + }, + { + "altTitles": [], + "artist": "NAOKI feat.YUKI", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 467 + }, + "id": 467, + "searchTerms": [], + "title": "蒼い衝動 ~for EXTREME~" + }, + { + "altTitles": [], + "artist": "亜熱帯マジ-SKA爆弾", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 468 + }, + "id": 468, + "searchTerms": [], + "title": "三毛猫ロック" + }, + { + "altTitles": [], + "artist": "OutPhase", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 469 + }, + "id": 469, + "searchTerms": [], + "title": "sync (EXTREME version)" + }, + { + "altTitles": [], + "artist": "TaQ", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 470 + }, + "id": 470, + "searchTerms": [], + "title": "stoic (EXTREME version)" + }, + { + "altTitles": [], + "artist": "DJ SIMON", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 471 + }, + "id": 471, + "searchTerms": [], + "title": "321STARS" + }, + { + "altTitles": [], + "artist": "NAOKI", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 472 + }, + "id": 472, + "searchTerms": [], + "title": "1998" + }, + { + "altTitles": [], + "artist": "FinalOffset", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 473 + }, + "id": 473, + "searchTerms": [], + "title": "Twin Bee -Generation X-" + }, + { + "altTitles": [], + "artist": "Mr.T", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 474 + }, + "id": 474, + "searchTerms": [], + "title": "xenon" + }, + { + "altTitles": [], + "artist": "Reven-G", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 475 + }, + "id": 475, + "searchTerms": [], + "title": "桜" + }, + { + "altTitles": [], + "artist": "Kiyommy+Seiya", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 476 + }, + "id": 476, + "searchTerms": [], + "title": "Pink Rose" + }, + { + "altTitles": [], + "artist": "Hiro feat. Sweet little 30's", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 477 + }, + "id": 477, + "searchTerms": [], + "title": "Heaven is a '57 metallic gray ~gimmix~" + }, + { + "altTitles": [], + "artist": "NAOKI feat. DDR ALL STARS", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 478 + }, + "id": 478, + "searchTerms": [], + "title": "HYPER EUROBEAT" + }, + { + "altTitles": [], + "artist": "メキシコ民謡", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 479 + }, + "id": 479, + "searchTerms": [], + "title": "LA BAMBA" + }, + { + "altTitles": [], + "artist": "DDR ALL STARS", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 480 + }, + "id": 480, + "searchTerms": [], + "title": "Dance Dance Revolution" + }, + { + "altTitles": [], + "artist": "DE-SIRE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 481 + }, + "id": 481, + "searchTerms": [], + "title": "TRIP MACHINE survivor" + }, + { + "altTitles": [], + "artist": "DJ SIMON", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 482 + }, + "id": 482, + "searchTerms": [], + "title": "air" + }, + { + "altTitles": [], + "artist": "NAOKI underground feat.EK", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 484 + }, + "id": 484, + "searchTerms": [], + "title": "TEARS" + }, + { + "altTitles": [], + "artist": "Jimmy Weckl", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 486 + }, + "id": 486, + "searchTerms": [], + "title": "Across the nightmare" + }, + { + "altTitles": [], + "artist": "Funk Kid feat. KOOL BOYS", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 24576 + }, + "id": 24576, + "searchTerms": [], + "title": "Funk Boogie" + }, + { + "altTitles": [], + "artist": "S.F.M.P.", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 24577 + }, + "id": 24577, + "searchTerms": [], + "title": "Try 2 Luv. U" + }, + { + "altTitles": [], + "artist": "Chel Y.", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 24581 + }, + "id": 24581, + "searchTerms": [], + "title": "Forever Sunshine" + }, + { + "altTitles": [], + "artist": "Sota feat. Brenda V.", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 24582 + }, + "id": 24582, + "searchTerms": [], + "title": "Saturday Night Love" + }, + { + "altTitles": [], + "artist": "D.J. Spugna", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 24583 + }, + "id": 24583, + "searchTerms": [], + "title": "Bad Routine" + }, + { + "altTitles": [], + "artist": "dj TAKA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 24586 + }, + "id": 24586, + "searchTerms": [], + "title": "Tomorrow Perfume" + }, + { + "altTitles": [], + "artist": "CLI-MAX S.", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 28690 + }, + "id": 28690, + "searchTerms": [], + "title": "MAXIMIZER" + }, + { + "altTitles": [], + "artist": "Supa Fova feat. Jenny F.", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 28691 + }, + "id": 28691, + "searchTerms": [], + "title": "I Need You" + }, + { + "altTitles": [], + "artist": "Sho-T", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 28700 + }, + "id": 28700, + "searchTerms": [], + "title": "A Stupid Barber" + }, + { + "altTitles": [], + "artist": "Shawn the Horny Master", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 28701 + }, + "id": 28701, + "searchTerms": [], + "title": "Scorching Moon" + }, + { + "altTitles": [], + "artist": "SDMS", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 28717 + }, + "id": 28717, + "searchTerms": [], + "title": "un deux trois" + }, + { + "altTitles": [], + "artist": "2MB", + "data": { + "flareCategory": "WHITE", + "inGameID": 28718 + }, + "id": 28718, + "searchTerms": [], + "title": "MAX.(period)" + }, + { + "altTitles": [], + "artist": "Vision F", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 32768 + }, + "id": 32768, + "searchTerms": [], + "title": "Can Be Real" + }, + { + "altTitles": [], + "artist": ".3k", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 32774 + }, + "id": 32774, + "searchTerms": [], + "title": "PARANOiA-Respect-" + }, + { + "altTitles": [], + "artist": "BeForU", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 32784 + }, + "id": 32784, + "searchTerms": [], + "title": "Freedom" + }, + { + "altTitles": [], + "artist": "TЁЯRA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 32785 + }, + "id": 32785, + "searchTerms": [], + "title": "STARS☆☆☆(2nd NAOKI's style)" + }, + { + "altTitles": [], + "artist": "NM feat. Thomas Howard", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 33028 + }, + "id": 33028, + "searchTerms": [], + "title": "BALLAD FOR YOU~想いの雨~" + }, + { + "altTitles": [], + "artist": "THE SURRENDERS", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 33034 + }, + "id": 33034, + "searchTerms": [], + "title": "GORGEOUS 2012" + }, + { + "altTitles": [], + "artist": "N.M.R-typeG", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 33038 + }, + "id": 33038, + "searchTerms": [], + "title": "KEEP ON MOVIN' ~DMX MIX~" + }, + { + "altTitles": [], + "artist": "TOMOSUKE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 33044 + }, + "id": 33044, + "searchTerms": [], + "title": "Mind Parasite" + }, + { + "altTitles": [], + "artist": "UZI-LAY", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 33047 + }, + "id": 33047, + "searchTerms": [], + "title": "PUT YOUR FAITH IN ME ~SATURDAY NIGHT MIX~" + }, + { + "altTitles": [], + "artist": "dj TAKA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 33048 + }, + "id": 33048, + "searchTerms": [], + "title": "Quickening" + }, + { + "altTitles": [], + "artist": "Naoto Suzuki feat. Martha", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 33664 + }, + "id": 33664, + "searchTerms": [], + "title": "Polovtsian Dances And Chorus" + }, + { + "altTitles": [], + "artist": "Orange Lounge", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 33665 + }, + "id": 33665, + "searchTerms": [], + "title": "LOVE IS ORANGE" + }, + { + "altTitles": [], + "artist": "Lala Moore with CoCoRo*Co", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 33666 + }, + "id": 33666, + "searchTerms": [], + "title": "Make A Difference" + }, + { + "altTitles": [], + "artist": "NAOKI feat. PAULA TERRY", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 33667 + }, + "id": 33667, + "searchTerms": [], + "title": "MARIA(I believe...)" + }, + { + "altTitles": [], + "artist": "nc ft. Dreamscanner", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 33668 + }, + "id": 33668, + "searchTerms": [], + "title": "TOMORROW" + }, + { + "altTitles": [], + "artist": "nc ft. FINALFORCE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 33669 + }, + "id": 33669, + "searchTerms": [], + "title": "SEDUCTION" + }, + { + "altTitles": [], + "artist": "AKIRA YAMAOKA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 33670 + }, + "id": 33670, + "searchTerms": [], + "title": "INSIDE YOUR HEART" + }, + { + "altTitles": [], + "artist": "NAOKI feat. PAULA TERRY", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 33672 + }, + "id": 33672, + "searchTerms": [], + "title": "PASSION OF LOVE" + }, + { + "altTitles": [], + "artist": "Yuzo Koshiro", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 33673 + }, + "id": 33673, + "searchTerms": [], + "title": "You gotta move it (feat. Julie Rugaard)" + }, + { + "altTitles": [], + "artist": "Love machineguns", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 33806 + }, + "id": 33806, + "searchTerms": [], + "title": "MIDNIGHT SPECIAL" + }, + { + "altTitles": [], + "artist": "Big Idea", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 33808 + }, + "id": 33808, + "searchTerms": [], + "title": "Monkey Punk" + }, + { + "altTitles": [], + "artist": "Big Idea", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 33811 + }, + "id": 33811, + "searchTerms": [], + "title": "Baile Le Samba" + }, + { + "altTitles": [], + "artist": "Jondi & Spesh", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 33818 + }, + "id": 33818, + "searchTerms": [], + "title": "MAX 300 (Super-Max-Me Mix)" + }, + { + "altTitles": [], + "artist": "TЁЯRA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 33834 + }, + "id": 33834, + "searchTerms": [], + "title": "DoLL" + }, + { + "altTitles": [], + "artist": "AKIRA YAMAOKA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 33835 + }, + "id": 33835, + "searchTerms": [], + "title": "iFUTURELIST(DDR VERSION)" + }, + { + "altTitles": [], + "artist": "D.J.Amuro", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36864 + }, + "id": 36864, + "searchTerms": [], + "title": "AA" + }, + { + "altTitles": [], + "artist": "Tatsh&NAOKI", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36865 + }, + "id": 36865, + "searchTerms": [], + "title": "RED ZONE" + }, + { + "altTitles": [], + "artist": "jun with TAHIRIH", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36866 + }, + "id": 36866, + "searchTerms": [], + "title": "HAPPY☆ANGEL" + }, + { + "altTitles": [], + "artist": "Tatsh", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36867 + }, + "id": 36867, + "searchTerms": [], + "title": "Xepher" + }, + { + "altTitles": [], + "artist": "RIYU from BeForU", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36868 + }, + "id": 36868, + "searchTerms": [], + "title": "ヒマワリ" + }, + { + "altTitles": [], + "artist": "Kozo Nakamura", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36869 + }, + "id": 36869, + "searchTerms": [], + "title": "Dragon Blade" + }, + { + "altTitles": [], + "artist": "D-crew", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36870 + }, + "id": 36870, + "searchTerms": [], + "title": "CURUS" + }, + { + "altTitles": [], + "artist": "TЁЯRA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36871 + }, + "id": 36871, + "searchTerms": [], + "title": "夢幻ノ光" + }, + { + "altTitles": [], + "artist": "DJ YOSHITAKA feat G.S.C license", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36872 + }, + "id": 36872, + "searchTerms": [], + "title": "虹色" + }, + { + "altTitles": [], + "artist": "あさき", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36873 + }, + "id": 36873, + "searchTerms": [], + "title": "月光蝶" + }, + { + "altTitles": [], + "artist": "あさき", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36874 + }, + "id": 36874, + "searchTerms": [], + "title": "この子の七つのお祝いに" + }, + { + "altTitles": [], + "artist": "dj TAKA feat.Erika", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36875 + }, + "id": 36875, + "searchTerms": [], + "title": "MOON" + }, + { + "altTitles": [], + "artist": "TAKA respect for J.S.B.", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36876 + }, + "id": 36876, + "searchTerms": [], + "title": "No.13" + }, + { + "altTitles": [], + "artist": "Des-ROW・組", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36877 + }, + "id": 36877, + "searchTerms": [], + "title": "男々道" + }, + { + "altTitles": [], + "artist": "Des-ROW・組スペシアルr", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36878 + }, + "id": 36878, + "searchTerms": [], + "title": "カゲロウ" + }, + { + "altTitles": [], + "artist": "BeForU", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36879 + }, + "id": 36879, + "searchTerms": [], + "title": "チカラ" + }, + { + "altTitles": [], + "artist": "南さやか(BeForU)with platoniX", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36880 + }, + "id": 36880, + "searchTerms": [], + "title": "Under the Sky" + }, + { + "altTitles": [], + "artist": "Ryu☆", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36882 + }, + "id": 36882, + "searchTerms": [], + "title": "rainbow rainbow" + }, + { + "altTitles": [], + "artist": "Berimbau '66", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36883 + }, + "id": 36883, + "searchTerms": [], + "title": "Brazilian Anthem" + }, + { + "altTitles": [], + "artist": "Jimmy Weckl", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36884 + }, + "id": 36884, + "searchTerms": [], + "title": "CENTAUR" + }, + { + "altTitles": [], + "artist": "WILMA DE OLIVEIRA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36885 + }, + "id": 36885, + "searchTerms": [], + "title": "TIERRA BUENA" + }, + { + "altTitles": [], + "artist": "亜熱帯マジ-SKA爆弾", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36886 + }, + "id": 36886, + "searchTerms": [], + "title": "Ska Ska No.3" + }, + { + "altTitles": [], + "artist": "Morning Blue Dragon", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36887 + }, + "id": 36887, + "searchTerms": [], + "title": "怒れる大きな白い馬" + }, + { + "altTitles": [], + "artist": "yu_tokiwa.djw", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36888 + }, + "id": 36888, + "searchTerms": [], + "title": "murmur twins" + }, + { + "altTitles": [], + "artist": "ChiyoTia", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36889 + }, + "id": 36889, + "searchTerms": [], + "title": "Fly away" + }, + { + "altTitles": [], + "artist": "nc ft NRG Factory", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36890 + }, + "id": 36890, + "searchTerms": [], + "title": "INNOCENCE OF SILENCE" + }, + { + "altTitles": [], + "artist": "NAOKI feat. Becky Lucinda", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36891 + }, + "id": 36891, + "searchTerms": [], + "title": "My Only Shining Star" + }, + { + "altTitles": [], + "artist": "Scotty D. revisits U1", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36892 + }, + "id": 36892, + "searchTerms": [], + "title": "Flow" + }, + { + "altTitles": [], + "artist": "dj TAKA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36893 + }, + "id": 36893, + "searchTerms": [], + "title": "rainbow flyer" + }, + { + "altTitles": [], + "artist": "SySF. feat. Donna Burke", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36895 + }, + "id": 36895, + "searchTerms": [], + "title": "Star Gate Heaven" + }, + { + "altTitles": [], + "artist": "100-200-400", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36906 + }, + "id": 36906, + "searchTerms": [], + "title": "Fascination MAXX" + }, + { + "altTitles": [], + "artist": "Mokky de Yah Yah's", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36914 + }, + "id": 36914, + "searchTerms": [], + "title": "cachaca" + }, + { + "altTitles": [], + "artist": "act deft", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36916 + }, + "id": 36916, + "searchTerms": [], + "title": "Quick Master" + }, + { + "altTitles": [], + "artist": "NAOKI with Y&Co.", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36917 + }, + "id": 36917, + "searchTerms": [], + "title": "CAN'T STOP FALLIN' IN LOVE -super euro version-" + }, + { + "altTitles": [], + "artist": "NC feat. NRG Factory", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36920 + }, + "id": 36920, + "searchTerms": [], + "title": "SEDUCTION(Vocal Remix)" + }, + { + "altTitles": [], + "artist": "DE-SIRE retunes", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36925 + }, + "id": 36925, + "searchTerms": [], + "title": "CHAOS" + }, + { + "altTitles": [], + "artist": "LH MUSIC CREATION", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36928 + }, + "id": 36928, + "searchTerms": [], + "title": "La Bamba" + }, + { + "altTitles": [], + "artist": "jun feat. Schanita", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36931 + }, + "id": 36931, + "searchTerms": [], + "title": "TRUE♥LOVE" + }, + { + "altTitles": [], + "artist": "DE-STRAD", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36934 + }, + "id": 36934, + "searchTerms": [], + "title": "Healing-D-Vision" + }, + { + "altTitles": [], + "artist": "TЁЯRA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36935 + }, + "id": 36935, + "searchTerms": [], + "title": "華爛漫 -Flowers-" + }, + { + "altTitles": [], + "artist": "Scotty D. revisits U1", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36936 + }, + "id": 36936, + "searchTerms": [], + "title": "Flow (True Style)" + }, + { + "altTitles": [], + "artist": "2MB", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 36937 + }, + "id": 36937, + "searchTerms": [], + "title": "Fascination ~eternal love mix~" + }, + { + "altTitles": [], + "artist": "Shawn the Horny Master feat. ChiyoTia", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37120 + }, + "id": 37120, + "searchTerms": [], + "title": "Fly away -mix del matador-" + }, + { + "altTitles": [], + "artist": "nc ft HARDCORE NATION", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37121 + }, + "id": 37121, + "searchTerms": [], + "title": "SOUL CRASH" + }, + { + "altTitles": [], + "artist": "SySF. feat. Donna Burke", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37122 + }, + "id": 37122, + "searchTerms": [], + "title": "Star Gate Heaven (FUTURE LOVE Mix)" + }, + { + "altTitles": [], + "artist": "kobo uniting Marsha & D.", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37123 + }, + "id": 37123, + "searchTerms": [], + "title": "MOONSTER" + }, + { + "altTitles": [], + "artist": "Scotty D. revisits U1", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37124 + }, + "id": 37124, + "searchTerms": [], + "title": "Flow (Jammin' Ragga Mix)" + }, + { + "altTitles": [], + "artist": "SySF.", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37125 + }, + "id": 37125, + "searchTerms": [], + "title": "Feelings Won't Fade(Extend Trance Mix)" + }, + { + "altTitles": [], + "artist": "U1 Reincarnates w/ Leah", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37126 + }, + "id": 37126, + "searchTerms": [], + "title": "Silver Platform - I wanna get your heart -" + }, + { + "altTitles": [], + "artist": "kobo", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37127 + }, + "id": 37127, + "searchTerms": [], + "title": "Trim" + }, + { + "altTitles": [], + "artist": "SySF.", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37187 + }, + "id": 37187, + "searchTerms": [], + "title": "Electrified" + }, + { + "altTitles": [], + "artist": "nc ft. 触電", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37188 + }, + "id": 37188, + "searchTerms": [], + "title": "Music In The Rhythm" + }, + { + "altTitles": [], + "artist": "nc ft NRG factory", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37189 + }, + "id": 37189, + "searchTerms": [], + "title": "Malacca" + }, + { + "altTitles": [], + "artist": "jun feat. PAULA TERRY", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37190 + }, + "id": 37190, + "searchTerms": [], + "title": "Raspberry♡Heart(English version)" + }, + { + "altTitles": [], + "artist": "DJ YOSHITAKA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37191 + }, + "id": 37191, + "searchTerms": [], + "title": "Bloody Tears(IIDX EDITION)" + }, + { + "altTitles": [], + "artist": "kobo feat. kr:agué", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37206 + }, + "id": 37206, + "searchTerms": [], + "title": "dazzle" + }, + { + "altTitles": [], + "artist": "dj TAKA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37207 + }, + "id": 37207, + "searchTerms": [], + "title": "Freeway Shuffle" + }, + { + "altTitles": [], + "artist": "W.W.S", + "data": { + "flareCategory": "GOLD", + "inGameID": 37221 + }, + "id": 37221, + "searchTerms": [], + "title": "LOVE SHINE (Body Grooverz 2006 mix)" + }, + { + "altTitles": [], + "artist": "J-RAVERS", + "data": { + "flareCategory": "GOLD", + "inGameID": 37223 + }, + "id": 37223, + "searchTerms": [], + "title": "1998 (Sparky 2006)" + }, + { + "altTitles": [], + "artist": "The Sweetest", + "data": { + "flareCategory": "GOLD", + "inGameID": 37224 + }, + "id": 37224, + "searchTerms": [], + "title": "CANDY (UFO mix)" + }, + { + "altTitles": [], + "artist": "J-RAVERS", + "data": { + "flareCategory": "GOLD", + "inGameID": 37225 + }, + "id": 37225, + "searchTerms": [], + "title": "B4U (The Acolyte mix)" + }, + { + "altTitles": [], + "artist": "trance star", + "data": { + "flareCategory": "WHITE", + "inGameID": 37226 + }, + "id": 37226, + "searchTerms": [], + "title": "Confession" + }, + { + "altTitles": [], + "artist": "NAOKI", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37228 + }, + "id": 37228, + "searchTerms": [], + "title": "will" + }, + { + "altTitles": [], + "artist": "Freeman", + "data": { + "flareCategory": "GOLD", + "inGameID": 37229 + }, + "id": 37229, + "searchTerms": [], + "title": "little steps" + }, + { + "altTitles": [], + "artist": "Stepper", + "data": { + "flareCategory": "GOLD", + "inGameID": 37231 + }, + "id": 37231, + "searchTerms": [], + "title": "I'm Flying Away" + }, + { + "altTitles": [], + "artist": "Happy CoreMAN", + "data": { + "flareCategory": "GOLD", + "inGameID": 37232 + }, + "id": 37232, + "searchTerms": [], + "title": "We Will Live Together" + }, + { + "altTitles": [], + "artist": "The Lonely Hearts", + "data": { + "flareCategory": "GOLD", + "inGameID": 37233 + }, + "id": 37233, + "searchTerms": [], + "title": "Heavens and the Earth" + }, + { + "altTitles": [], + "artist": "Sparky", + "data": { + "flareCategory": "GOLD", + "inGameID": 37236 + }, + "id": 37236, + "searchTerms": [], + "title": "the beat" + }, + { + "altTitles": [], + "artist": "NM feat. Alison Wade", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37237 + }, + "id": 37237, + "searchTerms": [], + "title": "Beautiful Inside (Cube::Hard Mix)" + }, + { + "altTitles": [], + "artist": "Latenighter", + "data": { + "flareCategory": "GOLD", + "inGameID": 37238 + }, + "id": 37238, + "searchTerms": [], + "title": "Mess With My Emotions" + }, + { + "altTitles": [], + "artist": "Black Rose Garden", + "data": { + "flareCategory": "WHITE", + "inGameID": 37239 + }, + "id": 37239, + "searchTerms": [], + "title": "THE REASON" + }, + { + "altTitles": [], + "artist": "jun", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37240 + }, + "id": 37240, + "searchTerms": [], + "title": "SUPER SAMURAI" + }, + { + "altTitles": [], + "artist": "U1", + "data": { + "flareCategory": "GOLD", + "inGameID": 37241 + }, + "id": 37241, + "searchTerms": [], + "title": "Such A Feeling" + }, + { + "altTitles": [], + "artist": "800 slopes", + "data": { + "flareCategory": "GOLD", + "inGameID": 37242 + }, + "id": 37242, + "searchTerms": [], + "title": "Hold Tight" + }, + { + "altTitles": [], + "artist": "鍋嶋圭一", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37251 + }, + "id": 37251, + "searchTerms": [], + "title": "NGO" + }, + { + "altTitles": [], + "artist": "泉 陸奥彦", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37254 + }, + "id": 37254, + "searchTerms": [], + "title": "FIRE" + }, + { + "altTitles": [], + "artist": "Black Rose Garden", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37255 + }, + "id": 37255, + "searchTerms": [], + "title": "Unreal" + }, + { + "altTitles": [], + "artist": "TЁЯRA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37256 + }, + "id": 37256, + "searchTerms": [], + "title": "STARS☆☆☆(Re-tuned by HΛL) - DDR EDITION -" + }, + { + "altTitles": [], + "artist": "DJ YOSHITAKA feat.A/I", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37264 + }, + "id": 37264, + "searchTerms": [], + "title": "CaptivAte~誓い~" + }, + { + "altTitles": [], + "artist": "Tatsh+RayZY", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37265 + }, + "id": 37265, + "searchTerms": [], + "title": "Venus" + }, + { + "altTitles": [], + "artist": "Zektbach", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37266 + }, + "id": 37266, + "searchTerms": [], + "title": "Blind Justice ~Torn souls, Hurt Faiths ~" + }, + { + "altTitles": [], + "artist": "D-crew 2 US", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37267 + }, + "id": 37267, + "searchTerms": [], + "title": "A thing called LOVE" + }, + { + "altTitles": [], + "artist": "TAKA respect for J.S.B.", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37269 + }, + "id": 37269, + "searchTerms": [], + "title": "Übertreffen" + }, + { + "altTitles": [], + "artist": "Reven-G改", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37270 + }, + "id": 37270, + "searchTerms": [], + "title": "Arrabbiata" + }, + { + "altTitles": [], + "artist": "DE-SIRE改", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37273 + }, + "id": 37273, + "searchTerms": [], + "title": "TRIP MACHINE PhoeniX" + }, + { + "altTitles": [], + "artist": "Caldeira feat.Téka Penteriche", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37274 + }, + "id": 37274, + "searchTerms": [], + "title": "Vem brincar" + }, + { + "altTitles": [], + "artist": "Kaori Nishina", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37276 + }, + "id": 37276, + "searchTerms": [], + "title": "dream of love" + }, + { + "altTitles": [], + "artist": "Yasuhiro Abe", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37277 + }, + "id": 37277, + "searchTerms": [], + "title": "volcano" + }, + { + "altTitles": [], + "artist": "LEA DROP feat. Ant Johnston", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37278 + }, + "id": 37278, + "searchTerms": [], + "title": "Every Day, Every Night(NM STYLE)" + }, + { + "altTitles": [], + "artist": "Black∞Hole", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37279 + }, + "id": 37279, + "searchTerms": [], + "title": "Pluto" + }, + { + "altTitles": [], + "artist": "αTYPE-300", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37281 + }, + "id": 37281, + "searchTerms": [], + "title": "PARANOiA ~HADES~" + }, + { + "altTitles": [], + "artist": "DAISUKE ASAKURA ex.TЁЯRA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37282 + }, + "id": 37282, + "searchTerms": [], + "title": "switch" + }, + { + "altTitles": [], + "artist": "DAISUKE ASAKURA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37283 + }, + "id": 37283, + "searchTerms": [], + "title": "stealth" + }, + { + "altTitles": [], + "artist": "Tatsh feat. ヨーコ", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37287 + }, + "id": 37287, + "searchTerms": [], + "title": "Trust -DanceDanceRevolution mix-" + }, + { + "altTitles": [], + "artist": "2MB", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37288 + }, + "id": 37288, + "searchTerms": [], + "title": "Pluto Relinquish" + }, + { + "altTitles": [], + "artist": "NAOKI in the MERCURE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37289 + }, + "id": 37289, + "searchTerms": [], + "title": "L'amour et la liberté(Darwin & DJ Silver remix)" + }, + { + "altTitles": [], + "artist": "iconoclasm", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37290 + }, + "id": 37290, + "searchTerms": [], + "title": "Votum stellarum -forest #25 DDR RMX-" + }, + { + "altTitles": [], + "artist": "Tatsh SN 2 Style", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37293 + }, + "id": 37293, + "searchTerms": [], + "title": "Uranus" + }, + { + "altTitles": [], + "artist": "JET GIRL SPIN", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37294 + }, + "id": 37294, + "searchTerms": [], + "title": "MARS WAR 3" + }, + { + "altTitles": [], + "artist": "Darwin", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37295 + }, + "id": 37295, + "searchTerms": [], + "title": "Why not" + }, + { + "altTitles": [], + "artist": "Fracus", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37296 + }, + "id": 37296, + "searchTerms": [], + "title": "Shades of Grey" + }, + { + "altTitles": [], + "artist": "Cheki-ROWS", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37297 + }, + "id": 37297, + "searchTerms": [], + "title": "GIRIGILI門前雀羅" + }, + { + "altTitles": [], + "artist": "NAOKI underground", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37298 + }, + "id": 37298, + "searchTerms": [], + "title": "Poseidon" + }, + { + "altTitles": [], + "artist": "NAOKI", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37299 + }, + "id": 37299, + "searchTerms": [], + "title": "BRILLIANT 2U (\"STREAM\" Special)" + }, + { + "altTitles": [], + "artist": "KTz", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37300 + }, + "id": 37300, + "searchTerms": [], + "title": "AM-3P (\"CHAOS\" Special)" + }, + { + "altTitles": [], + "artist": "NAOKI", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37301 + }, + "id": 37301, + "searchTerms": [], + "title": "D2R (\"FREEZE\" Special)" + }, + { + "altTitles": [], + "artist": "NAOKI", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37302 + }, + "id": 37302, + "searchTerms": [], + "title": "DYNAMITE RAVE (\"AIR\" Special)" + }, + { + "altTitles": [], + "artist": "NAOKI", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37303 + }, + "id": 37303, + "searchTerms": [], + "title": "B4U (\"VOLTAGE\" Special)" + }, + { + "altTitles": [], + "artist": "N & S", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37304 + }, + "id": 37304, + "searchTerms": [], + "title": "DEAD END (\"GROOVE RADAR\" Special)" + }, + { + "altTitles": [], + "artist": "jun with Alison", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37306 + }, + "id": 37306, + "searchTerms": [], + "title": "SUNKiSS♥DROP" + }, + { + "altTitles": [], + "artist": "Mr.Saturn", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37307 + }, + "id": 37307, + "searchTerms": [], + "title": "Saturn" + }, + { + "altTitles": [], + "artist": "jun feat. Schanita", + "data": { + "flareCategory": "GOLD", + "inGameID": 37308 + }, + "id": 37308, + "searchTerms": [], + "title": "TRUE♥LOVE (Clubstar's True Club Mix)" + }, + { + "altTitles": [], + "artist": "WHITE WALL", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37309 + }, + "id": 37309, + "searchTerms": [], + "title": "Pluto The First" + }, + { + "altTitles": [], + "artist": "evo-X", + "data": { + "flareCategory": "GOLD", + "inGameID": 37311 + }, + "id": 37311, + "searchTerms": [], + "title": "DOUBLE TORNARD" + }, + { + "altTitles": [], + "artist": "TACOS NAOMI feat.小久保裕之", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37312 + }, + "id": 37312, + "searchTerms": [], + "title": "The flower in your smile" + }, + { + "altTitles": [], + "artist": "日本少年", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37313 + }, + "id": 37313, + "searchTerms": [], + "title": "puzzle" + }, + { + "altTitles": [], + "artist": "Masanori Akita", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37315 + }, + "id": 37315, + "searchTerms": [], + "title": "TimeHollow" + }, + { + "altTitles": [], + "artist": "Veeton", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37316 + }, + "id": 37316, + "searchTerms": [], + "title": "S・A・G・A" + }, + { + "altTitles": [], + "artist": "Darwin", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37318 + }, + "id": 37318, + "searchTerms": [], + "title": "On The Break" + }, + { + "altTitles": [], + "artist": "Ruffage & Size", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37322 + }, + "id": 37322, + "searchTerms": [], + "title": "Tracers (4Beat Remix)" + }, + { + "altTitles": [], + "artist": "DDT", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37323 + }, + "id": 37323, + "searchTerms": [], + "title": "Waiting 4 u" + }, + { + "altTitles": [], + "artist": "Darwin", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37324 + }, + "id": 37324, + "searchTerms": [], + "title": "Dream Machine" + }, + { + "altTitles": [], + "artist": "Jena Rose", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37354 + }, + "id": 37354, + "searchTerms": [], + "title": "Flight of the Phoenix" + }, + { + "altTitles": [], + "artist": "Jena Rose", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37355 + }, + "id": 37355, + "searchTerms": [], + "title": "Ticket to Bombay" + }, + { + "altTitles": [], + "artist": "DKC Crew", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37356 + }, + "id": 37356, + "searchTerms": [], + "title": "Taj He Spitz" + }, + { + "altTitles": [], + "artist": "TAG", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37357 + }, + "id": 37357, + "searchTerms": [], + "title": "SABER WING" + }, + { + "altTitles": [], + "artist": "TONI LEO", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37358 + }, + "id": 37358, + "searchTerms": [], + "title": "LOVING YOU (Epidemik remix)" + }, + { + "altTitles": [], + "artist": "NAOKI feat.YASMINE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37359 + }, + "id": 37359, + "searchTerms": [], + "title": "INTO YOUR HEART (Ruffage remix)" + }, + { + "altTitles": [], + "artist": "DANNY D", + "data": { + "flareCategory": "GOLD", + "inGameID": 37360 + }, + "id": 37360, + "searchTerms": [], + "title": "STAY (Joey Riot remix)" + }, + { + "altTitles": [], + "artist": "GAV", + "data": { + "flareCategory": "GOLD", + "inGameID": 37362 + }, + "id": 37362, + "searchTerms": [], + "title": "I WANT YOUR LOVE (Darwin remix)" + }, + { + "altTitles": [], + "artist": "wolli", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37368 + }, + "id": 37368, + "searchTerms": [], + "title": "Lift You Up" + }, + { + "altTitles": [], + "artist": "sonic-coll. feat. frances maya", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37369 + }, + "id": 37369, + "searchTerms": [], + "title": "Flourish" + }, + { + "altTitles": [], + "artist": "neuras feat. GATZ", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37370 + }, + "id": 37370, + "searchTerms": [], + "title": "Take A Chance" + }, + { + "altTitles": [], + "artist": "Hamel and St. Croix feat. Jules Mari", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37406 + }, + "id": 37406, + "searchTerms": [], + "title": "Playa (Original Mix)" + }, + { + "altTitles": [], + "artist": "Bill Hamel feat. Kevens", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37407 + }, + "id": 37407, + "searchTerms": [], + "title": "Dance Celebration" + }, + { + "altTitles": [], + "artist": "Harmony Machine", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37408 + }, + "id": 37408, + "searchTerms": [], + "title": "Slip Out" + }, + { + "altTitles": [], + "artist": "OR-IF-IS", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37409 + }, + "id": 37409, + "searchTerms": [], + "title": "Horatio" + }, + { + "altTitles": [], + "artist": "Tommie Sunshine", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37414 + }, + "id": 37414, + "searchTerms": [], + "title": "Party Lights" + }, + { + "altTitles": [], + "artist": "DKC Crew", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37415 + }, + "id": 37415, + "searchTerms": [], + "title": "Taj He Spitz (Tommie Sunshine's Brooklyn Fire Re-Touch)" + }, + { + "altTitles": [], + "artist": "TAG", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37416 + }, + "id": 37416, + "searchTerms": [], + "title": "SABER WING (Akira Ishihara Headshot mix)" + }, + { + "altTitles": [], + "artist": "Harmony Machine", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37417 + }, + "id": 37417, + "searchTerms": [], + "title": "Slip Out (bounce in beat mix)" + }, + { + "altTitles": [], + "artist": "Bill Hamel feat. Kevens", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37418 + }, + "id": 37418, + "searchTerms": [], + "title": "Dance Celebration (System 7 Remix)" + }, + { + "altTitles": [], + "artist": "Lea Drop feat.Marissa Ship", + "data": { + "flareCategory": "GOLD", + "inGameID": 37419 + }, + "id": 37419, + "searchTerms": [], + "title": "JUST BELIEVE" + }, + { + "altTitles": [], + "artist": "U1 & Krystal B", + "data": { + "flareCategory": "WHITE", + "inGameID": 37420 + }, + "id": 37420, + "searchTerms": [], + "title": "escape" + }, + { + "altTitles": [], + "artist": "U1 night style", + "data": { + "flareCategory": "GOLD", + "inGameID": 37421 + }, + "id": 37421, + "searchTerms": [], + "title": "Settin' the Scene" + }, + { + "altTitles": [], + "artist": "DIGI-SEQ-BAND2000", + "data": { + "flareCategory": "WHITE", + "inGameID": 37422 + }, + "id": 37422, + "searchTerms": [], + "title": "Somehow You Found Me" + }, + { + "altTitles": [], + "artist": "DJ YOSHITAKA feat.Michaela Thurlow", + "data": { + "flareCategory": "WHITE", + "inGameID": 37423 + }, + "id": 37423, + "searchTerms": [], + "title": "SUPER HERO" + }, + { + "altTitles": [], + "artist": "The Remembers", + "data": { + "flareCategory": "GOLD", + "inGameID": 37424 + }, + "id": 37424, + "searchTerms": [], + "title": "Unity" + }, + { + "altTitles": [], + "artist": "NM feat.JaY_bEe (JB Ah-Fua)", + "data": { + "flareCategory": "GOLD", + "inGameID": 37425 + }, + "id": 37425, + "searchTerms": [], + "title": "Open Your Eyes" + }, + { + "altTitles": [], + "artist": "The Motion Sick", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37431 + }, + "id": 37431, + "searchTerms": [], + "title": "30 Lives (Up-Up-Down-Dance Mix)" + }, + { + "altTitles": [], + "artist": "Z-licious", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37432 + }, + "id": 37432, + "searchTerms": [], + "title": "Till the lonely's gone" + }, + { + "altTitles": [], + "artist": "NM feat.Heather Elmer", + "data": { + "flareCategory": "GOLD", + "inGameID": 37433 + }, + "id": 37433, + "searchTerms": [], + "title": "Closer to my Heart (jun remix)" + }, + { + "altTitles": [], + "artist": "TЁЯRA feat.宇宙戦隊NOIZ", + "data": { + "flareCategory": "GOLD", + "inGameID": 37435 + }, + "id": 37435, + "searchTerms": [], + "title": "鏡花水月楼 (DDR EDITION)" + }, + { + "altTitles": [], + "artist": "TOMOSUKE feat. Adreana", + "data": { + "flareCategory": "WHITE", + "inGameID": 37436 + }, + "id": 37436, + "searchTerms": [], + "title": "Dreamin’" + }, + { + "altTitles": [], + "artist": "DKC Crew", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37444 + }, + "id": 37444, + "searchTerms": [], + "title": "Inspiration" + }, + { + "altTitles": [], + "artist": "neuras", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37445 + }, + "id": 37445, + "searchTerms": [], + "title": "on the bounce" + }, + { + "altTitles": [], + "artist": "sonic-coll.", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37446 + }, + "id": 37446, + "searchTerms": [], + "title": "Trigger" + }, + { + "altTitles": [], + "artist": "neuras feat. Yurai", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37447 + }, + "id": 37447, + "searchTerms": [], + "title": "Dance Floor" + }, + { + "altTitles": [], + "artist": "D-crew feat.Matt Tucker", + "data": { + "flareCategory": "GOLD", + "inGameID": 37448 + }, + "id": 37448, + "searchTerms": [], + "title": "We Can Win The Fight" + }, + { + "altTitles": [], + "artist": "jun feat.Godis (Heather Twede)", + "data": { + "flareCategory": "GOLD", + "inGameID": 37449 + }, + "id": 37449, + "searchTerms": [], + "title": "Racing with Time (NAOKI's 999 remix)" + }, + { + "altTitles": [], + "artist": "dj TAKA", + "data": { + "flareCategory": "WHITE", + "inGameID": 37450 + }, + "id": 37450, + "searchTerms": [], + "title": "Desert Journey" + }, + { + "altTitles": [], + "artist": "jun", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37451 + }, + "id": 37451, + "searchTerms": [], + "title": "SILVER☆DREAM" + }, + { + "altTitles": [], + "artist": "DJ Yoshitaka feat.Robert \"RAab\" Stevenson", + "data": { + "flareCategory": "WHITE", + "inGameID": 37452 + }, + "id": 37452, + "searchTerms": [], + "title": "The Lonely Streets" + }, + { + "altTitles": [], + "artist": "Wendy Parr", + "data": { + "flareCategory": "WHITE", + "inGameID": 37453 + }, + "id": 37453, + "searchTerms": [], + "title": "Habibe (Antuh muhleke)" + }, + { + "altTitles": [], + "artist": "NAOKI underground", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37454 + }, + "id": 37454, + "searchTerms": [], + "title": "osaka EVOLVED -毎度、おおきに!- (TYPE1)" + }, + { + "altTitles": [], + "artist": "NAOKI underground", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37455 + }, + "id": 37455, + "searchTerms": [], + "title": "osaka EVOLVED -毎度、おおきに!- (TYPE2)" + }, + { + "altTitles": [], + "artist": "NAOKI underground", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37456 + }, + "id": 37456, + "searchTerms": [], + "title": "osaka EVOLVED -毎度、おおきに!- (TYPE3)" + }, + { + "altTitles": [], + "artist": "紅色リトマス", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37462 + }, + "id": 37462, + "searchTerms": [], + "title": "凛として咲く花の如く" + }, + { + "altTitles": [], + "artist": "TЁЯRA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37466 + }, + "id": 37466, + "searchTerms": [], + "title": "零 - ZERO -" + }, + { + "altTitles": [], + "artist": "NAOKI-EX", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37472 + }, + "id": 37472, + "searchTerms": [], + "title": "resonance" + }, + { + "altTitles": [], + "artist": "dj TAKA VS Ryu☆", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37484 + }, + "id": 37484, + "searchTerms": [], + "title": "Blue Rain" + }, + { + "altTitles": [], + "artist": "日本少年", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37485 + }, + "id": 37485, + "searchTerms": [], + "title": "Chance and Dice" + }, + { + "altTitles": [], + "artist": "180", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37487 + }, + "id": 37487, + "searchTerms": [], + "title": "PARANOiA(X-Special)" + }, + { + "altTitles": [], + "artist": "DE-SIRE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37488 + }, + "id": 37488, + "searchTerms": [], + "title": "TRIP MACHINE(X-Special)" + }, + { + "altTitles": [], + "artist": "190", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37489 + }, + "id": 37489, + "searchTerms": [], + "title": "PARANOiA MAX~DIRTY MIX~(X-Special)" + }, + { + "altTitles": [], + "artist": "DE-SIRE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37490 + }, + "id": 37490, + "searchTerms": [], + "title": "SP-TRIP MACHINE~JUNGLE MIX~(X-Special)" + }, + { + "altTitles": [], + "artist": "190'", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37491 + }, + "id": 37491, + "searchTerms": [], + "title": "PARANOiA Rebirth(X-Special)" + }, + { + "altTitles": [], + "artist": "RE-VENGE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37492 + }, + "id": 37492, + "searchTerms": [], + "title": "AFRONOVA(X-Special)" + }, + { + "altTitles": [], + "artist": "200", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37493 + }, + "id": 37493, + "searchTerms": [], + "title": "PARANOIA EVOLUTION(X-Special)" + }, + { + "altTitles": [], + "artist": "DE-SIRE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37494 + }, + "id": 37494, + "searchTerms": [], + "title": "TRIP MACHINE CLIMAX(X-Special)" + }, + { + "altTitles": [], + "artist": "STM 200", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37495 + }, + "id": 37495, + "searchTerms": [], + "title": "PARANOiA ETERNAL(X-Special)" + }, + { + "altTitles": [], + "artist": "DE-SIRE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37496 + }, + "id": 37496, + "searchTerms": [], + "title": "Healing Vision(X-Special)" + }, + { + "altTitles": [], + "artist": "Luv UNLIMITED", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37497 + }, + "id": 37497, + "searchTerms": [], + "title": "CANDY☆(X-Special)" + }, + { + "altTitles": [], + "artist": "Ω", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37498 + }, + "id": 37498, + "searchTerms": [], + "title": "MAX 300(X-Special)" + }, + { + "altTitles": [], + "artist": "Z", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37499 + }, + "id": 37499, + "searchTerms": [], + "title": "MAXX UNLIMITED(X-Special)" + }, + { + "altTitles": [], + "artist": "dj TAKA with NAOKI", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37500 + }, + "id": 37500, + "searchTerms": [], + "title": "革命(X-Special)" + }, + { + "altTitles": [], + "artist": "ZZ", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37501 + }, + "id": 37501, + "searchTerms": [], + "title": "The legend of MAX(X-Special)" + }, + { + "altTitles": [], + "artist": "DDR ALL STARS", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37502 + }, + "id": 37502, + "searchTerms": [], + "title": "Dance Dance Revolution(X-Special)" + }, + { + "altTitles": [], + "artist": "NAOKI feat. SMiLE.dk", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37504 + }, + "id": 37504, + "searchTerms": [], + "title": "A Geisha's Dream" + }, + { + "altTitles": [], + "artist": "Kotaro feat. Aya", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37511 + }, + "id": 37511, + "searchTerms": [], + "title": "in love wit you" + }, + { + "altTitles": [], + "artist": "Makoto feat. SK", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37512 + }, + "id": 37512, + "searchTerms": [], + "title": "real-high-SPEED" + }, + { + "altTitles": [], + "artist": "Pink Lemonade", + "data": { + "flareCategory": "NONE", + "inGameID": 37513 + }, + "id": 37513, + "searchTerms": [], + "title": "ポリリズム" + }, + { + "altTitles": [], + "artist": "NAOKI feat. Fracus", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37517 + }, + "id": 37517, + "searchTerms": [], + "title": "Rescue Me" + }, + { + "altTitles": [], + "artist": "nc ft. Eddie Kay", + "data": { + "flareCategory": "GOLD", + "inGameID": 37518 + }, + "id": 37518, + "searchTerms": [], + "title": "Be With You (Still Miss you)" + }, + { + "altTitles": [], + "artist": "TAG underground", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37520 + }, + "id": 37520, + "searchTerms": [], + "title": "roppongi EVOLVED ver.A" + }, + { + "altTitles": [], + "artist": "TAG underground", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37521 + }, + "id": 37521, + "searchTerms": [], + "title": "roppongi EVOLVED ver.B" + }, + { + "altTitles": [], + "artist": "TAG underground", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37522 + }, + "id": 37522, + "searchTerms": [], + "title": "roppongi EVOLVED ver.C" + }, + { + "altTitles": [], + "artist": "Lea Drop feat. McCall Clark", + "data": { + "flareCategory": "GOLD", + "inGameID": 37523 + }, + "id": 37523, + "searchTerms": [], + "title": "PARADISE" + }, + { + "altTitles": [], + "artist": "The W feat. Rita Boudreau", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37524 + }, + "id": 37524, + "searchTerms": [], + "title": "Find You Again" + }, + { + "altTitles": [], + "artist": "TAG", + "data": { + "flareCategory": "WHITE", + "inGameID": 37527 + }, + "id": 37527, + "searchTerms": [], + "title": "SABER WING (satellite silhouette remix)" + }, + { + "altTitles": [], + "artist": "鍋嶋圭一", + "data": { + "flareCategory": "WHITE", + "inGameID": 37530 + }, + "id": 37530, + "searchTerms": [], + "title": "New Generation" + }, + { + "altTitles": [], + "artist": "U1 feat. Tammy S. Hansen", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37532 + }, + "id": 37532, + "searchTerms": [], + "title": "Taking It To The Sky" + }, + { + "altTitles": [], + "artist": "atomsoak ft. cerol", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37537 + }, + "id": 37537, + "searchTerms": [], + "title": "Private Eye" + }, + { + "altTitles": [], + "artist": "atomsoak ft. cerol", + "data": { + "flareCategory": "WHITE", + "inGameID": 37538 + }, + "id": 37538, + "searchTerms": [], + "title": "Tell me what to do" + }, + { + "altTitles": [], + "artist": "nc ft. NRG Factory", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37539 + }, + "id": 37539, + "searchTerms": [], + "title": "Freeze" + }, + { + "altTitles": [], + "artist": "Architect ft. Jasmine Nii", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37540 + }, + "id": 37540, + "searchTerms": [], + "title": "Haunted Rhapsody" + }, + { + "altTitles": [], + "artist": "nc ft. Electric Touch", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37541 + }, + "id": 37541, + "searchTerms": [], + "title": "Wicked Plastik" + }, + { + "altTitles": [], + "artist": "nc ft. Jasmine Nii", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37542 + }, + "id": 37542, + "searchTerms": [], + "title": "Something Special" + }, + { + "altTitles": [], + "artist": "TAG feat. Eric Anthony", + "data": { + "flareCategory": "WHITE", + "inGameID": 37543 + }, + "id": 37543, + "searchTerms": [], + "title": "The Island Song" + }, + { + "altTitles": [], + "artist": "Jena Rose", + "data": { + "flareCategory": "GOLD", + "inGameID": 37544 + }, + "id": 37544, + "searchTerms": [], + "title": "On the Night of a Still Wind" + }, + { + "altTitles": [], + "artist": "TЁЯRA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37545 + }, + "id": 37545, + "searchTerms": [], + "title": "Sacred Oath" + }, + { + "altTitles": [], + "artist": "Black Rose Garden", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37546 + }, + "id": 37546, + "searchTerms": [], + "title": "What Will Come of Me" + }, + { + "altTitles": [], + "artist": "Bill Hamel & Derek James feat. James Rowand", + "data": { + "flareCategory": "WHITE", + "inGameID": 37551 + }, + "id": 37551, + "searchTerms": [], + "title": "Hoping To Be Good" + }, + { + "altTitles": [], + "artist": "OR-IF-IS", + "data": { + "flareCategory": "GOLD", + "inGameID": 37562 + }, + "id": 37562, + "searchTerms": [], + "title": "Curry Up" + }, + { + "altTitles": [], + "artist": "Harmony Machine", + "data": { + "flareCategory": "GOLD", + "inGameID": 37563 + }, + "id": 37563, + "searchTerms": [], + "title": "Take Me" + }, + { + "altTitles": [], + "artist": "Bill Hamel & James Rowand", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37564 + }, + "id": 37564, + "searchTerms": [], + "title": "In The Air" + }, + { + "altTitles": [], + "artist": "Tommie Sunshine", + "data": { + "flareCategory": "WHITE", + "inGameID": 37565 + }, + "id": 37565, + "searchTerms": [], + "title": "Ah La La La" + }, + { + "altTitles": [], + "artist": "Jena Rose", + "data": { + "flareCategory": "WHITE", + "inGameID": 37570 + }, + "id": 37570, + "searchTerms": [], + "title": "Bombay Bomb" + }, + { + "altTitles": [], + "artist": "TOMOSUKE feat. Adreana", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37571 + }, + "id": 37571, + "searchTerms": [], + "title": "Shine" + }, + { + "altTitles": [], + "artist": "NM feat. Mr. E.", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37572 + }, + "id": 37572, + "searchTerms": [], + "title": "Love Again" + }, + { + "altTitles": [], + "artist": "TAG feat. Angie Lee", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37584 + }, + "id": 37584, + "searchTerms": [], + "title": "Heatstroke" + }, + { + "altTitles": [], + "artist": "TAG feat. Sydney Powers", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37585 + }, + "id": 37585, + "searchTerms": [], + "title": "Take A Step Forward" + }, + { + "altTitles": [], + "artist": "U1 (NPD3 style) & KIDD KAZMEO", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37586 + }, + "id": 37586, + "searchTerms": [], + "title": "IN THE ZONE" + }, + { + "altTitles": [], + "artist": "NM feat. Aleisha G", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37587 + }, + "id": 37587, + "searchTerms": [], + "title": "TIME" + }, + { + "altTitles": [], + "artist": "Brooke", + "data": { + "flareCategory": "WHITE", + "inGameID": 37588 + }, + "id": 37588, + "searchTerms": [], + "title": "Everything I Need" + }, + { + "altTitles": [], + "artist": "jun", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37589 + }, + "id": 37589, + "searchTerms": [], + "title": "KIMONO♥PRINCESS" + }, + { + "altTitles": [], + "artist": "Brenda Burch", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37590 + }, + "id": 37590, + "searchTerms": [], + "title": "Share The Love" + }, + { + "altTitles": [], + "artist": "NAOKI feat. Aleisha G", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37595 + }, + "id": 37595, + "searchTerms": [], + "title": "A Brighter Day" + }, + { + "altTitles": [], + "artist": "Tommie Sunshine", + "data": { + "flareCategory": "WHITE", + "inGameID": 37596 + }, + "id": 37596, + "searchTerms": [], + "title": "Party Lights (Tommie Sunshine's Brooklyn Fire Remix)" + }, + { + "altTitles": [], + "artist": "NM feat. Anjanette Mickelsen", + "data": { + "flareCategory": "WHITE", + "inGameID": 37597 + }, + "id": 37597, + "searchTerms": [], + "title": "You" + }, + { + "altTitles": [], + "artist": "jun feat. Sonnet", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37599 + }, + "id": 37599, + "searchTerms": [], + "title": "THIS NIGHT" + }, + { + "altTitles": [], + "artist": "NMR runners", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37600 + }, + "id": 37600, + "searchTerms": [], + "title": "Get Back Up!" + }, + { + "altTitles": [], + "artist": "U1 /F Anneliese", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37601 + }, + "id": 37601, + "searchTerms": [], + "title": "The Heavens Above" + }, + { + "altTitles": [], + "artist": "NAOKI feat. Aleisha G", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37602 + }, + "id": 37602, + "searchTerms": [], + "title": "Gotta Dance" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 37607 + }, + "id": 37607, + "searchTerms": [], + "title": "おどるポンポコリン" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 37608 + }, + "id": 37608, + "searchTerms": [], + "title": "空色デイズ" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 37609 + }, + "id": 37609, + "searchTerms": [], + "title": "創聖のアクエリオン" + }, + { + "altTitles": [], + "artist": "NAOKI feat. Anna Kaelin", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37613 + }, + "id": 37613, + "searchTerms": [], + "title": "You are a Star" + }, + { + "altTitles": [], + "artist": "Preston Powis", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37614 + }, + "id": 37614, + "searchTerms": [], + "title": "Seule" + }, + { + "altTitles": [], + "artist": "Cheryl Horrocks", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37615 + }, + "id": 37615, + "searchTerms": [], + "title": "La libertad" + }, + { + "altTitles": [], + "artist": "Philip Webb", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37616 + }, + "id": 37616, + "searchTerms": [], + "title": "Until the End" + }, + { + "altTitles": [], + "artist": "NAOKI feat. Brenda Burch", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37617 + }, + "id": 37617, + "searchTerms": [], + "title": "Let's Get Away" + }, + { + "altTitles": [], + "artist": "Carlos Coco Garcia", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37618 + }, + "id": 37618, + "searchTerms": [], + "title": "La receta" + }, + { + "altTitles": [], + "artist": "D-crew with VAL TIATIA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37623 + }, + "id": 37623, + "searchTerms": [], + "title": "Crazy Control" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 37630 + }, + "id": 37630, + "searchTerms": [], + "title": "HOT LIMIT" + }, + { + "altTitles": [], + "artist": "DJ YOSHITAKA-G feat.Michael a la mode", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37638 + }, + "id": 37638, + "searchTerms": [], + "title": "GOLD RUSH" + }, + { + "altTitles": [], + "artist": "StripE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37639 + }, + "id": 37639, + "searchTerms": [], + "title": "FIRE FIRE" + }, + { + "altTitles": [], + "artist": "kors k", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37640 + }, + "id": 37640, + "searchTerms": [], + "title": "smooooch・∀・" + }, + { + "altTitles": [], + "artist": "Remixed by DJ Command", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37641 + }, + "id": 37641, + "searchTerms": [], + "title": "Dazzlin' Darlin-秋葉工房mix-" + }, + { + "altTitles": [], + "artist": "HHH", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37642 + }, + "id": 37642, + "searchTerms": [], + "title": "Dazzlin' Darlin" + }, + { + "altTitles": [], + "artist": "Amuro vs Killer", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37643 + }, + "id": 37643, + "searchTerms": [], + "title": "冥" + }, + { + "altTitles": [], + "artist": "Zektbach", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37644 + }, + "id": 37644, + "searchTerms": [], + "title": "ZETA~素数の世界と超越者~" + }, + { + "altTitles": [], + "artist": "Ryu☆", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37645 + }, + "id": 37645, + "searchTerms": [], + "title": "Second Heaven" + }, + { + "altTitles": [], + "artist": "朱雀", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37646 + }, + "id": 37646, + "searchTerms": [], + "title": "VANESSA" + }, + { + "altTitles": [], + "artist": "Risk Junk", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37647 + }, + "id": 37647, + "searchTerms": [], + "title": "不沈艦CANDY" + }, + { + "altTitles": [], + "artist": "SUPER STAR 満-MITSURU-", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37648 + }, + "id": 37648, + "searchTerms": [], + "title": "She is my wife" + }, + { + "altTitles": [], + "artist": "TAG underground", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37649 + }, + "id": 37649, + "searchTerms": [], + "title": "POSSESSION" + }, + { + "altTitles": [], + "artist": "Latenighters", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37650 + }, + "id": 37650, + "searchTerms": [], + "title": "CG Project" + }, + { + "altTitles": [], + "artist": "Orbit1 & Milo", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37651 + }, + "id": 37651, + "searchTerms": [], + "title": "Anti-Matter" + }, + { + "altTitles": [], + "artist": "kors k feat.ЯIRE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37652 + }, + "id": 37652, + "searchTerms": [], + "title": "All My Love" + }, + { + "altTitles": [], + "artist": "Remixed by DJ Command", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37653 + }, + "id": 37653, + "searchTerms": [], + "title": "KISS KISS KISS 秋葉工房 MIX" + }, + { + "altTitles": [], + "artist": "Y&Co.", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37654 + }, + "id": 37654, + "searchTerms": [], + "title": "WH1TE RO5E" + }, + { + "altTitles": [], + "artist": "J-Mi & Midi-D feat. Hanna Stockzell", + "data": { + "flareCategory": "WHITE", + "inGameID": 37655 + }, + "id": 37655, + "searchTerms": [], + "title": "Top The Charts" + }, + { + "altTitles": [], + "artist": "DKC Crew", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37657 + }, + "id": 37657, + "searchTerms": [], + "title": "Rhythms Inside" + }, + { + "altTitles": [], + "artist": "Sota F. feat.Anna", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37659 + }, + "id": 37659, + "searchTerms": [], + "title": "Sky Is The Limit" + }, + { + "altTitles": [], + "artist": "Sota F.", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37660 + }, + "id": 37660, + "searchTerms": [], + "title": "New Decade" + }, + { + "altTitles": [], + "artist": "NAOKI underground", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37661 + }, + "id": 37661, + "searchTerms": [], + "title": "Poseidon(kors k mix)" + }, + { + "altTitles": [], + "artist": "Ryu☆", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37662 + }, + "id": 37662, + "searchTerms": [], + "title": "Sakura Sunrise" + }, + { + "altTitles": [], + "artist": "JAKAZiD feat. K.N.", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37663 + }, + "id": 37663, + "searchTerms": [], + "title": "Pierce The Sky" + }, + { + "altTitles": [], + "artist": "kors k Vs. dj TAKA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37664 + }, + "id": 37664, + "searchTerms": [], + "title": "Decade" + }, + { + "altTitles": [], + "artist": "TAG underground", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37665 + }, + "id": 37665, + "searchTerms": [], + "title": "roppongi EVOLVED ver.D" + }, + { + "altTitles": [], + "artist": "dj TAKA feat.Kanako Hoshino", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37666 + }, + "id": 37666, + "searchTerms": [], + "title": "DROP" + }, + { + "altTitles": [], + "artist": "ピンクターボ", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37667 + }, + "id": 37667, + "searchTerms": [], + "title": "☆shining☆" + }, + { + "altTitles": [], + "artist": "杏野はるな", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37668 + }, + "id": 37668, + "searchTerms": [], + "title": "someday..." + }, + { + "altTitles": [], + "artist": "Spriggan", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37684 + }, + "id": 37684, + "searchTerms": [], + "title": "Valkyrie dimension" + }, + { + "altTitles": [], + "artist": "CAPACITY GATE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37685 + }, + "id": 37685, + "searchTerms": [], + "title": "Shiny World" + }, + { + "altTitles": [], + "artist": "SHIN SOUND DESIGN feat.Naomi Koizumi", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37686 + }, + "id": 37686, + "searchTerms": [], + "title": "BALLAD THE FEATHERS" + }, + { + "altTitles": [], + "artist": "colors", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37687 + }, + "id": 37687, + "searchTerms": [], + "title": "going up" + }, + { + "altTitles": [], + "artist": "seiya-murai meets “eimy”", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37688 + }, + "id": 37688, + "searchTerms": [], + "title": "Leaving…" + }, + { + "altTitles": [], + "artist": "DJ YOSHITAKA feat. 星野奏子", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37689 + }, + "id": 37689, + "searchTerms": [], + "title": "MAX LOVE" + }, + { + "altTitles": [], + "artist": "Noria", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37690 + }, + "id": 37690, + "searchTerms": [], + "title": "Melody Life" + }, + { + "altTitles": [], + "artist": "DJ TECHNORCH", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37691 + }, + "id": 37691, + "searchTerms": [], + "title": "888" + }, + { + "altTitles": [], + "artist": "DM Ashura", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37692 + }, + "id": 37692, + "searchTerms": [], + "title": "aftershock!!" + }, + { + "altTitles": [], + "artist": "DM Ashura", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37693 + }, + "id": 37693, + "searchTerms": [], + "title": "ΔMAX" + }, + { + "altTitles": [], + "artist": "kors k", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37694 + }, + "id": 37694, + "searchTerms": [], + "title": "dirty digital" + }, + { + "altTitles": [], + "artist": "RAM", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37695 + }, + "id": 37695, + "searchTerms": [], + "title": "Dummy" + }, + { + "altTitles": [], + "artist": "Ryu☆", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37696 + }, + "id": 37696, + "searchTerms": [], + "title": "sakura storm" + }, + { + "altTitles": [], + "artist": "DM Ashura feat. kors k", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37697 + }, + "id": 37697, + "searchTerms": [], + "title": "Your Angel" + }, + { + "altTitles": [], + "artist": "kors k", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37698 + }, + "id": 37698, + "searchTerms": [], + "title": "oarfish" + }, + { + "altTitles": [], + "artist": "jun & NRG Factory feat. Anna Kaelin", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37731 + }, + "id": 37731, + "searchTerms": [], + "title": "dreaming can make a wish come true" + }, + { + "altTitles": [], + "artist": "TOMOSUKE feat. Crystal Paloa", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37733 + }, + "id": 37733, + "searchTerms": [], + "title": "Seasons" + }, + { + "altTitles": [], + "artist": "jun", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37734 + }, + "id": 37734, + "searchTerms": [], + "title": "CRAZY♥LOVE" + }, + { + "altTitles": [], + "artist": "D-crew with Melissa Petty", + "data": { + "flareCategory": "WHITE", + "inGameID": 37735 + }, + "id": 37735, + "searchTerms": [], + "title": "One Sided Love" + }, + { + "altTitles": [], + "artist": "Lea Drop feat. Katie Dellenbach", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37736 + }, + "id": 37736, + "searchTerms": [], + "title": "MAGIC PARADE" + }, + { + "altTitles": [], + "artist": "TЁЯRA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37740 + }, + "id": 37740, + "searchTerms": [], + "title": "ever snow" + }, + { + "altTitles": [], + "artist": "Ryu☆", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37749 + }, + "id": 37749, + "searchTerms": [], + "title": "I'm so Happy" + }, + { + "altTitles": [], + "artist": "TAG", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37750 + }, + "id": 37750, + "searchTerms": [], + "title": "Theory of Eternity" + }, + { + "altTitles": [], + "artist": "TAG underground", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37752 + }, + "id": 37752, + "searchTerms": [], + "title": "London EVOLVED ver.A" + }, + { + "altTitles": [], + "artist": "TAG underground", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37753 + }, + "id": 37753, + "searchTerms": [], + "title": "London EVOLVED ver.B" + }, + { + "altTitles": [], + "artist": "TAG underground", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37754 + }, + "id": 37754, + "searchTerms": [], + "title": "London EVOLVED ver.C" + }, + { + "altTitles": [], + "artist": "jun feat. Sarah-Jane", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37755 + }, + "id": 37755, + "searchTerms": [], + "title": "UNBELIEVABLE (Sparky remix)" + }, + { + "altTitles": [], + "artist": "jun feat. DJ Silver vs Milo ft. Becca Hossany", + "data": { + "flareCategory": "WHITE", + "inGameID": 37756 + }, + "id": 37756, + "searchTerms": [], + "title": "Back In Your Arms" + }, + { + "altTitles": [], + "artist": "DKC Crew", + "data": { + "flareCategory": "WHITE", + "inGameID": 37758 + }, + "id": 37758, + "searchTerms": [], + "title": "Dance Partay" + }, + { + "altTitles": [], + "artist": "J-Mi & Midi-D", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37762 + }, + "id": 37762, + "searchTerms": [], + "title": "Wings of an Angel (Fly With Me)" + }, + { + "altTitles": [], + "artist": "U1 ft. Becca Hossany", + "data": { + "flareCategory": "GOLD", + "inGameID": 37763 + }, + "id": 37763, + "searchTerms": [], + "title": "Surrender (PureFocus remix)" + }, + { + "altTitles": [], + "artist": "Lazy U1 ft. Fraz & Chalk E", + "data": { + "flareCategory": "WHITE", + "inGameID": 37764 + }, + "id": 37764, + "searchTerms": [], + "title": "Summer fantasy (Darwin remix)" + }, + { + "altTitles": [], + "artist": "NAOKI feat. Becca Hossany", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37765 + }, + "id": 37765, + "searchTerms": [], + "title": "HEARTBREAK (Sound Selektaz remix)" + }, + { + "altTitles": [], + "artist": "nc ft SAK.", + "data": { + "flareCategory": "WHITE", + "inGameID": 37767 + }, + "id": 37767, + "searchTerms": [], + "title": "Find The Way" + }, + { + "altTitles": [], + "artist": "TAG", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37775 + }, + "id": 37775, + "searchTerms": [], + "title": "Diamond Dust" + }, + { + "altTitles": [], + "artist": "TAG", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37776 + }, + "id": 37776, + "searchTerms": [], + "title": "HEART BEAT FORMULA" + }, + { + "altTitles": [], + "artist": "CLIMAX of MAXX 360", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37777 + }, + "id": 37777, + "searchTerms": [], + "title": "PARANOiA Revolution" + }, + { + "altTitles": [], + "artist": "DE-JAVU", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37778 + }, + "id": 37778, + "searchTerms": [], + "title": "TRIP MACHINE EVOLUTION" + }, + { + "altTitles": [], + "artist": "L.E.D.-G", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37779 + }, + "id": 37779, + "searchTerms": [], + "title": "NEPHILIM DELTA" + }, + { + "altTitles": [], + "artist": "Lucky Vacuum", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37780 + }, + "id": 37780, + "searchTerms": [], + "title": "ビューティフル レシート" + }, + { + "altTitles": [], + "artist": "seiya-murai meets “eimy”", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37781 + }, + "id": 37781, + "searchTerms": [], + "title": "REBORN MAGIC" + }, + { + "altTitles": [], + "artist": "Mystic Moon", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37782 + }, + "id": 37782, + "searchTerms": [], + "title": "Amalgamation" + }, + { + "altTitles": [], + "artist": "Sota Fujimori", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37783 + }, + "id": 37783, + "searchTerms": [], + "title": "New Beginning" + }, + { + "altTitles": [], + "artist": "Sota F. feat. Carol Gadsden", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37784 + }, + "id": 37784, + "searchTerms": [], + "title": "Fever" + }, + { + "altTitles": [], + "artist": "猫叉Master", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37785 + }, + "id": 37785, + "searchTerms": [], + "title": "Tribe" + }, + { + "altTitles": [], + "artist": "Dormir", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37786 + }, + "id": 37786, + "searchTerms": [], + "title": "Resurrection" + }, + { + "altTitles": [], + "artist": "Ryu☆", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37787 + }, + "id": 37787, + "searchTerms": [], + "title": "I/O" + }, + { + "altTitles": [], + "artist": "kors k", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37788 + }, + "id": 37788, + "searchTerms": [], + "title": "Programmed Universe" + }, + { + "altTitles": [], + "artist": "2.1MB underground", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37789 + }, + "id": 37789, + "searchTerms": [], + "title": "Tohoku EVOLVED" + }, + { + "altTitles": [], + "artist": "NM", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37793 + }, + "id": 37793, + "searchTerms": [], + "title": "LOVE IS THE POWER -Re:born-" + }, + { + "altTitles": [], + "artist": "Cream puff", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37794 + }, + "id": 37794, + "searchTerms": [], + "title": "Mermaid girl" + }, + { + "altTitles": [], + "artist": "kors k", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37795 + }, + "id": 37795, + "searchTerms": [], + "title": "SigSig" + }, + { + "altTitles": [], + "artist": "TЁЯRA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37796 + }, + "id": 37796, + "searchTerms": [], + "title": "天上の星~黎明記~" + }, + { + "altTitles": [], + "artist": "あさき", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37797 + }, + "id": 37797, + "searchTerms": [], + "title": "雫" + }, + { + "altTitles": [], + "artist": "dj TAKA feat.flare", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37798 + }, + "id": 37798, + "searchTerms": [], + "title": "message" + }, + { + "altTitles": [], + "artist": "DJ YOSHITAKA", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37799 + }, + "id": 37799, + "searchTerms": [], + "title": "FLOWER" + }, + { + "altTitles": [], + "artist": "seiya-murai feat.ALT", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37800 + }, + "id": 37800, + "searchTerms": [], + "title": "隅田川夏恋歌" + }, + { + "altTitles": [], + "artist": "TAG", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37801 + }, + "id": 37801, + "searchTerms": [], + "title": "アルストロメリア (walk with you remix)" + }, + { + "altTitles": [], + "artist": "ギラギラメガネ団", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37802 + }, + "id": 37802, + "searchTerms": [], + "title": "繚乱ヒットチャート" + }, + { + "altTitles": [], + "artist": "TAG", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37803 + }, + "id": 37803, + "searchTerms": [], + "title": "Chronos" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 37805 + }, + "id": 37805, + "searchTerms": [], + "title": "コネクト" + }, + { + "altTitles": [], + "artist": "Another Infinity feat. Mayumi Morinaga", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37810 + }, + "id": 37810, + "searchTerms": [], + "title": "COME BACK TO MY HEART" + }, + { + "altTitles": [], + "artist": "NAOKI underground", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37811 + }, + "id": 37811, + "searchTerms": [], + "title": "tokyoEVOLVED (TYPE1)" + }, + { + "altTitles": [], + "artist": "NAOKI underground", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37812 + }, + "id": 37812, + "searchTerms": [], + "title": "tokyoEVOLVED (TYPE2)" + }, + { + "altTitles": [], + "artist": "NAOKI underground", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37813 + }, + "id": 37813, + "searchTerms": [], + "title": "tokyoEVOLVED (TYPE3)" + }, + { + "altTitles": [], + "artist": "NC underground", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37814 + }, + "id": 37814, + "searchTerms": [], + "title": "New York EVOLVED (Type A)" + }, + { + "altTitles": [], + "artist": "NC underground", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37815 + }, + "id": 37815, + "searchTerms": [], + "title": "New York EVOLVED (Type B)" + }, + { + "altTitles": [], + "artist": "NC underground", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37816 + }, + "id": 37816, + "searchTerms": [], + "title": "New York EVOLVED (Type C)" + }, + { + "altTitles": [], + "artist": "Harmony Machine", + "data": { + "flareCategory": "WHITE", + "inGameID": 37827 + }, + "id": 37827, + "searchTerms": [], + "title": "Sucka Luva" + }, + { + "altTitles": [], + "artist": "Harmony Machine", + "data": { + "flareCategory": "WHITE", + "inGameID": 37828 + }, + "id": 37828, + "searchTerms": [], + "title": "Children of the Beat" + }, + { + "altTitles": [], + "artist": "TOMOSUKE feat. Alexa Slaymaker", + "data": { + "flareCategory": "WHITE", + "inGameID": 37829 + }, + "id": 37829, + "searchTerms": [], + "title": "Diamond Night" + }, + { + "altTitles": [], + "artist": "Design-MAD crew", + "data": { + "flareCategory": "WHITE", + "inGameID": 37834 + }, + "id": 37834, + "searchTerms": [], + "title": "Summer Fairytale" + }, + { + "altTitles": [], + "artist": "Des-ROW Ft. Maxi Priest", + "data": { + "flareCategory": "GOLD", + "inGameID": 37836 + }, + "id": 37836, + "searchTerms": [], + "title": "SAY A PRAYER" + }, + { + "altTitles": [], + "artist": "jun", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37840 + }, + "id": 37840, + "searchTerms": [], + "title": "TWINKLE♡HEART" + }, + { + "altTitles": [], + "artist": "TAG underground", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37859 + }, + "id": 37859, + "searchTerms": [], + "title": "REVOLUTIONARY ADDICT" + }, + { + "altTitles": [], + "artist": "U1 overground", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37860 + }, + "id": 37860, + "searchTerms": [], + "title": "Go For The Top" + }, + { + "altTitles": [], + "artist": "N.M.R", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37861 + }, + "id": 37861, + "searchTerms": [], + "title": "KEEP ON MOVIN' (Y&Co. DJ BOSS remix)" + }, + { + "altTitles": [], + "artist": "UZI-LAY", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37862 + }, + "id": 37862, + "searchTerms": [], + "title": "PUT YOUR FAITH IN ME (DA's Twinkly Disco Remix)" + }, + { + "altTitles": [], + "artist": "DE-SIRE", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37863 + }, + "id": 37863, + "searchTerms": [], + "title": "TRIP MACHINE (xac nanoglide mix)" + }, + { + "altTitles": [], + "artist": "NAOKI", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37864 + }, + "id": 37864, + "searchTerms": [], + "title": "BRILLIANT 2U (AKBK MIX)" + }, + { + "altTitles": [], + "artist": "180", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37865 + }, + "id": 37865, + "searchTerms": [], + "title": "PARANOiA (kskst mix)" + }, + { + "altTitles": [], + "artist": "TAG", + "data": { + "flareCategory": "WHITE", + "inGameID": 37866 + }, + "id": 37866, + "searchTerms": [], + "title": "Another Phase" + }, + { + "altTitles": [], + "artist": "Sota F.", + "data": { + "flareCategory": "WHITE", + "inGameID": 37867 + }, + "id": 37867, + "searchTerms": [], + "title": "Blew My Mind" + }, + { + "altTitles": [], + "artist": "S-C-U", + "data": { + "flareCategory": "WHITE", + "inGameID": 37868 + }, + "id": 37868, + "searchTerms": [], + "title": "heron" + }, + { + "altTitles": [], + "artist": "猫叉Master+", + "data": { + "flareCategory": "WHITE", + "inGameID": 37869 + }, + "id": 37869, + "searchTerms": [], + "title": "nightbird lost wing" + }, + { + "altTitles": [], + "artist": "REDALiCE feat. anporin", + "data": { + "flareCategory": "WHITE", + "inGameID": 37870 + }, + "id": 37870, + "searchTerms": [], + "title": "Beautiful Dream" + }, + { + "altTitles": [], + "artist": "Remo-con", + "data": { + "flareCategory": "WHITE", + "inGameID": 37871 + }, + "id": 37871, + "searchTerms": [], + "title": "Condor" + }, + { + "altTitles": [], + "artist": "Qrispy Joybox", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37881 + }, + "id": 37881, + "searchTerms": [], + "title": "snow prism" + }, + { + "altTitles": [], + "artist": "PON", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37882 + }, + "id": 37882, + "searchTerms": [], + "title": "紅焔" + }, + { + "altTitles": [], + "artist": "TAG", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37883 + }, + "id": 37883, + "searchTerms": [], + "title": "Cosmic Hurricane" + }, + { + "altTitles": [], + "artist": "2B-Waves", + "data": { + "flareCategory": "CLASSIC", + "inGameID": 37884 + }, + "id": 37884, + "searchTerms": [], + "title": "恋閃繚乱" + }, + { + "altTitles": [], + "artist": "ロマンチック♡Prim姫", + "data": { + "flareCategory": "WHITE", + "inGameID": 37885 + }, + "id": 37885, + "searchTerms": [], + "title": "ヤマトなでなで♡かぐや姫" + }, + { + "altTitles": [], + "artist": "Darwin", + "data": { + "flareCategory": "WHITE", + "inGameID": 37886 + }, + "id": 37886, + "searchTerms": [], + "title": "Air Heroes" + }, + { + "altTitles": [], + "artist": "nc ft. NRG Factory", + "data": { + "flareCategory": "WHITE", + "inGameID": 37887 + }, + "id": 37887, + "searchTerms": [], + "title": "Elysium" + }, + { + "altTitles": [], + "artist": "DJ UTO vs. Starving Trancer feat. Mayumi Morinaga", + "data": { + "flareCategory": "WHITE", + "inGameID": 37889 + }, + "id": 37889, + "searchTerms": [], + "title": "ずっとみつめていて (Ryu☆Remix)" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 37891 + }, + "id": 37891, + "searchTerms": [], + "title": "マジLOVE1000%" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 37892 + }, + "id": 37892, + "searchTerms": [], + "title": "つけまつける" + }, + { + "altTitles": [], + "artist": "Mutsuhiko Izumi", + "data": { + "flareCategory": "WHITE", + "inGameID": 37893 + }, + "id": 37893, + "searchTerms": [], + "title": "Spanish Snowy Dance" + }, + { + "altTitles": [], + "artist": "阿部靖広 feat. Strawberry Wink", + "data": { + "flareCategory": "WHITE", + "inGameID": 37894 + }, + "id": 37894, + "searchTerms": [], + "title": "ちゅ~いん☆バニー" + }, + { + "altTitles": [], + "artist": "Starving Trancer", + "data": { + "flareCategory": "WHITE", + "inGameID": 37895 + }, + "id": 37895, + "searchTerms": [], + "title": "New Gravity" + }, + { + "altTitles": [], + "artist": "矢鴇つかさ feat. 三澤秋", + "data": { + "flareCategory": "WHITE", + "inGameID": 37896 + }, + "id": 37896, + "searchTerms": [], + "title": "Straight Oath" + }, + { + "altTitles": [], + "artist": "Wall5", + "data": { + "flareCategory": "WHITE", + "inGameID": 37897 + }, + "id": 37897, + "searchTerms": [], + "title": "south" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 37898 + }, + "id": 37898, + "searchTerms": [], + "title": "BRIGHT STREAM" + }, + { + "altTitles": [], + "artist": "Royz", + "data": { + "flareCategory": "WHITE", + "inGameID": 37900 + }, + "id": 37900, + "searchTerms": [], + "title": "Starry HEAVEN" + }, + { + "altTitles": [], + "artist": "Royz", + "data": { + "flareCategory": "WHITE", + "inGameID": 37901 + }, + "id": 37901, + "searchTerms": [], + "title": "ACROSS WORLD" + }, + { + "altTitles": [], + "artist": "Royz", + "data": { + "flareCategory": "WHITE", + "inGameID": 37902 + }, + "id": 37902, + "searchTerms": [], + "title": "JOKER" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 37903 + }, + "id": 37903, + "searchTerms": [], + "title": "ヘビーローテーション" + }, + { + "altTitles": [], + "artist": "world sequence", + "data": { + "flareCategory": "WHITE", + "inGameID": 37905 + }, + "id": 37905, + "searchTerms": [], + "title": "Qipchāq" + }, + { + "altTitles": [], + "artist": "Mystic Moon", + "data": { + "flareCategory": "WHITE", + "inGameID": 37906 + }, + "id": 37906, + "searchTerms": [], + "title": "IMANOGUILTS" + }, + { + "altTitles": [], + "artist": "kors k", + "data": { + "flareCategory": "WHITE", + "inGameID": 37907 + }, + "id": 37907, + "searchTerms": [], + "title": "Monkey Business" + }, + { + "altTitles": [], + "artist": "Tatsh", + "data": { + "flareCategory": "WHITE", + "inGameID": 37908 + }, + "id": 37908, + "searchTerms": [], + "title": "WILD SIDE" + }, + { + "altTitles": [], + "artist": "日向美ビタースイーツ♪", + "data": { + "flareCategory": "WHITE", + "inGameID": 37910 + }, + "id": 37910, + "searchTerms": [], + "title": "めうめうぺったんたん!!" + }, + { + "altTitles": [], + "artist": "dj TAKA meets DJ YOSHITAKA", + "data": { + "flareCategory": "WHITE", + "inGameID": 37912 + }, + "id": 37912, + "searchTerms": [], + "title": "Elemental Creation" + }, + { + "altTitles": [], + "artist": "Mutsuhiko Izumi & S-C-U", + "data": { + "flareCategory": "WHITE", + "inGameID": 37913 + }, + "id": 37913, + "searchTerms": [], + "title": "ラキラキ" + }, + { + "altTitles": [], + "artist": "TOMOSUKE × seiya-murai feat. ALT", + "data": { + "flareCategory": "WHITE", + "inGameID": 37914 + }, + "id": 37914, + "searchTerms": [], + "title": "晴天Bon Voyage" + }, + { + "altTitles": [], + "artist": "MAX MAXIMIZER VS DJ TOTTO", + "data": { + "flareCategory": "WHITE", + "inGameID": 37915 + }, + "id": 37915, + "searchTerms": [], + "title": "STULTI" + }, + { + "altTitles": [], + "artist": "Akhuta y OJ", + "data": { + "flareCategory": "WHITE", + "inGameID": 37916 + }, + "id": 37916, + "searchTerms": [], + "title": "虹色の花" + }, + { + "altTitles": [], + "artist": "大日本鉄倶楽部【あさき&96】", + "data": { + "flareCategory": "WHITE", + "inGameID": 37917 + }, + "id": 37917, + "searchTerms": [], + "title": "お米の美味しい炊き方、そしてお米を食べることによるその効果。" + }, + { + "altTitles": [], + "artist": "PON+wac", + "data": { + "flareCategory": "WHITE", + "inGameID": 37918 + }, + "id": 37918, + "searchTerms": [], + "title": "創世ノート" + }, + { + "altTitles": [], + "artist": "TAG×U1-ASAMi", + "data": { + "flareCategory": "WHITE", + "inGameID": 37919 + }, + "id": 37919, + "searchTerms": [], + "title": "Synergy For Angels" + }, + { + "altTitles": [], + "artist": "Sota÷Des", + "data": { + "flareCategory": "WHITE", + "inGameID": 37920 + }, + "id": 37920, + "searchTerms": [], + "title": "Empathetic" + }, + { + "altTitles": [], + "artist": "猫叉L.E.D.Master+", + "data": { + "flareCategory": "WHITE", + "inGameID": 37921 + }, + "id": 37921, + "searchTerms": [], + "title": "GAIA" + }, + { + "altTitles": [], + "artist": "Risk Junk", + "data": { + "flareCategory": "NONE", + "inGameID": 37922 + }, + "id": 37922, + "searchTerms": [], + "title": "LOVE & JOY -Risk Junk MIX-" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 37923 + }, + "id": 37923, + "searchTerms": [], + "title": "ジョジョ~その血の運命~" + }, + { + "altTitles": [], + "artist": "Ryu☆ feat.Mayumi Morinaga", + "data": { + "flareCategory": "WHITE", + "inGameID": 37926 + }, + "id": 37926, + "searchTerms": [], + "title": "Din Don Dan" + }, + { + "altTitles": [], + "artist": "ki☆ki", + "data": { + "flareCategory": "WHITE", + "inGameID": 37927 + }, + "id": 37927, + "searchTerms": [], + "title": "からふるぱすてる" + }, + { + "altTitles": [], + "artist": "達見 恵 featured by 佐野宏晃", + "data": { + "flareCategory": "WHITE", + "inGameID": 37928 + }, + "id": 37928, + "searchTerms": [], + "title": "キケンな果実" + }, + { + "altTitles": [], + "artist": "Mutsuhiko Izumi", + "data": { + "flareCategory": "WHITE", + "inGameID": 37929 + }, + "id": 37929, + "searchTerms": [], + "title": "Chinese Snowy Dance" + }, + { + "altTitles": [], + "artist": "Ryu☆", + "data": { + "flareCategory": "WHITE", + "inGameID": 37930 + }, + "id": 37930, + "searchTerms": [], + "title": "Right on time (Ryu☆Remix)" + }, + { + "altTitles": [], + "artist": "TЁЯRA", + "data": { + "flareCategory": "WHITE", + "inGameID": 37931 + }, + "id": 37931, + "searchTerms": [], + "title": "RЁVOLUTIФN" + }, + { + "altTitles": [], + "artist": "夏色ビキニのPrim", + "data": { + "flareCategory": "WHITE", + "inGameID": 37932 + }, + "id": 37932, + "searchTerms": [], + "title": "†渚の小悪魔ラヴリィ~レイディオ†" + }, + { + "altTitles": [], + "artist": "TAG", + "data": { + "flareCategory": "WHITE", + "inGameID": 37933 + }, + "id": 37933, + "searchTerms": [], + "title": "PRANA" + }, + { + "altTitles": [], + "artist": "kors k", + "data": { + "flareCategory": "WHITE", + "inGameID": 37934 + }, + "id": 37934, + "searchTerms": [], + "title": "The Wind of Gold" + }, + { + "altTitles": [], + "artist": "Y&Co. feat. Karin", + "data": { + "flareCategory": "WHITE", + "inGameID": 37935 + }, + "id": 37935, + "searchTerms": [], + "title": "Sweet Rain" + }, + { + "altTitles": [], + "artist": "Sota Fujimori", + "data": { + "flareCategory": "WHITE", + "inGameID": 37936 + }, + "id": 37936, + "searchTerms": [], + "title": "Magnetic" + }, + { + "altTitles": [], + "artist": "Nanako", + "data": { + "flareCategory": "WHITE", + "inGameID": 37937 + }, + "id": 37937, + "searchTerms": [], + "title": "フー・フローツ" + }, + { + "altTitles": [], + "artist": "小野秀幸", + "data": { + "flareCategory": "WHITE", + "inGameID": 37938 + }, + "id": 37938, + "searchTerms": [], + "title": "sola" + }, + { + "altTitles": [], + "artist": "Triumvirate", + "data": { + "flareCategory": "WHITE", + "inGameID": 37939 + }, + "id": 37939, + "searchTerms": [], + "title": "Triple Journey -TAG EDITION-" + }, + { + "altTitles": [], + "artist": "日向美ビタースイーツ♪", + "data": { + "flareCategory": "WHITE", + "inGameID": 37940 + }, + "id": 37940, + "searchTerms": [], + "title": "ちくわパフェだよ☆CKP" + }, + { + "altTitles": [], + "artist": "日向美ビタースイーツ♪", + "data": { + "flareCategory": "WHITE", + "inGameID": 37941 + }, + "id": 37941, + "searchTerms": [], + "title": "凛として咲く花の如く ~ひなビタ♪ edition~" + }, + { + "altTitles": [], + "artist": "VENUS", + "data": { + "flareCategory": "WHITE", + "inGameID": 37942 + }, + "id": 37942, + "searchTerms": [], + "title": "Wow Wow VENUS" + }, + { + "altTitles": [], + "artist": "DJ TOTTO", + "data": { + "flareCategory": "WHITE", + "inGameID": 37943 + }, + "id": 37943, + "searchTerms": [], + "title": "Windy Fairy" + }, + { + "altTitles": [], + "artist": "Qrispy Joybox", + "data": { + "flareCategory": "WHITE", + "inGameID": 37944 + }, + "id": 37944, + "searchTerms": [], + "title": "printemps" + }, + { + "altTitles": [], + "artist": "Akhuta Philharmonic Orchestra", + "data": { + "flareCategory": "WHITE", + "inGameID": 37946 + }, + "id": 37946, + "searchTerms": [], + "title": "Stella Sinistra" + }, + { + "altTitles": [], + "artist": "96 with メカショッチョー", + "data": { + "flareCategory": "WHITE", + "inGameID": 37947 + }, + "id": 37947, + "searchTerms": [], + "title": "マインド・ゲーム" + }, + { + "altTitles": [], + "artist": "TAG×PON", + "data": { + "flareCategory": "WHITE", + "inGameID": 37948 + }, + "id": 37948, + "searchTerms": [], + "title": "PUNISHER" + }, + { + "altTitles": [], + "artist": "Hommarju", + "data": { + "flareCategory": "WHITE", + "inGameID": 37949 + }, + "id": 37949, + "searchTerms": [], + "title": "HYENA" + }, + { + "altTitles": [], + "artist": "あべにゅうぷろじぇくと feat.佐倉紗織 produced by ave;new", + "data": { + "flareCategory": "WHITE", + "inGameID": 37950 + }, + "id": 37950, + "searchTerms": [], + "title": "恋はどう?モロ◎波動OK☆方程式!!" + }, + { + "altTitles": [], + "artist": "dj TAKA feat.AiMEE", + "data": { + "flareCategory": "WHITE", + "inGameID": 37951 + }, + "id": 37951, + "searchTerms": [], + "title": "True Blue" + }, + { + "altTitles": [], + "artist": "Lucky Vacuum", + "data": { + "flareCategory": "WHITE", + "inGameID": 37952 + }, + "id": 37952, + "searchTerms": [], + "title": "Daily Lunch Special" + }, + { + "altTitles": [], + "artist": "REDALiCE", + "data": { + "flareCategory": "WHITE", + "inGameID": 37953 + }, + "id": 37953, + "searchTerms": [], + "title": "VEGA" + }, + { + "altTitles": [], + "artist": "猫叉Masterβ2", + "data": { + "flareCategory": "WHITE", + "inGameID": 37954 + }, + "id": 37954, + "searchTerms": [], + "title": "デッドボヲルdeホームラン" + }, + { + "altTitles": [], + "artist": "VENUS feat. Mutsuhiko Izumi", + "data": { + "flareCategory": "WHITE", + "inGameID": 37955 + }, + "id": 37955, + "searchTerms": [], + "title": "Squeeze" + }, + { + "altTitles": [], + "artist": "あさき大監督", + "data": { + "flareCategory": "WHITE", + "inGameID": 37956 + }, + "id": 37956, + "searchTerms": [], + "title": "野球の遊び方 そしてその歴史 ~決定版~" + }, + { + "altTitles": [], + "artist": "ダイナミック野球兄弟 v.s. クロスファイヤーPrim", + "data": { + "flareCategory": "WHITE", + "inGameID": 37957 + }, + "id": 37957, + "searchTerms": [], + "title": "轟け!恋のビーンボール!!" + }, + { + "altTitles": [], + "artist": "dj TAKA VS DJ TOTTO feat.藍", + "data": { + "flareCategory": "WHITE", + "inGameID": 37958 + }, + "id": 37958, + "searchTerms": [], + "title": "IX" + }, + { + "altTitles": [], + "artist": "小野秀幸", + "data": { + "flareCategory": "WHITE", + "inGameID": 37959 + }, + "id": 37959, + "searchTerms": [], + "title": "星屑のキロク" + }, + { + "altTitles": [], + "artist": "ZUKI", + "data": { + "flareCategory": "WHITE", + "inGameID": 37960 + }, + "id": 37960, + "searchTerms": [], + "title": "Dispersion Star" + }, + { + "altTitles": [], + "artist": "Ryu☆ ∞ Des-ROW", + "data": { + "flareCategory": "WHITE", + "inGameID": 37961 + }, + "id": 37961, + "searchTerms": [], + "title": "Engraved Mark" + }, + { + "altTitles": [], + "artist": "TAG", + "data": { + "flareCategory": "WHITE", + "inGameID": 37962 + }, + "id": 37962, + "searchTerms": [], + "title": "Romancing Layer" + }, + { + "altTitles": [], + "artist": "TAG meets “eimy”", + "data": { + "flareCategory": "WHITE", + "inGameID": 37963 + }, + "id": 37963, + "searchTerms": [], + "title": "esrev:eR" + }, + { + "altTitles": [], + "artist": "TAG underground", + "data": { + "flareCategory": "WHITE", + "inGameID": 37964 + }, + "id": 37964, + "searchTerms": [], + "title": "ÆTHER" + }, + { + "altTitles": [], + "artist": "TAG feat. ERi", + "data": { + "flareCategory": "WHITE", + "inGameID": 37965 + }, + "id": 37965, + "searchTerms": [], + "title": "Do The Evolution" + }, + { + "altTitles": [], + "artist": "柊木りお", + "data": { + "flareCategory": "WHITE", + "inGameID": 37982 + }, + "id": 37982, + "searchTerms": [], + "title": "Determination" + }, + { + "altTitles": [], + "artist": "水戸ご当地アイドル(仮)", + "data": { + "flareCategory": "WHITE", + "inGameID": 37986 + }, + "id": 37986, + "searchTerms": [], + "title": "MITOれて!いばらきっしゅだ~りん" + }, + { + "altTitles": [], + "artist": "水戸ご当地アイドル(仮)", + "data": { + "flareCategory": "WHITE", + "inGameID": 37987 + }, + "id": 37987, + "searchTerms": [], + "title": "LoveLove DokiDoki" + }, + { + "altTitles": [], + "artist": "Last Note. feat. GUMI", + "data": { + "flareCategory": "WHITE", + "inGameID": 37988 + }, + "id": 37988, + "searchTerms": [], + "title": "セツナトリップ" + }, + { + "altTitles": [], + "artist": "cosMo@暴走P feat.GUMI", + "data": { + "flareCategory": "WHITE", + "inGameID": 37989 + }, + "id": 37989, + "searchTerms": [], + "title": "ラクガキスト" + }, + { + "altTitles": [], + "artist": "cosMo@暴走P", + "data": { + "flareCategory": "WHITE", + "inGameID": 37990 + }, + "id": 37990, + "searchTerms": [], + "title": "バンブーソード・ガール" + }, + { + "altTitles": [], + "artist": "Last Note.", + "data": { + "flareCategory": "WHITE", + "inGameID": 37991 + }, + "id": 37991, + "searchTerms": [], + "title": "幻想系世界修復少女" + }, + { + "altTitles": [], + "artist": "iconoclasm feat.GUMI", + "data": { + "flareCategory": "WHITE", + "inGameID": 37992 + }, + "id": 37992, + "searchTerms": [], + "title": "Idola" + }, + { + "altTitles": [], + "artist": "流星トラップボーイズ", + "data": { + "flareCategory": "WHITE", + "inGameID": 37993 + }, + "id": 37993, + "searchTerms": [], + "title": "ドキドキ☆流星トラップガール!!" + }, + { + "altTitles": [], + "artist": "Spacelectro", + "data": { + "flareCategory": "WHITE", + "inGameID": 37995 + }, + "id": 37995, + "searchTerms": [], + "title": "second spring storm" + }, + { + "altTitles": [], + "artist": "ピラミッ℃", + "data": { + "flareCategory": "WHITE", + "inGameID": 37996 + }, + "id": 37996, + "searchTerms": [], + "title": "Cleopatrysm" + }, + { + "altTitles": [], + "artist": "昇天家族", + "data": { + "flareCategory": "WHITE", + "inGameID": 37997 + }, + "id": 37997, + "searchTerms": [], + "title": "御千手メディテーション" + }, + { + "altTitles": [], + "artist": "くふおー", + "data": { + "flareCategory": "WHITE", + "inGameID": 37998 + }, + "id": 37998, + "searchTerms": [], + "title": "KHAMEN BREAK" + }, + { + "altTitles": [], + "artist": "HHH×MM×ST", + "data": { + "flareCategory": "WHITE", + "inGameID": 37999 + }, + "id": 37999, + "searchTerms": [], + "title": "Follow Tomorrow" + }, + { + "altTitles": [], + "artist": "VENUS", + "data": { + "flareCategory": "WHITE", + "inGameID": 38000 + }, + "id": 38000, + "searchTerms": [], + "title": "FUJIMORI -祭- FESTIVAL" + }, + { + "altTitles": [], + "artist": "DJ TOTTO", + "data": { + "flareCategory": "WHITE", + "inGameID": 38001 + }, + "id": 38001, + "searchTerms": [], + "title": "Adularia" + }, + { + "altTitles": [], + "artist": "U1 overground", + "data": { + "flareCategory": "WHITE", + "inGameID": 38002 + }, + "id": 38002, + "searchTerms": [], + "title": "Nostalgia Is Lost" + }, + { + "altTitles": [], + "artist": "DJ YOSHITAKA", + "data": { + "flareCategory": "WHITE", + "inGameID": 38003 + }, + "id": 38003, + "searchTerms": [], + "title": "JOMANDA" + }, + { + "altTitles": [], + "artist": "金獅子", + "data": { + "flareCategory": "WHITE", + "inGameID": 38004 + }, + "id": 38004, + "searchTerms": [], + "title": "嘆きの樹" + }, + { + "altTitles": [], + "artist": "DJ Mass MAD Izm*", + "data": { + "flareCategory": "WHITE", + "inGameID": 38010 + }, + "id": 38010, + "searchTerms": [], + "title": "灼熱Beach Side Bunny" + }, + { + "altTitles": [], + "artist": "U1 ミライダガッキ連と矢印連", + "data": { + "flareCategory": "WHITE", + "inGameID": 38011 + }, + "id": 38011, + "searchTerms": [], + "title": "阿波おどり -Awaodori- やっぱり踊りはやめられない" + }, + { + "altTitles": [], + "artist": "Lucky Vacuum", + "data": { + "flareCategory": "WHITE", + "inGameID": 38012 + }, + "id": 38012, + "searchTerms": [], + "title": "SPECIAL SUMMER CAMPAIGN!" + }, + { + "altTitles": [], + "artist": "Ryu☆", + "data": { + "flareCategory": "WHITE", + "inGameID": 38013 + }, + "id": 38013, + "searchTerms": [], + "title": "starmine" + }, + { + "altTitles": [], + "artist": "TAG", + "data": { + "flareCategory": "WHITE", + "inGameID": 38014 + }, + "id": 38014, + "searchTerms": [], + "title": "Starlight Fantasia" + }, + { + "altTitles": [], + "artist": "U1 overground", + "data": { + "flareCategory": "WHITE", + "inGameID": 38015 + }, + "id": 38015, + "searchTerms": [], + "title": "エンドルフィン" + }, + { + "altTitles": [], + "artist": "PON", + "data": { + "flareCategory": "WHITE", + "inGameID": 38016 + }, + "id": 38016, + "searchTerms": [], + "title": "Electronic or Treat!" + }, + { + "altTitles": [], + "artist": "VENUS", + "data": { + "flareCategory": "WHITE", + "inGameID": 38017 + }, + "id": 38017, + "searchTerms": [], + "title": "Thank You Merry Christmas" + }, + { + "altTitles": [], + "artist": "Ryu☆", + "data": { + "flareCategory": "WHITE", + "inGameID": 38018 + }, + "id": 38018, + "searchTerms": [], + "title": "Plan 8" + }, + { + "altTitles": [], + "artist": "工藤吉三(ベイシスケイプ)", + "data": { + "flareCategory": "WHITE", + "inGameID": 38019 + }, + "id": 38019, + "searchTerms": [], + "title": "クリムゾンゲイト" + }, + { + "altTitles": [], + "artist": "兎々", + "data": { + "flareCategory": "WHITE", + "inGameID": 38020 + }, + "id": 38020, + "searchTerms": [], + "title": "海神" + }, + { + "altTitles": [], + "artist": "P*Light", + "data": { + "flareCategory": "WHITE", + "inGameID": 38021 + }, + "id": 38021, + "searchTerms": [], + "title": "FUNKY SUMMER BEACH" + }, + { + "altTitles": [], + "artist": "ZERO+ZIBA", + "data": { + "flareCategory": "WHITE", + "inGameID": 38022 + }, + "id": 38022, + "searchTerms": [], + "title": "Remain" + }, + { + "altTitles": [], + "artist": "Akhuta", + "data": { + "flareCategory": "WHITE", + "inGameID": 38023 + }, + "id": 38023, + "searchTerms": [], + "title": "Truare!" + }, + { + "altTitles": [], + "artist": "松下feat.Sota & wac", + "data": { + "flareCategory": "WHITE", + "inGameID": 38024 + }, + "id": 38024, + "searchTerms": [], + "title": "Go↓Go↑Girls&Boys!" + }, + { + "altTitles": [], + "artist": "TAG underground", + "data": { + "flareCategory": "WHITE", + "inGameID": 38025 + }, + "id": 38025, + "searchTerms": [], + "title": "POSSESSION(EDP Live Mix)" + }, + { + "altTitles": [], + "artist": "猫叉Master+", + "data": { + "flareCategory": "WHITE", + "inGameID": 38026 + }, + "id": 38026, + "searchTerms": [], + "title": "chaos eater" + }, + { + "altTitles": [], + "artist": "96", + "data": { + "flareCategory": "WHITE", + "inGameID": 38027 + }, + "id": 38027, + "searchTerms": [], + "title": "Samurai Shogun vs. Master Ninja" + }, + { + "altTitles": [], + "artist": "肥塚良彦", + "data": { + "flareCategory": "WHITE", + "inGameID": 38028 + }, + "id": 38028, + "searchTerms": [], + "title": "Sand Blow" + }, + { + "altTitles": [], + "artist": "Sota F.", + "data": { + "flareCategory": "WHITE", + "inGameID": 38029 + }, + "id": 38029, + "searchTerms": [], + "title": "Destination" + }, + { + "altTitles": [], + "artist": "DJ ミラクル☆ストーン", + "data": { + "flareCategory": "WHITE", + "inGameID": 38030 + }, + "id": 38030, + "searchTerms": [], + "title": "HAPPY☆LUCKY☆YEAPPY" + }, + { + "altTitles": [], + "artist": "U1 High-Speed", + "data": { + "flareCategory": "WHITE", + "inGameID": 38031 + }, + "id": 38031, + "searchTerms": [], + "title": "EGOISM 440" + }, + { + "altTitles": [], + "artist": "TAG underground overlay", + "data": { + "flareCategory": "WHITE", + "inGameID": 38032 + }, + "id": 38032, + "searchTerms": [], + "title": "Over The “Period”" + }, + { + "altTitles": [], + "artist": "日向美ビタースイーツ♪", + "data": { + "flareCategory": "WHITE", + "inGameID": 38033 + }, + "id": 38033, + "searchTerms": [], + "title": "乙女繚乱 舞い咲き誇れ" + }, + { + "altTitles": [], + "artist": "日向美ビタースイーツ♪", + "data": { + "flareCategory": "WHITE", + "inGameID": 38034 + }, + "id": 38034, + "searchTerms": [], + "title": "滅亡天使 † にこきゅっぴん" + }, + { + "altTitles": [], + "artist": "ここなつ", + "data": { + "flareCategory": "WHITE", + "inGameID": 38035 + }, + "id": 38035, + "searchTerms": [], + "title": "ミライプリズム" + }, + { + "altTitles": [], + "artist": "TAG (Realtime Remix by U1)", + "data": { + "flareCategory": "WHITE", + "inGameID": 38036 + }, + "id": 38036, + "searchTerms": [], + "title": "HEART BEAT FORMULA (Vinyl Mix)" + }, + { + "altTitles": [], + "artist": "underground & overground", + "data": { + "flareCategory": "WHITE", + "inGameID": 38037 + }, + "id": 38037, + "searchTerms": [], + "title": "PRANA+REVOLUTIONARY ADDICT (U1 DJ Mix)" + }, + { + "altTitles": [], + "artist": "U1 overground feat.TAG", + "data": { + "flareCategory": "WHITE", + "inGameID": 38038 + }, + "id": 38038, + "searchTerms": [], + "title": "Starlight Fantasia (Endorphins Mix)" + }, + { + "altTitles": [], + "artist": "かめりあ", + "data": { + "flareCategory": "WHITE", + "inGameID": 38039 + }, + "id": 38039, + "searchTerms": [], + "title": "朝色の紙飛行機" + }, + { + "altTitles": [], + "artist": "Ryu☆ feat.MAYU", + "data": { + "flareCategory": "WHITE", + "inGameID": 38040 + }, + "id": 38040, + "searchTerms": [], + "title": "M.A.Y.U." + }, + { + "altTitles": [], + "artist": "Sota Fujimori", + "data": { + "flareCategory": "WHITE", + "inGameID": 38041 + }, + "id": 38041, + "searchTerms": [], + "title": "女言葉の消失" + }, + { + "altTitles": [], + "artist": "柊木りお featured by TAG", + "data": { + "flareCategory": "WHITE", + "inGameID": 38042 + }, + "id": 38042, + "searchTerms": [], + "title": "AWAKE" + }, + { + "altTitles": [], + "artist": "REDALiCE feat. Ayumi Nomiya", + "data": { + "flareCategory": "WHITE", + "inGameID": 38043 + }, + "id": 38043, + "searchTerms": [], + "title": "Scarlet Moon" + }, + { + "altTitles": [], + "artist": "Masayoshi Minoshima(ALR)", + "data": { + "flareCategory": "WHITE", + "inGameID": 38044 + }, + "id": 38044, + "searchTerms": [], + "title": "Struggle" + }, + { + "altTitles": [], + "artist": "P*Light feat. mow*2", + "data": { + "flareCategory": "WHITE", + "inGameID": 38045 + }, + "id": 38045, + "searchTerms": [], + "title": "ホメ猫☆センセーション" + }, + { + "altTitles": [], + "artist": "DJ TOTTO feat.3L", + "data": { + "flareCategory": "WHITE", + "inGameID": 38046 + }, + "id": 38046, + "searchTerms": [], + "title": "妖隠し -あやかしかくし-" + }, + { + "altTitles": [], + "artist": "日向美ビタースイーツ♪ & ここなつ", + "data": { + "flareCategory": "WHITE", + "inGameID": 38047 + }, + "id": 38047, + "searchTerms": [], + "title": "チョコレートスマイル" + }, + { + "altTitles": [], + "artist": "DJ TOTTO", + "data": { + "flareCategory": "WHITE", + "inGameID": 38048 + }, + "id": 38048, + "searchTerms": [], + "title": "ビビットストリーム" + }, + { + "altTitles": [], + "artist": "ARM feat. ななひら", + "data": { + "flareCategory": "WHITE", + "inGameID": 38049 + }, + "id": 38049, + "searchTerms": [], + "title": "爆なな☆てすとロイヤー" + }, + { + "altTitles": [], + "artist": "山本椛 (monotone)", + "data": { + "flareCategory": "WHITE", + "inGameID": 38050 + }, + "id": 38050, + "searchTerms": [], + "title": "突撃!ガラスのニーソ姫!" + }, + { + "altTitles": [], + "artist": "U1 overground", + "data": { + "flareCategory": "WHITE", + "inGameID": 38051 + }, + "id": 38051, + "searchTerms": [], + "title": "ドーパミン" + }, + { + "altTitles": [], + "artist": "ヒゲドライバー join. shully & Nimo", + "data": { + "flareCategory": "WHITE", + "inGameID": 38052 + }, + "id": 38052, + "searchTerms": [], + "title": "パ→ピ→プ→Yeah!" + }, + { + "altTitles": [], + "artist": "Ryu☆", + "data": { + "flareCategory": "WHITE", + "inGameID": 38053 + }, + "id": 38053, + "searchTerms": [], + "title": "Sakura Mirage" + }, + { + "altTitles": [], + "artist": "S-C-U × U1 overground", + "data": { + "flareCategory": "WHITE", + "inGameID": 38054 + }, + "id": 38054, + "searchTerms": [], + "title": "天空の華" + }, + { + "altTitles": [], + "artist": "96 & Sota ft. Mayumi Morinaga", + "data": { + "flareCategory": "WHITE", + "inGameID": 38055 + }, + "id": 38055, + "searchTerms": [], + "title": "In The Breeze" + }, + { + "altTitles": [], + "artist": "猫叉王子 feat. TAG", + "data": { + "flareCategory": "WHITE", + "inGameID": 38057 + }, + "id": 38057, + "searchTerms": [], + "title": "夏色DIARY -DDR mix-" + }, + { + "altTitles": [], + "artist": "PON×U1", + "data": { + "flareCategory": "GOLD", + "inGameID": 38058 + }, + "id": 38058, + "searchTerms": [], + "title": "ON-DO" + }, + { + "altTitles": [], + "artist": "kors k", + "data": { + "flareCategory": "WHITE", + "inGameID": 38059 + }, + "id": 38059, + "searchTerms": [], + "title": "8000000" + }, + { + "altTitles": [], + "artist": "柊木りお featured by TAG", + "data": { + "flareCategory": "WHITE", + "inGameID": 38060 + }, + "id": 38060, + "searchTerms": [], + "title": "TSUBASA" + }, + { + "altTitles": [], + "artist": "日向美ビタースイーツ♪", + "data": { + "flareCategory": "WHITE", + "inGameID": 38061 + }, + "id": 38061, + "searchTerms": [], + "title": "neko*neko" + }, + { + "altTitles": [], + "artist": "日向美ビタースイーツ♪", + "data": { + "flareCategory": "WHITE", + "inGameID": 38062 + }, + "id": 38062, + "searchTerms": [], + "title": "激アツ☆マジヤバ☆チアガール" + }, + { + "altTitles": [], + "artist": "日向美ビタースイーツ♪", + "data": { + "flareCategory": "WHITE", + "inGameID": 38063 + }, + "id": 38063, + "searchTerms": [], + "title": "漆黒のスペシャルプリンセスサンデー" + }, + { + "altTitles": [], + "artist": "A応P", + "data": { + "flareCategory": "WHITE", + "inGameID": 38064 + }, + "id": 38064, + "searchTerms": [], + "title": "はなまるぴっぴはよいこだけ" + }, + { + "altTitles": [], + "artist": "日向美ビタースイーツ♪", + "data": { + "flareCategory": "WHITE", + "inGameID": 38065 + }, + "id": 38065, + "searchTerms": [], + "title": "地方創生☆チクワクティクス" + }, + { + "altTitles": [], + "artist": "U1 overground", + "data": { + "flareCategory": "WHITE", + "inGameID": 38067 + }, + "id": 38067, + "searchTerms": [], + "title": "Electric Dance System Music" + }, + { + "altTitles": [], + "artist": "CLUB SPICE", + "data": { + "flareCategory": "WHITE", + "inGameID": 38068 + }, + "id": 38068, + "searchTerms": [], + "title": "Yeah! Yeah!" + }, + { + "altTitles": [], + "artist": "U1", + "data": { + "flareCategory": "WHITE", + "inGameID": 38069 + }, + "id": 38069, + "searchTerms": [], + "title": "HANDS UP IN THE AIR" + }, + { + "altTitles": [], + "artist": "TAG", + "data": { + "flareCategory": "WHITE", + "inGameID": 38070 + }, + "id": 38070, + "searchTerms": [], + "title": "STERLING SILVER" + }, + { + "altTitles": [], + "artist": "TAG", + "data": { + "flareCategory": "WHITE", + "inGameID": 38071 + }, + "id": 38071, + "searchTerms": [], + "title": "STERLING SILVER (U1 overground mix)" + }, + { + "altTitles": [], + "artist": "Sota F.", + "data": { + "flareCategory": "WHITE", + "inGameID": 38072 + }, + "id": 38072, + "searchTerms": [], + "title": "New Century" + }, + { + "altTitles": [], + "artist": "uno(IOSYS)", + "data": { + "flareCategory": "WHITE", + "inGameID": 38073 + }, + "id": 38073, + "searchTerms": [], + "title": "チルノのパーフェクトさんすう教室 (EDM REMIX)" + }, + { + "altTitles": [], + "artist": "かめりあ feat. ななひら", + "data": { + "flareCategory": "WHITE", + "inGameID": 38074 + }, + "id": 38074, + "searchTerms": [], + "title": "イーディーエム・ジャンパーズ" + }, + { + "altTitles": [], + "artist": "Starving Trancer feat. Mayumi Morinaga", + "data": { + "flareCategory": "WHITE", + "inGameID": 38075 + }, + "id": 38075, + "searchTerms": [], + "title": "The Night Away (MK Remix)" + }, + { + "altTitles": [], + "artist": "kors k", + "data": { + "flareCategory": "WHITE", + "inGameID": 38076 + }, + "id": 38076, + "searchTerms": [], + "title": "Poochie" + }, + { + "altTitles": [], + "artist": "東雲夏陽(from ここなつ)", + "data": { + "flareCategory": "WHITE", + "inGameID": 38077 + }, + "id": 38077, + "searchTerms": [], + "title": "さよならトリップ ~夏陽 EDM edition~" + }, + { + "altTitles": [], + "artist": "東雲心菜(from ここなつ)", + "data": { + "flareCategory": "WHITE", + "inGameID": 38078 + }, + "id": 38078, + "searchTerms": [], + "title": "魔法のたまご ~心菜 ELECTRO POP edition~" + }, + { + "altTitles": [], + "artist": "Sota Fujimori", + "data": { + "flareCategory": "WHITE", + "inGameID": 38079 + }, + "id": 38079, + "searchTerms": [], + "title": "DANCE ALL NIGHT (DDR EDITION)" + }, + { + "altTitles": [], + "artist": "Nhato", + "data": { + "flareCategory": "WHITE", + "inGameID": 38080 + }, + "id": 38080, + "searchTerms": [], + "title": "Star Trail" + }, + { + "altTitles": [], + "artist": "かめりあ feat. ななひら", + "data": { + "flareCategory": "WHITE", + "inGameID": 38081 + }, + "id": 38081, + "searchTerms": [], + "title": "ベィスドロップ・フリークス" + }, + { + "altTitles": [], + "artist": "Eagle", + "data": { + "flareCategory": "WHITE", + "inGameID": 38082 + }, + "id": 38082, + "searchTerms": [], + "title": "S!ck" + }, + { + "altTitles": [], + "artist": "Sota F.", + "data": { + "flareCategory": "WHITE", + "inGameID": 38083 + }, + "id": 38083, + "searchTerms": [], + "title": "TECH-NOID" + }, + { + "altTitles": [], + "artist": "Alstroemeria Records", + "data": { + "flareCategory": "WHITE", + "inGameID": 38084 + }, + "id": 38084, + "searchTerms": [], + "title": "Bad Apple!! feat. nomico" + }, + { + "altTitles": [], + "artist": "猫叉Master", + "data": { + "flareCategory": "WHITE", + "inGameID": 38085 + }, + "id": 38085, + "searchTerms": [], + "title": "Far east nightbird" + }, + { + "altTitles": [], + "artist": "猫叉Master", + "data": { + "flareCategory": "WHITE", + "inGameID": 38086 + }, + "id": 38086, + "searchTerms": [], + "title": "Far east nightbird kors k Remix -DDR edit ver-" + }, + { + "altTitles": [], + "artist": "Ryu☆", + "data": { + "flareCategory": "WHITE", + "inGameID": 38087 + }, + "id": 38087, + "searchTerms": [], + "title": "bass 2 bass" + }, + { + "altTitles": [], + "artist": "L.E.D.-G", + "data": { + "flareCategory": "WHITE", + "inGameID": 38088 + }, + "id": 38088, + "searchTerms": [], + "title": "RISING FIRE HAWK" + }, + { + "altTitles": [], + "artist": "Zodiac Fall", + "data": { + "flareCategory": "WHITE", + "inGameID": 38089 + }, + "id": 38089, + "searchTerms": [], + "title": "十二星座の聖域" + }, + { + "altTitles": [], + "artist": "SUPER HEROINE 彩香-AYAKA-", + "data": { + "flareCategory": "WHITE", + "inGameID": 38090 + }, + "id": 38090, + "searchTerms": [], + "title": "ALL MY HEART -この恋に、わたしの全てを賭ける-" + }, + { + "altTitles": [], + "artist": "猫叉Master", + "data": { + "flareCategory": "WHITE", + "inGameID": 38091 + }, + "id": 38091, + "searchTerms": [], + "title": "Dancer in the flare" + }, + { + "altTitles": [], + "artist": "SOUND HOLIC feat. Nana Takahashi", + "data": { + "flareCategory": "WHITE", + "inGameID": 38092 + }, + "id": 38092, + "searchTerms": [], + "title": "Ha・lle・lu・jah" + }, + { + "altTitles": [], + "artist": "Qrispy Joybox feat.Sana", + "data": { + "flareCategory": "GOLD", + "inGameID": 38093 + }, + "id": 38093, + "searchTerms": [], + "title": "Twinkle Wonderland" + }, + { + "altTitles": [], + "artist": "ヒゲドライバー join. SELEN", + "data": { + "flareCategory": "WHITE", + "inGameID": 38094 + }, + "id": 38094, + "searchTerms": [], + "title": "打打打打打打打打打打" + }, + { + "altTitles": [], + "artist": "TAG meets “eimy”", + "data": { + "flareCategory": "WHITE", + "inGameID": 38095 + }, + "id": 38095, + "searchTerms": [], + "title": "この青空の下で" + }, + { + "altTitles": [], + "artist": "Captain KING", + "data": { + "flareCategory": "WHITE", + "inGameID": 38096 + }, + "id": 38096, + "searchTerms": [], + "title": "siberite" + }, + { + "altTitles": [], + "artist": "Musical Cosmology", + "data": { + "flareCategory": "WHITE", + "inGameID": 38097 + }, + "id": 38097, + "searchTerms": [], + "title": "宇宙(ソラ)への片道切符" + }, + { + "altTitles": [], + "artist": "DJ TOTTO", + "data": { + "flareCategory": "WHITE", + "inGameID": 38098 + }, + "id": 38098, + "searchTerms": [], + "title": "Astrogazer" + }, + { + "altTitles": [], + "artist": "HHH×MM×ST", + "data": { + "flareCategory": "WHITE", + "inGameID": 38099 + }, + "id": 38099, + "searchTerms": [], + "title": "朧" + }, + { + "altTitles": [], + "artist": "DJ YOSHITAKA", + "data": { + "flareCategory": "WHITE", + "inGameID": 38100 + }, + "id": 38100, + "searchTerms": [], + "title": "SHION" + }, + { + "altTitles": [], + "artist": "松下feat.Sota & wac", + "data": { + "flareCategory": "WHITE", + "inGameID": 38101 + }, + "id": 38101, + "searchTerms": [], + "title": "きゅん×きゅんばっきゅん☆LOVE" + }, + { + "altTitles": [], + "artist": "SOUND HOLIC feat. Nana Takahashi", + "data": { + "flareCategory": "WHITE", + "inGameID": 38102 + }, + "id": 38102, + "searchTerms": [], + "title": "Grip & Break down !!" + }, + { + "altTitles": [], + "artist": "ビートまりお(COOL&CREATE)", + "data": { + "flareCategory": "WHITE", + "inGameID": 38103 + }, + "id": 38103, + "searchTerms": [], + "title": "ナイト・オブ・ナイツ" + }, + { + "altTitles": [], + "artist": "ARM(IOSYS)", + "data": { + "flareCategory": "WHITE", + "inGameID": 38104 + }, + "id": 38104, + "searchTerms": [], + "title": "魔理沙は大変なものを盗んでいきました" + }, + { + "altTitles": [], + "artist": "ビートまりお(COOL&CREATE)", + "data": { + "flareCategory": "WHITE", + "inGameID": 38105 + }, + "id": 38105, + "searchTerms": [], + "title": "Help me, ERINNNNNN!!" + }, + { + "altTitles": [], + "artist": "幽閉サテライト feat. senya", + "data": { + "flareCategory": "WHITE", + "inGameID": 38107 + }, + "id": 38107, + "searchTerms": [], + "title": "色は匂へど散りぬるを" + }, + { + "altTitles": [], + "artist": "EasyPop", + "data": { + "flareCategory": "WHITE", + "inGameID": 38109 + }, + "id": 38109, + "searchTerms": [], + "title": "ハッピーシンセサイザ" + }, + { + "altTitles": [], + "artist": "日向美ビタースイーツ♪", + "data": { + "flareCategory": "WHITE", + "inGameID": 38110 + }, + "id": 38110, + "searchTerms": [], + "title": "黒髪乱れし修羅となりて~凛 edition~" + }, + { + "altTitles": [], + "artist": "U.T.D. & Friends", + "data": { + "flareCategory": "WHITE", + "inGameID": 38119 + }, + "id": 38119, + "searchTerms": [], + "title": "Lesson by DJ" + }, + { + "altTitles": [], + "artist": "ARM (IOSYS) feat. Nicole Curry", + "data": { + "flareCategory": "WHITE", + "inGameID": 38120 + }, + "id": 38120, + "searchTerms": [], + "title": "Come to Life" + }, + { + "altTitles": [], + "artist": "kors k feat. Suzuyo Miyamoto", + "data": { + "flareCategory": "WHITE", + "inGameID": 38121 + }, + "id": 38121, + "searchTerms": [], + "title": "Special One" + }, + { + "altTitles": [], + "artist": "164", + "data": { + "flareCategory": "WHITE", + "inGameID": 38122 + }, + "id": 38122, + "searchTerms": [], + "title": "天ノ弱" + }, + { + "altTitles": [], + "artist": "Neru", + "data": { + "flareCategory": "WHITE", + "inGameID": 38123 + }, + "id": 38123, + "searchTerms": [], + "title": "ロストワンの号哭" + }, + { + "altTitles": [], + "artist": "DJ TOTTO feat.anporin", + "data": { + "flareCategory": "WHITE", + "inGameID": 38124 + }, + "id": 38124, + "searchTerms": [], + "title": "ハピ恋☆らぶりぃタイム!!" + }, + { + "altTitles": [], + "artist": "日向美ビタースイーツ♪&ひなちくん", + "data": { + "flareCategory": "WHITE", + "inGameID": 38126 + }, + "id": 38126, + "searchTerms": [], + "title": "倉野川音頭" + }, + { + "altTitles": [], + "artist": "SHAMDEL", + "data": { + "flareCategory": "WHITE", + "inGameID": 38127 + }, + "id": 38127, + "searchTerms": [], + "title": "Towards the TOWER" + }, + { + "altTitles": [], + "artist": "Hommarju", + "data": { + "flareCategory": "WHITE", + "inGameID": 38128 + }, + "id": 38128, + "searchTerms": [], + "title": "Cytokinesis" + }, + { + "altTitles": [], + "artist": "U1-ASAMi", + "data": { + "flareCategory": "WHITE", + "inGameID": 38129 + }, + "id": 38129, + "searchTerms": [], + "title": "Illegal Function Call" + }, + { + "altTitles": [], + "artist": "PON", + "data": { + "flareCategory": "WHITE", + "inGameID": 38130 + }, + "id": 38130, + "searchTerms": [], + "title": "Emera" + }, + { + "altTitles": [], + "artist": "t+pazolite", + "data": { + "flareCategory": "WHITE", + "inGameID": 38131 + }, + "id": 38131, + "searchTerms": [], + "title": "Angelic Jelly" + }, + { + "altTitles": [], + "artist": "削除", + "data": { + "flareCategory": "WHITE", + "inGameID": 38132 + }, + "id": 38132, + "searchTerms": [], + "title": "StrayedCatz" + }, + { + "altTitles": [], + "artist": "xi", + "data": { + "flareCategory": "WHITE", + "inGameID": 38133 + }, + "id": 38133, + "searchTerms": [], + "title": "Grand Chariot" + }, + { + "altTitles": [], + "artist": "SHIKI", + "data": { + "flareCategory": "WHITE", + "inGameID": 38134 + }, + "id": 38134, + "searchTerms": [], + "title": "Sephirot" + }, + { + "altTitles": [], + "artist": "TAG", + "data": { + "flareCategory": "WHITE", + "inGameID": 38135 + }, + "id": 38135, + "searchTerms": [], + "title": "ZEPHYRANTHES" + }, + { + "altTitles": [], + "artist": "DJ YOSHITAKA meets dj TAKA", + "data": { + "flareCategory": "WHITE", + "inGameID": 38136 + }, + "id": 38136, + "searchTerms": [], + "title": "Triple Counter" + }, + { + "altTitles": [], + "artist": "Sota F.", + "data": { + "flareCategory": "WHITE", + "inGameID": 38137 + }, + "id": 38137, + "searchTerms": [], + "title": "Start a New Day" + }, + { + "altTitles": [], + "artist": "柊木りお featured by SOTAG", + "data": { + "flareCategory": "WHITE", + "inGameID": 38138 + }, + "id": 38138, + "searchTerms": [], + "title": "Hopeful" + }, + { + "altTitles": [], + "artist": "劇団レコード", + "data": { + "flareCategory": "WHITE", + "inGameID": 38139 + }, + "id": 38139, + "searchTerms": [], + "title": "Ishtar" + }, + { + "altTitles": [], + "artist": "Qrispy Joybox", + "data": { + "flareCategory": "WHITE", + "inGameID": 38140 + }, + "id": 38140, + "searchTerms": [], + "title": "out of focus" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"Metal Stepper\"", + "data": { + "flareCategory": "WHITE", + "inGameID": 38141 + }, + "id": 38141, + "searchTerms": [], + "title": "First Time" + }, + { + "altTitles": [], + "artist": "Prim", + "data": { + "flareCategory": "WHITE", + "inGameID": 38142 + }, + "id": 38142, + "searchTerms": [], + "title": "恋する☆宇宙戦争っ!!" + }, + { + "altTitles": [], + "artist": "NU-KO", + "data": { + "flareCategory": "WHITE", + "inGameID": 38143 + }, + "id": 38143, + "searchTerms": [], + "title": "恋愛観測" + }, + { + "altTitles": [], + "artist": "HuΣeR", + "data": { + "flareCategory": "WHITE", + "inGameID": 38144 + }, + "id": 38144, + "searchTerms": [], + "title": "Neutrino" + }, + { + "altTitles": [], + "artist": "nc ft.NRGFactory", + "data": { + "flareCategory": "WHITE", + "inGameID": 38145 + }, + "id": 38145, + "searchTerms": [], + "title": "Reach The Sky, Without you" + }, + { + "altTitles": [], + "artist": "SYUNN", + "data": { + "flareCategory": "WHITE", + "inGameID": 38146 + }, + "id": 38146, + "searchTerms": [], + "title": "Cosy Catastrophe" + }, + { + "altTitles": [], + "artist": "白澤亮(noisycroak)", + "data": { + "flareCategory": "WHITE", + "inGameID": 38147 + }, + "id": 38147, + "searchTerms": [], + "title": "Pursuer" + }, + { + "altTitles": [], + "artist": "猫叉Master", + "data": { + "flareCategory": "WHITE", + "inGameID": 38148 + }, + "id": 38148, + "searchTerms": [], + "title": "Fly far bounce" + }, + { + "altTitles": [], + "artist": "fallen shepherd ft. RabbiTon Strings", + "data": { + "flareCategory": "WHITE", + "inGameID": 38149 + }, + "id": 38149, + "searchTerms": [], + "title": "ENDYMION" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"TAG\"", + "data": { + "flareCategory": "WHITE", + "inGameID": 38150 + }, + "id": 38150, + "searchTerms": [], + "title": "Chronos (walk with you remix)" + }, + { + "altTitles": [], + "artist": "SOUND HOLIC feat. Nana Takahashi", + "data": { + "flareCategory": "WHITE", + "inGameID": 38151 + }, + "id": 38151, + "searchTerms": [], + "title": "ALGORITHM" + }, + { + "altTitles": [], + "artist": "日向美ビタースイーツ♪", + "data": { + "flareCategory": "WHITE", + "inGameID": 38152 + }, + "id": 38152, + "searchTerms": [], + "title": "エキサイティング!!も・ちゃ・ちゃ☆" + }, + { + "altTitles": [], + "artist": "ここなつ", + "data": { + "flareCategory": "WHITE", + "inGameID": 38153 + }, + "id": 38153, + "searchTerms": [], + "title": "ロンロンへ ライライライ!" + }, + { + "altTitles": [], + "artist": "ARM (IOSYS) feat. Nicole Curry", + "data": { + "flareCategory": "GOLD", + "inGameID": 38154 + }, + "id": 38154, + "searchTerms": [], + "title": "Neverland" + }, + { + "altTitles": [], + "artist": "かめりあ", + "data": { + "flareCategory": "GOLD", + "inGameID": 38155 + }, + "id": 38155, + "searchTerms": [], + "title": "ORCA" + }, + { + "altTitles": [], + "artist": "TAG×U1", + "data": { + "flareCategory": "WHITE", + "inGameID": 38156 + }, + "id": 38156, + "searchTerms": [], + "title": "ACE FOR ACES" + }, + { + "altTitles": [], + "artist": "cosMo@暴走P feat. 初音ミク", + "data": { + "flareCategory": "WHITE", + "inGameID": 38157 + }, + "id": 38157, + "searchTerms": [], + "title": "初音ミクの消失" + }, + { + "altTitles": [], + "artist": "うたたP feat. 結月ゆかり", + "data": { + "flareCategory": "WHITE", + "inGameID": 38158 + }, + "id": 38158, + "searchTerms": [], + "title": "幸せになれる隠しコマンドがあるらしい" + }, + { + "altTitles": [], + "artist": "れるりり", + "data": { + "flareCategory": "WHITE", + "inGameID": 38159 + }, + "id": 38159, + "searchTerms": [], + "title": "脳漿炸裂ガール" + }, + { + "altTitles": [], + "artist": "ARM・まろん (IOSYS) × ランコ・パプリカ (豚乙女)", + "data": { + "flareCategory": "WHITE", + "inGameID": 38160 + }, + "id": 38160, + "searchTerms": [], + "title": "向日葵サンセット" + }, + { + "altTitles": [], + "artist": "ときめきアイドル project", + "data": { + "flareCategory": "WHITE", + "inGameID": 38161 + }, + "id": 38161, + "searchTerms": [], + "title": "DREAMING-ING!!" + }, + { + "altTitles": [], + "artist": "ときめきアイドル project", + "data": { + "flareCategory": "WHITE", + "inGameID": 38167 + }, + "id": 38167, + "searchTerms": [], + "title": "ハルイチバン" + }, + { + "altTitles": [], + "artist": "ときめきアイドル project", + "data": { + "flareCategory": "WHITE", + "inGameID": 38168 + }, + "id": 38168, + "searchTerms": [], + "title": "闘え!ダダンダーンV" + }, + { + "altTitles": [], + "artist": "ときめきアイドル project Rhythmixxx", + "data": { + "flareCategory": "WHITE", + "inGameID": 38169 + }, + "id": 38169, + "searchTerms": [], + "title": "恋のパズルマジック" + }, + { + "altTitles": [], + "artist": "ときめきアイドル project 結城秋葉", + "data": { + "flareCategory": "WHITE", + "inGameID": 38170 + }, + "id": 38170, + "searchTerms": [], + "title": "しゃかりきリレーション" + }, + { + "altTitles": [], + "artist": "ときめきアイドル project", + "data": { + "flareCategory": "WHITE", + "inGameID": 38171 + }, + "id": 38171, + "searchTerms": [], + "title": "Twin memories W" + }, + { + "altTitles": [], + "artist": "ときめきアイドル project クッキーパラダイス", + "data": { + "flareCategory": "WHITE", + "inGameID": 38172 + }, + "id": 38172, + "searchTerms": [], + "title": "Strawberry Chu♡Chu♡" + }, + { + "altTitles": [], + "artist": "ときめきアイドル project 月島美奈都", + "data": { + "flareCategory": "WHITE", + "inGameID": 38173 + }, + "id": 38173, + "searchTerms": [], + "title": "invisible rain" + }, + { + "altTitles": [], + "artist": "A応P", + "data": { + "flareCategory": "WHITE", + "inGameID": 38174 + }, + "id": 38174, + "searchTerms": [], + "title": "君氏危うくも近うよれ" + }, + { + "altTitles": [], + "artist": "ARM+夕野ヨシミ feat. miko", + "data": { + "flareCategory": "WHITE", + "inGameID": 38175 + }, + "id": 38175, + "searchTerms": [], + "title": "チルノのパーフェクトさんすう教室" + }, + { + "altTitles": [], + "artist": "ときめきアイドル project", + "data": { + "flareCategory": "WHITE", + "inGameID": 38176 + }, + "id": 38176, + "searchTerms": [], + "title": "Jewelry days" + }, + { + "altTitles": [], + "artist": "中島由貴", + "data": { + "flareCategory": "WHITE", + "inGameID": 38177 + }, + "id": 38177, + "searchTerms": [], + "title": "Be a Hero!" + }, + { + "altTitles": [], + "artist": "ここなつ", + "data": { + "flareCategory": "WHITE", + "inGameID": 38180 + }, + "id": 38180, + "searchTerms": [], + "title": "ルミナスデイズ" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"Sota F.\"", + "data": { + "flareCategory": "WHITE", + "inGameID": 38182 + }, + "id": 38182, + "searchTerms": [], + "title": "Love You More" + }, + { + "altTitles": [], + "artist": "常盤ゆう", + "data": { + "flareCategory": "WHITE", + "inGameID": 38183 + }, + "id": 38183, + "searchTerms": [], + "title": "CHOCOLATE PHILOSOPHY" + }, + { + "altTitles": [], + "artist": "DJ YOSHITAKA feat.DWP", + "data": { + "flareCategory": "WHITE", + "inGameID": 38184 + }, + "id": 38184, + "searchTerms": [], + "title": "High School Love" + }, + { + "altTitles": [], + "artist": "ときめきアイドル project", + "data": { + "flareCategory": "WHITE", + "inGameID": 38185 + }, + "id": 38185, + "searchTerms": [], + "title": "恋時雨" + }, + { + "altTitles": [], + "artist": "そらまふうらさか", + "data": { + "flareCategory": "WHITE", + "inGameID": 38186 + }, + "id": 38186, + "searchTerms": [], + "title": "ロールプレイングゲーム" + }, + { + "altTitles": [], + "artist": "ナユタン星人", + "data": { + "flareCategory": "WHITE", + "inGameID": 38187 + }, + "id": 38187, + "searchTerms": [], + "title": "エイリアンエイリアン" + }, + { + "altTitles": [], + "artist": "iroha", + "data": { + "flareCategory": "WHITE", + "inGameID": 38188 + }, + "id": 38188, + "searchTerms": [], + "title": "炉心融解" + }, + { + "altTitles": [], + "artist": "みきとP", + "data": { + "flareCategory": "WHITE", + "inGameID": 38189 + }, + "id": 38189, + "searchTerms": [], + "title": "いーあるふぁんくらぶ" + }, + { + "altTitles": [], + "artist": "USAO", + "data": { + "flareCategory": "WHITE", + "inGameID": 38190 + }, + "id": 38190, + "searchTerms": [], + "title": "Boss Rush" + }, + { + "altTitles": [], + "artist": "TAG", + "data": { + "flareCategory": "WHITE", + "inGameID": 38191 + }, + "id": 38191, + "searchTerms": [], + "title": "春風ブローインウィンド" + }, + { + "altTitles": [], + "artist": "Ryu☆", + "data": { + "flareCategory": "WHITE", + "inGameID": 38192 + }, + "id": 38192, + "searchTerms": [], + "title": "Sakura Reflection" + }, + { + "altTitles": [], + "artist": "北沢綾香", + "data": { + "flareCategory": "WHITE", + "inGameID": 38193 + }, + "id": 38193, + "searchTerms": [], + "title": "Eternal Summer" + }, + { + "altTitles": [], + "artist": "猫叉Master", + "data": { + "flareCategory": "WHITE", + "inGameID": 38194 + }, + "id": 38194, + "searchTerms": [], + "title": "千年ノ理" + }, + { + "altTitles": [], + "artist": "PHQUASE", + "data": { + "flareCategory": "WHITE", + "inGameID": 38195 + }, + "id": 38195, + "searchTerms": [], + "title": "プレインエイジア -PHQ remix-" + }, + { + "altTitles": [], + "artist": "HHH×MM×ST", + "data": { + "flareCategory": "WHITE", + "inGameID": 38196 + }, + "id": 38196, + "searchTerms": [], + "title": "朧 (dj TAKA Remix)" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"L.E.D.-G\" feat. Mayumi Morinaga", + "data": { + "flareCategory": "WHITE", + "inGameID": 38197 + }, + "id": 38197, + "searchTerms": [], + "title": "IN BETWEEN" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"TAG\"", + "data": { + "flareCategory": "WHITE", + "inGameID": 38198 + }, + "id": 38198, + "searchTerms": [], + "title": "Vanquish The Ghost" + }, + { + "altTitles": [], + "artist": "ときめきアイドル project", + "data": { + "flareCategory": "WHITE", + "inGameID": 38199 + }, + "id": 38199, + "searchTerms": [], + "title": "SUN² SUMMER STEP!" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"DJ TOTTO feat.MarL\"", + "data": { + "flareCategory": "WHITE", + "inGameID": 38200 + }, + "id": 38200, + "searchTerms": [], + "title": "星座が恋した瞬間を。" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"person09\"", + "data": { + "flareCategory": "WHITE", + "inGameID": 38201 + }, + "id": 38201, + "searchTerms": [], + "title": "Puberty Dysthymia" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"猫叉Master\"", + "data": { + "flareCategory": "WHITE", + "inGameID": 38202 + }, + "id": 38202, + "searchTerms": [], + "title": "Life is beautiful" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"U1 overground\"", + "data": { + "flareCategory": "WHITE", + "inGameID": 38203 + }, + "id": 38203, + "searchTerms": [], + "title": "SUPER SUMMER SALE" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"劇団レコード\"feat.結良まり", + "data": { + "flareCategory": "WHITE", + "inGameID": 38204 + }, + "id": 38204, + "searchTerms": [], + "title": "風鈴花火" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"Dustup\"", + "data": { + "flareCategory": "WHITE", + "inGameID": 38205 + }, + "id": 38205, + "searchTerms": [], + "title": "Prey" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"HuΣeR feat.PON\"", + "data": { + "flareCategory": "WHITE", + "inGameID": 38206 + }, + "id": 38206, + "searchTerms": [], + "title": "Rejoin" + }, + { + "altTitles": [], + "artist": "kradness", + "data": { + "flareCategory": "WHITE", + "inGameID": 38207 + }, + "id": 38207, + "searchTerms": [], + "title": "無頼ック自己ライザー" + }, + { + "altTitles": [], + "artist": "ときめきアイドル project", + "data": { + "flareCategory": "WHITE", + "inGameID": 38208 + }, + "id": 38208, + "searchTerms": [], + "title": "Smiling Passion" + }, + { + "altTitles": [], + "artist": "松下", + "data": { + "flareCategory": "WHITE", + "inGameID": 38209 + }, + "id": 38209, + "searchTerms": [], + "title": "おねがいダーリン" + }, + { + "altTitles": [], + "artist": "適正レベル測定", + "data": { + "flareCategory": "GOLD", + "inGameID": 38210 + }, + "id": 38210, + "searchTerms": [], + "title": "LET'S CHECK YOUR LEVEL!" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"DJ TOTTO\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38211 + }, + "id": 38211, + "searchTerms": [], + "title": "DOWNER & UPPER" + }, + { + "altTitles": [], + "artist": "Hommarju", + "data": { + "flareCategory": "GOLD", + "inGameID": 38212 + }, + "id": 38212, + "searchTerms": [], + "title": "Drop The Bounce" + }, + { + "altTitles": [], + "artist": "ARM (IOSYS) feat. 一ノ瀬月琉 (monotone)", + "data": { + "flareCategory": "WHITE", + "inGameID": 38213 + }, + "id": 38213, + "searchTerms": [], + "title": "Love♡Shine わんだふるmix" + }, + { + "altTitles": [], + "artist": "DDR", + "data": { + "flareCategory": "WHITE", + "inGameID": 38214 + }, + "id": 38214, + "searchTerms": [], + "title": "DDR MEGAMIX" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"TAG\" feat. 柊木りお", + "data": { + "flareCategory": "WHITE", + "inGameID": 38215 + }, + "id": 38215, + "searchTerms": [], + "title": "Show me your moves" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"Sota Fujimori 2nd Season\"", + "data": { + "flareCategory": "WHITE", + "inGameID": 38216 + }, + "id": 38216, + "searchTerms": [], + "title": "POSSESSION (20th Anniversary Mix)" + }, + { + "altTitles": [], + "artist": "ARM (IOSYS)", + "data": { + "flareCategory": "WHITE", + "inGameID": 38217 + }, + "id": 38217, + "searchTerms": [], + "title": "CHAOS Terror-Tech Mix" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"[Ⓧ]\"", + "data": { + "flareCategory": "WHITE", + "inGameID": 38218 + }, + "id": 38218, + "searchTerms": [], + "title": "MAX 360" + }, + { + "altTitles": [], + "artist": "USAO", + "data": { + "flareCategory": "GOLD", + "inGameID": 38219 + }, + "id": 38219, + "searchTerms": [], + "title": "Avenger" + }, + { + "altTitles": [], + "artist": "Cait Sith", + "data": { + "flareCategory": "WHITE", + "inGameID": 38220 + }, + "id": 38220, + "searchTerms": [], + "title": "シュレーディンガーの猫" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"U1 overground\"", + "data": { + "flareCategory": "WHITE", + "inGameID": 38221 + }, + "id": 38221, + "searchTerms": [], + "title": "ANNIVERSARY ∴∵∴ ←↓↑→" + }, + { + "altTitles": [], + "artist": "DDR ALL FANS", + "data": { + "flareCategory": "WHITE", + "inGameID": 38222 + }, + "id": 38222, + "searchTerms": [], + "title": "#OurMemories" + }, + { + "altTitles": [], + "artist": "中島由貴", + "data": { + "flareCategory": "WHITE", + "inGameID": 38223 + }, + "id": 38223, + "searchTerms": [], + "title": "Catch Our Fire!" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"U1 overground\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38230 + }, + "id": 38230, + "searchTerms": [], + "title": "Seta Para Cima↑↑" + }, + { + "altTitles": [], + "artist": "Shoichiro Hirata", + "data": { + "flareCategory": "GOLD", + "inGameID": 38231 + }, + "id": 38231, + "searchTerms": [], + "title": "This Beat Is....." + }, + { + "altTitles": [], + "artist": "DJ Genki feat. Mayumi Morinaga", + "data": { + "flareCategory": "GOLD", + "inGameID": 38232 + }, + "id": 38232, + "searchTerms": [], + "title": "Starry Sky" + }, + { + "altTitles": [], + "artist": "Maozon", + "data": { + "flareCategory": "GOLD", + "inGameID": 38233 + }, + "id": 38233, + "searchTerms": [], + "title": "Dead Heat" + }, + { + "altTitles": [], + "artist": "nc ft.NRG Factory", + "data": { + "flareCategory": "GOLD", + "inGameID": 38234 + }, + "id": 38234, + "searchTerms": [], + "title": "Waiting" + }, + { + "altTitles": [], + "artist": "DJ Noriken", + "data": { + "flareCategory": "GOLD", + "inGameID": 38235 + }, + "id": 38235, + "searchTerms": [], + "title": "District of the Shadows" + }, + { + "altTitles": [], + "artist": "xac", + "data": { + "flareCategory": "GOLD", + "inGameID": 38236 + }, + "id": 38236, + "searchTerms": [], + "title": "Helios" + }, + { + "altTitles": [], + "artist": "矢鴇つかさ", + "data": { + "flareCategory": "GOLD", + "inGameID": 38237 + }, + "id": 38237, + "searchTerms": [], + "title": "Procyon" + }, + { + "altTitles": [], + "artist": "Nhato", + "data": { + "flareCategory": "GOLD", + "inGameID": 38238 + }, + "id": 38238, + "searchTerms": [], + "title": "Skywalking" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team", + "data": { + "flareCategory": "GOLD", + "inGameID": 38240 + }, + "id": 38240, + "searchTerms": [], + "title": "50th Memorial Songs -The BEMANI History-" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team", + "data": { + "flareCategory": "GOLD", + "inGameID": 38241 + }, + "id": 38241, + "searchTerms": [], + "title": "50th Memorial Songs -二人の時 ~under the cherry blossoms~-" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team", + "data": { + "flareCategory": "GOLD", + "inGameID": 38242 + }, + "id": 38242, + "searchTerms": [], + "title": "50th Memorial Songs -Flagship medley-" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team", + "data": { + "flareCategory": "GOLD", + "inGameID": 38243 + }, + "id": 38243, + "searchTerms": [], + "title": "50th Memorial Songs -Beginning Story-" + }, + { + "altTitles": [], + "artist": "nc ft. Kanae Jasmine Asaba", + "data": { + "flareCategory": "GOLD", + "inGameID": 38244 + }, + "id": 38244, + "searchTerms": [], + "title": "HAVE YOU NEVER BEEN MELLOW (20th Anniversary Mix)" + }, + { + "altTitles": [], + "artist": "日向美ビタースイーツ♪", + "data": { + "flareCategory": "GOLD", + "inGameID": 38245 + }, + "id": 38245, + "searchTerms": [], + "title": "スイーツはとまらない♪" + }, + { + "altTitles": [], + "artist": "ここなつ", + "data": { + "flareCategory": "GOLD", + "inGameID": 38246 + }, + "id": 38246, + "searchTerms": [], + "title": "ヒカリユリイカ" + }, + { + "altTitles": [], + "artist": "ここなつ", + "data": { + "flareCategory": "GOLD", + "inGameID": 38247 + }, + "id": 38247, + "searchTerms": [], + "title": "ベビーステップ" + }, + { + "altTitles": [], + "artist": "日向美ビタースイーツ♪", + "data": { + "flareCategory": "GOLD", + "inGameID": 38248 + }, + "id": 38248, + "searchTerms": [], + "title": "革命パッショネイト" + }, + { + "altTitles": [], + "artist": "日向美ビタースイーツ♪", + "data": { + "flareCategory": "GOLD", + "inGameID": 38249 + }, + "id": 38249, + "searchTerms": [], + "title": "熱情のサパデアード" + }, + { + "altTitles": [], + "artist": "DJ Shimamura", + "data": { + "flareCategory": "GOLD", + "inGameID": 38250 + }, + "id": 38250, + "searchTerms": [], + "title": "Get On Da Floor" + }, + { + "altTitles": [], + "artist": "まろん(IOSYS)", + "data": { + "flareCategory": "GOLD", + "inGameID": 38251 + }, + "id": 38251, + "searchTerms": [], + "title": "Toy Box Factory" + }, + { + "altTitles": [], + "artist": "DECO*27", + "data": { + "flareCategory": "GOLD", + "inGameID": 38252 + }, + "id": 38252, + "searchTerms": [], + "title": "毒占欲" + }, + { + "altTitles": [], + "artist": "DECO*27", + "data": { + "flareCategory": "GOLD", + "inGameID": 38253 + }, + "id": 38253, + "searchTerms": [], + "title": "ライアーダンス" + }, + { + "altTitles": [], + "artist": "DECO*27", + "data": { + "flareCategory": "GOLD", + "inGameID": 38254 + }, + "id": 38254, + "searchTerms": [], + "title": "妄想感傷代償連盟" + }, + { + "altTitles": [], + "artist": "sasakure.UK", + "data": { + "flareCategory": "GOLD", + "inGameID": 38255 + }, + "id": 38255, + "searchTerms": [], + "title": "タイガーランペイジ" + }, + { + "altTitles": [], + "artist": "ピノキオピー", + "data": { + "flareCategory": "GOLD", + "inGameID": 38256 + }, + "id": 38256, + "searchTerms": [], + "title": "腐れ外道とチョコレゐト" + }, + { + "altTitles": [], + "artist": "ピノキオピー", + "data": { + "flareCategory": "GOLD", + "inGameID": 38257 + }, + "id": 38257, + "searchTerms": [], + "title": "すきなことだけでいいです" + }, + { + "altTitles": [], + "artist": "aran", + "data": { + "flareCategory": "GOLD", + "inGameID": 38258 + }, + "id": 38258, + "searchTerms": [], + "title": "F4SH10N" + }, + { + "altTitles": [], + "artist": "KO3", + "data": { + "flareCategory": "GOLD", + "inGameID": 38259 + }, + "id": 38259, + "searchTerms": [], + "title": "SODA GALAXY" + }, + { + "altTitles": [], + "artist": "Relect", + "data": { + "flareCategory": "GOLD", + "inGameID": 38260 + }, + "id": 38260, + "searchTerms": [], + "title": "Give Me" + }, + { + "altTitles": [], + "artist": "DJ Shimamura", + "data": { + "flareCategory": "GOLD", + "inGameID": 38261 + }, + "id": 38261, + "searchTerms": [], + "title": "Rampage Hero" + }, + { + "altTitles": [], + "artist": "nc ft.Jasmine And DARIO TODA", + "data": { + "flareCategory": "GOLD", + "inGameID": 38262 + }, + "id": 38262, + "searchTerms": [], + "title": "CARTOON HEROES (20th Anniversary Mix)" + }, + { + "altTitles": [], + "artist": "KAN TAKAHIKO", + "data": { + "flareCategory": "GOLD", + "inGameID": 38263 + }, + "id": 38263, + "searchTerms": [], + "title": "Right Time Right Way" + }, + { + "altTitles": [], + "artist": "DJ TECHNORCH", + "data": { + "flareCategory": "GOLD", + "inGameID": 38264 + }, + "id": 38264, + "searchTerms": [], + "title": "最小三倍完全数" + }, + { + "altTitles": [], + "artist": "CaZ", + "data": { + "flareCategory": "GOLD", + "inGameID": 38265 + }, + "id": 38265, + "searchTerms": [], + "title": "Our Soul" + }, + { + "altTitles": [], + "artist": "TORIENA", + "data": { + "flareCategory": "GOLD", + "inGameID": 38266 + }, + "id": 38266, + "searchTerms": [], + "title": "LEVEL UP" + }, + { + "altTitles": [], + "artist": "Akira Complex", + "data": { + "flareCategory": "GOLD", + "inGameID": 38267 + }, + "id": 38267, + "searchTerms": [], + "title": "The World Ends Now" + }, + { + "altTitles": [], + "artist": "TeddyLoid", + "data": { + "flareCategory": "GOLD", + "inGameID": 38268 + }, + "id": 38268, + "searchTerms": [], + "title": "CROSS" + }, + { + "altTitles": [], + "artist": "Ariana Grande", + "data": { + "flareCategory": "GOLD", + "inGameID": 38269 + }, + "id": 38269, + "searchTerms": [], + "title": "No Tears Left to Cry" + }, + { + "altTitles": [], + "artist": "Dua Lipa", + "data": { + "flareCategory": "GOLD", + "inGameID": 38270 + }, + "id": 38270, + "searchTerms": [], + "title": "New Rules" + }, + { + "altTitles": [], + "artist": "The Chainsmokers & Coldplay", + "data": { + "flareCategory": "GOLD", + "inGameID": 38271 + }, + "id": 38271, + "searchTerms": [], + "title": "Something Just Like This (Alesso Remix)" + }, + { + "altTitles": [], + "artist": "Zedd feat. Foxes", + "data": { + "flareCategory": "GOLD", + "inGameID": 38272 + }, + "id": 38272, + "searchTerms": [], + "title": "Clarity" + }, + { + "altTitles": [], + "artist": "David Guetta feat. Ne-Yo, Akon", + "data": { + "flareCategory": "GOLD", + "inGameID": 38273 + }, + "id": 38273, + "searchTerms": [], + "title": "Play Hard" + }, + { + "altTitles": [], + "artist": "AronChupa", + "data": { + "flareCategory": "GOLD", + "inGameID": 38274 + }, + "id": 38274, + "searchTerms": [], + "title": "I'm an Albatraoz" + }, + { + "altTitles": [], + "artist": "Marshmello", + "data": { + "flareCategory": "GOLD", + "inGameID": 38275 + }, + "id": 38275, + "searchTerms": [], + "title": "Alone" + }, + { + "altTitles": [], + "artist": "LMFAO", + "data": { + "flareCategory": "GOLD", + "inGameID": 38276 + }, + "id": 38276, + "searchTerms": [], + "title": "Party Rock Anthem" + }, + { + "altTitles": [], + "artist": "Ujico*", + "data": { + "flareCategory": "GOLD", + "inGameID": 38277 + }, + "id": 38277, + "searchTerms": [], + "title": "BLSTR" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"Sota F.\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38278 + }, + "id": 38278, + "searchTerms": [], + "title": "New Era" + }, + { + "altTitles": [], + "artist": "Akira Complex", + "data": { + "flareCategory": "GOLD", + "inGameID": 38279 + }, + "id": 38279, + "searchTerms": [], + "title": "BLACK JACKAL" + }, + { + "altTitles": [], + "artist": "Haruki Yamada (ATTIC INC.) with Bodhi Kenyon", + "data": { + "flareCategory": "GOLD", + "inGameID": 38280 + }, + "id": 38280, + "searchTerms": [], + "title": "LONG TRAIN RUNNIN' (20th Anniversary Mix)" + }, + { + "altTitles": [], + "artist": "Haruki Yamada (ATTIC INC.) with Martin Leroux", + "data": { + "flareCategory": "GOLD", + "inGameID": 38281 + }, + "id": 38281, + "searchTerms": [], + "title": "SKY HIGH (20th Anniversary Mix)" + }, + { + "altTitles": [], + "artist": "Cranky", + "data": { + "flareCategory": "GOLD", + "inGameID": 38282 + }, + "id": 38282, + "searchTerms": [], + "title": "ALPACORE" + }, + { + "altTitles": [], + "artist": "seiya-murai", + "data": { + "flareCategory": "GOLD", + "inGameID": 38283 + }, + "id": 38283, + "searchTerms": [], + "title": "未来(ダ)FUTURE" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"SYUNN\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38284 + }, + "id": 38284, + "searchTerms": [], + "title": "Ace out" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"Sota F.\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38285 + }, + "id": 38285, + "searchTerms": [], + "title": "BUTTERFLY (20th Anniversary Mix)" + }, + { + "altTitles": [], + "artist": "Yooh", + "data": { + "flareCategory": "GOLD", + "inGameID": 38286 + }, + "id": 38286, + "searchTerms": [], + "title": "Crazy Shuffle" + }, + { + "altTitles": [], + "artist": "かめりあ", + "data": { + "flareCategory": "GOLD", + "inGameID": 38287 + }, + "id": 38287, + "searchTerms": [], + "title": "Small Steps" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"TAG underground\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38288 + }, + "id": 38288, + "searchTerms": [], + "title": "Splash Gold" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"猫叉劇団\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38289 + }, + "id": 38289, + "searchTerms": [], + "title": "Afterimage d'automne" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"PHQUASE\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38290 + }, + "id": 38290, + "searchTerms": [], + "title": "voltississimo" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"Yvya × Mutsuhiko Izumi\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38291 + }, + "id": 38291, + "searchTerms": [], + "title": "Six String Proof" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"S-C-U & SYUNN\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38292 + }, + "id": 38292, + "searchTerms": [], + "title": "toy boxer" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"PON\" feat.NU-KO", + "data": { + "flareCategory": "GOLD", + "inGameID": 38293 + }, + "id": 38293, + "searchTerms": [], + "title": "おーまい!らぶりー!すうぃーてぃ!だーりん!" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"dj TAKA\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38294 + }, + "id": 38294, + "searchTerms": [], + "title": "Trill auf G" + }, + { + "altTitles": [], + "artist": "いちか", + "data": { + "flareCategory": "GOLD", + "inGameID": 38295 + }, + "id": 38295, + "searchTerms": [], + "title": "ミッドナイト☆WAR" + }, + { + "altTitles": [], + "artist": "U1 overground", + "data": { + "flareCategory": "GOLD", + "inGameID": 38296 + }, + "id": 38296, + "searchTerms": [], + "title": "未完成ノ蒸氣驅動乙女 (DDR Edition)" + }, + { + "altTitles": [], + "artist": "劇団レコード", + "data": { + "flareCategory": "GOLD", + "inGameID": 38297 + }, + "id": 38297, + "searchTerms": [], + "title": "SWEET HOME PARTY" + }, + { + "altTitles": [], + "artist": "Dormir", + "data": { + "flareCategory": "GOLD", + "inGameID": 38298 + }, + "id": 38298, + "searchTerms": [], + "title": "Une mage blanche" + }, + { + "altTitles": [], + "artist": "日向美ビタースイーツ♪", + "data": { + "flareCategory": "GOLD", + "inGameID": 38299 + }, + "id": 38299, + "searchTerms": [], + "title": "ホーンテッド★メイドランチ" + }, + { + "altTitles": [], + "artist": "lapix", + "data": { + "flareCategory": "GOLD", + "inGameID": 38300 + }, + "id": 38300, + "searchTerms": [], + "title": "Glitch Angel" + }, + { + "altTitles": [], + "artist": "CHEAP CREAM", + "data": { + "flareCategory": "GOLD", + "inGameID": 38301 + }, + "id": 38301, + "searchTerms": [], + "title": "Stay 4 Ever" + }, + { + "altTitles": [], + "artist": "Dustvoxx", + "data": { + "flareCategory": "GOLD", + "inGameID": 38302 + }, + "id": 38302, + "searchTerms": [], + "title": "Bounce Trippy" + }, + { + "altTitles": [], + "artist": "BUNNY", + "data": { + "flareCategory": "GOLD", + "inGameID": 38303 + }, + "id": 38303, + "searchTerms": [], + "title": "IRON HEART" + }, + { + "altTitles": [], + "artist": "FN2(Eurobeat Union)", + "data": { + "flareCategory": "GOLD", + "inGameID": 38304 + }, + "id": 38304, + "searchTerms": [], + "title": "ENDLESS" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"U1×TAG\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38305 + }, + "id": 38305, + "searchTerms": [], + "title": "The History of the Future" + }, + { + "altTitles": [], + "artist": "Blacklolita", + "data": { + "flareCategory": "GOLD", + "inGameID": 38306 + }, + "id": 38306, + "searchTerms": [], + "title": "CyberConnect" + }, + { + "altTitles": [], + "artist": "BADMYTH", + "data": { + "flareCategory": "GOLD", + "inGameID": 38307 + }, + "id": 38307, + "searchTerms": [], + "title": "DeStRuCtIvE FoRcE" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"劇団レコード\" ft.Lisa - paint with stars", + "data": { + "flareCategory": "GOLD", + "inGameID": 38308 + }, + "id": 38308, + "searchTerms": [], + "title": "Starlight in the Snow" + }, + { + "altTitles": [], + "artist": "ハレトキドキ", + "data": { + "flareCategory": "GOLD", + "inGameID": 38309 + }, + "id": 38309, + "searchTerms": [], + "title": "DIGITAL LUV" + }, + { + "altTitles": [], + "artist": "Zekk", + "data": { + "flareCategory": "GOLD", + "inGameID": 38310 + }, + "id": 38310, + "searchTerms": [], + "title": "Golden Arrow" + }, + { + "altTitles": [], + "artist": "TANUKI", + "data": { + "flareCategory": "GOLD", + "inGameID": 38311 + }, + "id": 38311, + "searchTerms": [], + "title": "HyperTwist" + }, + { + "altTitles": [], + "artist": "かねこちはる", + "data": { + "flareCategory": "GOLD", + "inGameID": 38312 + }, + "id": 38312, + "searchTerms": [], + "title": "Lachryma《Re:Queen’M》" + }, + { + "altTitles": [], + "artist": "ETIA.", + "data": { + "flareCategory": "GOLD", + "inGameID": 38313 + }, + "id": 38313, + "searchTerms": [], + "title": "Firestorm" + }, + { + "altTitles": [], + "artist": "BlackY", + "data": { + "flareCategory": "GOLD", + "inGameID": 38314 + }, + "id": 38314, + "searchTerms": [], + "title": "ΩVERSOUL" + }, + { + "altTitles": [], + "artist": "中島由貴 × いちか", + "data": { + "flareCategory": "GOLD", + "inGameID": 38315 + }, + "id": 38315, + "searchTerms": [], + "title": "ランカーキラーガール" + }, + { + "altTitles": [], + "artist": "Ryunosuke Kudo", + "data": { + "flareCategory": "GOLD", + "inGameID": 38316 + }, + "id": 38316, + "searchTerms": [], + "title": "Draw the Savage" + }, + { + "altTitles": [], + "artist": "Hylen", + "data": { + "flareCategory": "GOLD", + "inGameID": 38317 + }, + "id": 38317, + "searchTerms": [], + "title": "Mythomane" + }, + { + "altTitles": [], + "artist": "Yunosuke", + "data": { + "flareCategory": "GOLD", + "inGameID": 38318 + }, + "id": 38318, + "searchTerms": [], + "title": "Hyper Bomb" + }, + { + "altTitles": [], + "artist": "U1 overground", + "data": { + "flareCategory": "GOLD", + "inGameID": 38319 + }, + "id": 38319, + "searchTerms": [], + "title": "Hunny Bunny" + }, + { + "altTitles": [], + "artist": "O/iviA", + "data": { + "flareCategory": "GOLD", + "inGameID": 38320 + }, + "id": 38320, + "searchTerms": [], + "title": "I Love You" + }, + { + "altTitles": [], + "artist": "TAG feat. ERi", + "data": { + "flareCategory": "GOLD", + "inGameID": 38321 + }, + "id": 38321, + "searchTerms": [], + "title": "Re:GENERATION" + }, + { + "altTitles": [], + "artist": "ひまわり*パンチ", + "data": { + "flareCategory": "GOLD", + "inGameID": 38322 + }, + "id": 38322, + "searchTerms": [], + "title": "どきドキ バレンタイン" + }, + { + "altTitles": [], + "artist": "ゴールデンボンバー", + "data": { + "flareCategory": "GOLD", + "inGameID": 38323 + }, + "id": 38323, + "searchTerms": [], + "title": "令和" + }, + { + "altTitles": [], + "artist": "Paisley Parks", + "data": { + "flareCategory": "GOLD", + "inGameID": 38324 + }, + "id": 38324, + "searchTerms": [], + "title": "STEP MACHINE" + }, + { + "altTitles": [], + "artist": "PSYQUI", + "data": { + "flareCategory": "GOLD", + "inGameID": 38325 + }, + "id": 38325, + "searchTerms": [], + "title": "In the past" + }, + { + "altTitles": [], + "artist": "Moe Shop", + "data": { + "flareCategory": "GOLD", + "inGameID": 38326 + }, + "id": 38326, + "searchTerms": [], + "title": "HYPERDRIVE" + }, + { + "altTitles": [], + "artist": "ビートまりお(COOL&CREATE)", + "data": { + "flareCategory": "GOLD", + "inGameID": 38331 + }, + "id": 38331, + "searchTerms": [], + "title": "最終鬼畜妹フランドール・S" + }, + { + "altTitles": [], + "artist": "Ryu☆", + "data": { + "flareCategory": "GOLD", + "inGameID": 38332 + }, + "id": 38332, + "searchTerms": [], + "title": "ナイト・オブ・ナイツ (Ryu☆Remix)" + }, + { + "altTitles": [], + "artist": "HiBiKi", + "data": { + "flareCategory": "GOLD", + "inGameID": 38333 + }, + "id": 38333, + "searchTerms": [], + "title": "PARTY ALL NIGHT(DJ KEN-BOW MIX)" + }, + { + "altTitles": [], + "artist": "M-Project", + "data": { + "flareCategory": "GOLD", + "inGameID": 38334 + }, + "id": 38334, + "searchTerms": [], + "title": "Rave Accelerator" + }, + { + "altTitles": [], + "artist": "Tanukichi", + "data": { + "flareCategory": "GOLD", + "inGameID": 38335 + }, + "id": 38335, + "searchTerms": [], + "title": "Lightspeed" + }, + { + "altTitles": [], + "artist": "KOTONOHOUSE", + "data": { + "flareCategory": "GOLD", + "inGameID": 38336 + }, + "id": 38336, + "searchTerms": [], + "title": "take me higher" + }, + { + "altTitles": [], + "artist": "かめりあ", + "data": { + "flareCategory": "GOLD", + "inGameID": 38337 + }, + "id": 38337, + "searchTerms": [], + "title": "Midnight Amaretto" + }, + { + "altTitles": [], + "artist": "kors k feat.福島蘭世", + "data": { + "flareCategory": "GOLD", + "inGameID": 38338 + }, + "id": 38338, + "searchTerms": [], + "title": "DANCERUSH STARDOM ANTHEM" + }, + { + "altTitles": [], + "artist": "MK&Kanae Asaba", + "data": { + "flareCategory": "GOLD", + "inGameID": 38339 + }, + "id": 38339, + "searchTerms": [], + "title": "Come Back To Me" + }, + { + "altTitles": [], + "artist": "kors k", + "data": { + "flareCategory": "GOLD", + "inGameID": 38340 + }, + "id": 38340, + "searchTerms": [], + "title": "Last Card" + }, + { + "altTitles": [], + "artist": "Mameyudoufu", + "data": { + "flareCategory": "GOLD", + "inGameID": 38341 + }, + "id": 38341, + "searchTerms": [], + "title": "Going Hypersonic" + }, + { + "altTitles": [], + "artist": "KOTONOHOUSE", + "data": { + "flareCategory": "GOLD", + "inGameID": 38342 + }, + "id": 38342, + "searchTerms": [], + "title": "I Want To Do This Keep" + }, + { + "altTitles": [], + "artist": "SOUND HOLIC Vs. Eurobeat Union feat. Nana Takahashi", + "data": { + "flareCategory": "GOLD", + "inGameID": 38343 + }, + "id": 38343, + "searchTerms": [], + "title": "GUILTY DIAMONDS" + }, + { + "altTitles": [], + "artist": "SOUND HOLIC Vs. Eurobeat Union feat. Nana Takahashi", + "data": { + "flareCategory": "GOLD", + "inGameID": 38344 + }, + "id": 38344, + "searchTerms": [], + "title": "No Life Queen [DJ Command Remix]" + }, + { + "altTitles": [], + "artist": "A-One feat.Napoleon", + "data": { + "flareCategory": "GOLD", + "inGameID": 38345 + }, + "id": 38345, + "searchTerms": [], + "title": "Feidie" + }, + { + "altTitles": [], + "artist": "DiGiTAL WiNG with 空音", + "data": { + "flareCategory": "GOLD", + "inGameID": 38346 + }, + "id": 38346, + "searchTerms": [], + "title": "Together Going My Way" + }, + { + "altTitles": [], + "artist": "NJK Record feat.nachi", + "data": { + "flareCategory": "GOLD", + "inGameID": 38347 + }, + "id": 38347, + "searchTerms": [], + "title": "Crazy Hot" + }, + { + "altTitles": [], + "artist": "Vanitas Lacrimosa", + "data": { + "flareCategory": "GOLD", + "inGameID": 38348 + }, + "id": 38348, + "searchTerms": [], + "title": "至上のラトゥーリア" + }, + { + "altTitles": [], + "artist": "夜叉姫神楽", + "data": { + "flareCategory": "GOLD", + "inGameID": 38349 + }, + "id": 38349, + "searchTerms": [], + "title": "御伽噺に幕切れを" + }, + { + "altTitles": [], + "artist": "Blanc Bunny Bandit", + "data": { + "flareCategory": "GOLD", + "inGameID": 38350 + }, + "id": 38350, + "searchTerms": [], + "title": "ROOM" + }, + { + "altTitles": [], + "artist": "メリー・バッド・メルヘン", + "data": { + "flareCategory": "GOLD", + "inGameID": 38351 + }, + "id": 38351, + "searchTerms": [], + "title": "逆さま♥シンデレラパレード" + }, + { + "altTitles": [], + "artist": "立秋 feat.ちょこ", + "data": { + "flareCategory": "GOLD", + "inGameID": 38352 + }, + "id": 38352, + "searchTerms": [], + "title": "び" + }, + { + "altTitles": [], + "artist": "DÉ DÉ MOUSE", + "data": { + "flareCategory": "GOLD", + "inGameID": 38353 + }, + "id": 38353, + "searchTerms": [], + "title": "Silly Love" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"HuΣeR × MarL × SYUNN\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38354 + }, + "id": 38354, + "searchTerms": [], + "title": "星屑の夜果て" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"Sota F.\" feat.いちか", + "data": { + "flareCategory": "GOLD", + "inGameID": 38355 + }, + "id": 38355, + "searchTerms": [], + "title": "ラブキラ☆スプラッシュ" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"Qrispy Joybox\" feat.いちか", + "data": { + "flareCategory": "GOLD", + "inGameID": 38356 + }, + "id": 38356, + "searchTerms": [], + "title": "Sparkle Smilin'" + }, + { + "altTitles": [], + "artist": "DJ TECHNORCH feat.宇宙★海月 vs BEMANI Sound Team \"U1-ASAMi\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38357 + }, + "id": 38357, + "searchTerms": [], + "title": "東京神話" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"Sota F.\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38358 + }, + "id": 38358, + "searchTerms": [], + "title": "DIGITALIZER" + }, + { + "altTitles": [], + "artist": "Dirty Androids", + "data": { + "flareCategory": "GOLD", + "inGameID": 38359 + }, + "id": 38359, + "searchTerms": [], + "title": "City Never Sleeps" + }, + { + "altTitles": [], + "artist": "TAG", + "data": { + "flareCategory": "GOLD", + "inGameID": 38360 + }, + "id": 38360, + "searchTerms": [], + "title": "Riot of Color" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"劇団レコード\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38361 + }, + "id": 38361, + "searchTerms": [], + "title": "GHOST KINGDOM" + }, + { + "altTitles": [], + "artist": "Oyubi", + "data": { + "flareCategory": "GOLD", + "inGameID": 38362 + }, + "id": 38362, + "searchTerms": [], + "title": "Bang Pad(Werk Mix)" + }, + { + "altTitles": [], + "artist": "C-Show", + "data": { + "flareCategory": "GOLD", + "inGameID": 38363 + }, + "id": 38363, + "searchTerms": [], + "title": "MUTEKI BUFFALO" + }, + { + "altTitles": [], + "artist": "fu_mou", + "data": { + "flareCategory": "GOLD", + "inGameID": 38364 + }, + "id": 38364, + "searchTerms": [], + "title": "Wolf's Rain" + }, + { + "altTitles": [], + "artist": "Hylen feat. VGYO", + "data": { + "flareCategory": "GOLD", + "inGameID": 38365 + }, + "id": 38365, + "searchTerms": [], + "title": "Vertigo" + }, + { + "altTitles": [], + "artist": "Vanitas Lacrimosa", + "data": { + "flareCategory": "GOLD", + "inGameID": 38366 + }, + "id": 38366, + "searchTerms": [], + "title": "叛逆のディスパレート" + }, + { + "altTitles": [], + "artist": "メリー・バッド・メルヘン", + "data": { + "flareCategory": "GOLD", + "inGameID": 38367 + }, + "id": 38367, + "searchTerms": [], + "title": "アリスサイド・キャスリング" + }, + { + "altTitles": [], + "artist": "夜叉姫神楽", + "data": { + "flareCategory": "GOLD", + "inGameID": 38368 + }, + "id": 38368, + "searchTerms": [], + "title": "花は折りたし梢は高し" + }, + { + "altTitles": [], + "artist": "Blanc Bunny Bandit", + "data": { + "flareCategory": "GOLD", + "inGameID": 38369 + }, + "id": 38369, + "searchTerms": [], + "title": "追憶のアリア" + }, + { + "altTitles": [], + "artist": "movies (moimoi×Xceon×Dai.)", + "data": { + "flareCategory": "GOLD", + "inGameID": 38370 + }, + "id": 38370, + "searchTerms": [], + "title": "蒼が消えるとき" + }, + { + "altTitles": [], + "artist": "lapix", + "data": { + "flareCategory": "GOLD", + "inGameID": 38371 + }, + "id": 38371, + "searchTerms": [], + "title": "Our Love" + }, + { + "altTitles": [], + "artist": "cosMo@暴走P", + "data": { + "flareCategory": "GOLD", + "inGameID": 38372 + }, + "id": 38372, + "searchTerms": [], + "title": "Last Twilight" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"HuΣeR Vs. SYUNN\" feat.いちか", + "data": { + "flareCategory": "GOLD", + "inGameID": 38373 + }, + "id": 38373, + "searchTerms": [], + "title": "狂水一華" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"U1 overground\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38374 + }, + "id": 38374, + "searchTerms": [], + "title": "ノルエピネフリン" + }, + { + "altTitles": [], + "artist": "C-Show", + "data": { + "flareCategory": "GOLD", + "inGameID": 38375 + }, + "id": 38375, + "searchTerms": [], + "title": "PANIC HOLIC" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"U1\" feat. Tammy S. Hansen", + "data": { + "flareCategory": "GOLD", + "inGameID": 38376 + }, + "id": 38376, + "searchTerms": [], + "title": "Taking It To The Sky (PLUS step)" + }, + { + "altTitles": [], + "artist": "AJURIKA", + "data": { + "flareCategory": "GOLD", + "inGameID": 38377 + }, + "id": 38377, + "searchTerms": [], + "title": "HARD BRAIN" + }, + { + "altTitles": [], + "artist": "U1 undefined behavior", + "data": { + "flareCategory": "GOLD", + "inGameID": 38378 + }, + "id": 38378, + "searchTerms": [], + "title": "DEADLOCK -Out Of Reach-" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"dj TAKA\" feat.のの", + "data": { + "flareCategory": "GOLD", + "inGameID": 38379 + }, + "id": 38379, + "searchTerms": [], + "title": "Jetcoaster Windy" + }, + { + "altTitles": [], + "artist": "yama", + "data": { + "flareCategory": "GOLD", + "inGameID": 38380 + }, + "id": 38380, + "searchTerms": [], + "title": "春を告げる" + }, + { + "altTitles": [], + "artist": "lapix (Remixed by Blacklolita)", + "data": { + "flareCategory": "GOLD", + "inGameID": 38381 + }, + "id": 38381, + "searchTerms": [], + "title": "Inner Spirit -GIGA HiTECH MIX-" + }, + { + "altTitles": [], + "artist": "Qrispy Joybox feat. mao", + "data": { + "flareCategory": "GOLD", + "inGameID": 38382 + }, + "id": 38382, + "searchTerms": [], + "title": "梅雪夜" + }, + { + "altTitles": [], + "artist": "Blanc Bunny Bandit", + "data": { + "flareCategory": "GOLD", + "inGameID": 38383 + }, + "id": 38383, + "searchTerms": [], + "title": "ハラショー!おにぎりサーカス団☆" + }, + { + "altTitles": [], + "artist": "Vanitas Lacrimosa", + "data": { + "flareCategory": "GOLD", + "inGameID": 38384 + }, + "id": 38384, + "searchTerms": [], + "title": "イノセントバイブル" + }, + { + "altTitles": [], + "artist": "夜叉姫神楽", + "data": { + "flareCategory": "GOLD", + "inGameID": 38385 + }, + "id": 38385, + "searchTerms": [], + "title": "ウソツキ横丁は雨模様" + }, + { + "altTitles": [], + "artist": "メリー・バッド・メルヘン", + "data": { + "flareCategory": "GOLD", + "inGameID": 38386 + }, + "id": 38386, + "searchTerms": [], + "title": "Red Cape Theorem" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"Trance Liquid\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38388 + }, + "id": 38388, + "searchTerms": [], + "title": "X-ray binary" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"U1 overground\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38389 + }, + "id": 38389, + "searchTerms": [], + "title": "Never See You Again" + }, + { + "altTitles": [], + "artist": "S.S.D. with ななっち", + "data": { + "flareCategory": "GOLD", + "inGameID": 38390 + }, + "id": 38390, + "searchTerms": [], + "title": "BRIDAL FESTIVAL !!!" + }, + { + "altTitles": [], + "artist": "かめりあ", + "data": { + "flareCategory": "GOLD", + "inGameID": 38391 + }, + "id": 38391, + "searchTerms": [], + "title": "Yuni's Nocturnal Days" + }, + { + "altTitles": [], + "artist": "栄免建設", + "data": { + "flareCategory": "GOLD", + "inGameID": 38392 + }, + "id": 38392, + "searchTerms": [], + "title": "Electronic Sports Complex" + }, + { + "altTitles": [], + "artist": "fazerock", + "data": { + "flareCategory": "GOLD", + "inGameID": 38393 + }, + "id": 38393, + "searchTerms": [], + "title": "Run The Show" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"Sota Fujimori\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38394 + }, + "id": 38394, + "searchTerms": [], + "title": "CONNECT-" + }, + { + "altTitles": [], + "artist": "L.E.D.-G", + "data": { + "flareCategory": "GOLD", + "inGameID": 38395 + }, + "id": 38395, + "searchTerms": [], + "title": "BITTER CHOCOLATE STRIKER" + }, + { + "altTitles": [], + "artist": "Ryu☆", + "data": { + "flareCategory": "GOLD", + "inGameID": 38396 + }, + "id": 38396, + "searchTerms": [], + "title": "We're so Happy" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"TAG\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38397 + }, + "id": 38397, + "searchTerms": [], + "title": "世界の果てに約束の凱歌を -DDR Extended Megamix-" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"あさき隊\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38398 + }, + "id": 38398, + "searchTerms": [], + "title": "ここからよろしく大作戦143" + }, + { + "altTitles": [], + "artist": "亜咲花", + "data": { + "flareCategory": "GOLD", + "inGameID": 38399 + }, + "id": 38399, + "searchTerms": [], + "title": "SHINY DAYS" + }, + { + "altTitles": [], + "artist": "鹿乃と宇崎ちゃん", + "data": { + "flareCategory": "GOLD", + "inGameID": 38400 + }, + "id": 38400, + "searchTerms": [], + "title": "なだめスかし Negotiation" + }, + { + "altTitles": [], + "artist": "Numb'n'dub", + "data": { + "flareCategory": "GOLD", + "inGameID": 38401 + }, + "id": 38401, + "searchTerms": [], + "title": "THIS IS MY LAST RESORT" + }, + { + "altTitles": [], + "artist": "Dazsta", + "data": { + "flareCategory": "GOLD", + "inGameID": 38402 + }, + "id": 38402, + "searchTerms": [], + "title": "Next Phase" + }, + { + "altTitles": [], + "artist": "SYSTEM VALKYRIE:type-overdrive", + "data": { + "flareCategory": "GOLD", + "inGameID": 38403 + }, + "id": 38403, + "searchTerms": [], + "title": "memory//DATAMOSHER" + }, + { + "altTitles": [], + "artist": "kiraku", + "data": { + "flareCategory": "GOLD", + "inGameID": 38404 + }, + "id": 38404, + "searchTerms": [], + "title": "actualization of self (weaponized)" + }, + { + "altTitles": [], + "artist": "nana(Sevencolors) feat.ジゼル・クイン", + "data": { + "flareCategory": "GOLD", + "inGameID": 38405 + }, + "id": 38405, + "searchTerms": [], + "title": "SAYONARA☆ディスコライト" + }, + { + "altTitles": [], + "artist": "m1dy", + "data": { + "flareCategory": "GOLD", + "inGameID": 38406 + }, + "id": 38406, + "searchTerms": [], + "title": "Come To m1dy" + }, + { + "altTitles": [], + "artist": "nanobii", + "data": { + "flareCategory": "GOLD", + "inGameID": 38407 + }, + "id": 38407, + "searchTerms": [], + "title": "Step This Way" + }, + { + "altTitles": [], + "artist": "JAKAZiD", + "data": { + "flareCategory": "GOLD", + "inGameID": 38408 + }, + "id": 38408, + "searchTerms": [], + "title": "Good Looking" + }, + { + "altTitles": [], + "artist": "MASAYOSHI IIMORI", + "data": { + "flareCategory": "GOLD", + "inGameID": 38409 + }, + "id": 38409, + "searchTerms": [], + "title": "Hella Deep" + }, + { + "altTitles": [], + "artist": "DJ YOSHITAKA", + "data": { + "flareCategory": "GOLD", + "inGameID": 38410 + }, + "id": 38410, + "searchTerms": [], + "title": "Evans" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"L.E.D.\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38411 + }, + "id": 38411, + "searchTerms": [], + "title": "BLUE FOG, SILVER BULLET." + }, + { + "altTitles": [], + "artist": "亜咲花", + "data": { + "flareCategory": "GOLD", + "inGameID": 38412 + }, + "id": 38412, + "searchTerms": [], + "title": "I believe what you said" + }, + { + "altTitles": [], + "artist": "かめりあ", + "data": { + "flareCategory": "GOLD", + "inGameID": 38413 + }, + "id": 38413, + "searchTerms": [], + "title": "鳳" + }, + { + "altTitles": [], + "artist": "ヨルシカ", + "data": { + "flareCategory": "GOLD", + "inGameID": 38414 + }, + "id": 38414, + "searchTerms": [], + "title": "思想犯" + }, + { + "altTitles": [], + "artist": "DJ TOTTO feat.Annabel & 日山尚", + "data": { + "flareCategory": "GOLD", + "inGameID": 38415 + }, + "id": 38415, + "searchTerms": [], + "title": "彼方のリフレシア" + }, + { + "altTitles": [], + "artist": "鈴木このみ", + "data": { + "flareCategory": "GOLD", + "inGameID": 38416 + }, + "id": 38416, + "searchTerms": [], + "title": "Realize" + }, + { + "altTitles": [], + "artist": "亜咲花", + "data": { + "flareCategory": "GOLD", + "inGameID": 38417 + }, + "id": 38417, + "searchTerms": [], + "title": "Seize The Day" + }, + { + "altTitles": [], + "artist": "Taiki", + "data": { + "flareCategory": "GOLD", + "inGameID": 38418 + }, + "id": 38418, + "searchTerms": [], + "title": "雑草魂なめんなよ!" + }, + { + "altTitles": [], + "artist": "いとうかなこ", + "data": { + "flareCategory": "GOLD", + "inGameID": 38419 + }, + "id": 38419, + "searchTerms": [], + "title": "スカイクラッドの観測者" + }, + { + "altTitles": [], + "artist": "Pa's Lam System", + "data": { + "flareCategory": "GOLD", + "inGameID": 38420 + }, + "id": 38420, + "searchTerms": [], + "title": "If" + }, + { + "altTitles": [], + "artist": "Akhuta", + "data": { + "flareCategory": "GOLD", + "inGameID": 38421 + }, + "id": 38421, + "searchTerms": [], + "title": "Jucunda Memoria" + }, + { + "altTitles": [], + "artist": "Shouya Namai", + "data": { + "flareCategory": "GOLD", + "inGameID": 38422 + }, + "id": 38422, + "searchTerms": [], + "title": "Are U Ready" + }, + { + "altTitles": [], + "artist": "nana(Sevencolors)", + "data": { + "flareCategory": "GOLD", + "inGameID": 38423 + }, + "id": 38423, + "searchTerms": [], + "title": "Poppin' Soda" + }, + { + "altTitles": [], + "artist": "SOUND HOLIC Vs. ZYTOKINE feat. Nana Takahashi", + "data": { + "flareCategory": "GOLD", + "inGameID": 38424 + }, + "id": 38424, + "searchTerms": [], + "title": "ONYX" + }, + { + "altTitles": [], + "artist": "sky_delta", + "data": { + "flareCategory": "GOLD", + "inGameID": 38425 + }, + "id": 38425, + "searchTerms": [], + "title": "Sword of Vengeance" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"Sota F.\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38426 + }, + "id": 38426, + "searchTerms": [], + "title": "Better Than Me" + }, + { + "altTitles": [], + "artist": "星野 源", + "data": { + "flareCategory": "GOLD", + "inGameID": 38427 + }, + "id": 38427, + "searchTerms": [], + "title": "恋" + }, + { + "altTitles": [], + "artist": "Shouya Namai", + "data": { + "flareCategory": "GOLD", + "inGameID": 38428 + }, + "id": 38428, + "searchTerms": [], + "title": "High & Low" + }, + { + "altTitles": [], + "artist": "Upper Cape Project", + "data": { + "flareCategory": "GOLD", + "inGameID": 38429 + }, + "id": 38429, + "searchTerms": [], + "title": "勇猛無比" + }, + { + "altTitles": [], + "artist": "Yucky", + "data": { + "flareCategory": "GOLD", + "inGameID": 38430 + }, + "id": 38430, + "searchTerms": [], + "title": "paparazzi" + }, + { + "altTitles": [], + "artist": "kors k", + "data": { + "flareCategory": "GOLD", + "inGameID": 38431 + }, + "id": 38431, + "searchTerms": [], + "title": "Uh-Oh" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"TAG underground overlay UNLEASHED\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38432 + }, + "id": 38432, + "searchTerms": [], + "title": "DDR TAGMIX -LAST DanceR-" + }, + { + "altTitles": [], + "artist": "Jonny Dynamite!,Lisa - paint with stars -,Rio Hiiragi by BEMANI Sound Team \"U1-ASAMi\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38433 + }, + "id": 38433, + "searchTerms": [], + "title": "MOVE! (We Keep It Movin')" + }, + { + "altTitles": [], + "artist": "神田沙也加", + "data": { + "flareCategory": "GOLD", + "inGameID": 38434 + }, + "id": 38434, + "searchTerms": [], + "title": "ロキ(w/緒方恵美)" + }, + { + "altTitles": [], + "artist": "小寺可南子,ランコ,SARAH by BEMANI Sound Team \"Yvya\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38435 + }, + "id": 38435, + "searchTerms": [], + "title": "鋳鉄の檻" + }, + { + "altTitles": [], + "artist": "すわひでお,秋成,かぼちゃ,藍月なくる,NU-KO by BEMANI Sound Team \"八戸亀生羅\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38436 + }, + "id": 38436, + "searchTerms": [], + "title": "スーパー戦湯ババンバーン" + }, + { + "altTitles": [], + "artist": "koyomi,星野奏子 by BEMANI Sound Team \"TAKA\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38437 + }, + "id": 38437, + "searchTerms": [], + "title": "LIKE A VAMPIRE" + }, + { + "altTitles": [], + "artist": "Sana,ATSUMI UEDA by BEMANI Sound Team \"PON\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38438 + }, + "id": 38438, + "searchTerms": [], + "title": "Globe Glitter" + }, + { + "altTitles": [], + "artist": "紫崎 雪,Risa Yuzuki,709sec. by BEMANI Sound Team \"PHQUASE & SYUNN\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38439 + }, + "id": 38439, + "searchTerms": [], + "title": "ユメブキ" + }, + { + "altTitles": [], + "artist": "P丸様。", + "data": { + "flareCategory": "GOLD", + "inGameID": 38440 + }, + "id": 38440, + "searchTerms": [], + "title": "シル・ヴ・プレジデント" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"dj TAKA & DJ YOSHITAKA & SYUNN\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38441 + }, + "id": 38441, + "searchTerms": [], + "title": "Triple Cross" + }, + { + "altTitles": [], + "artist": "DJ Mass MAD Izm*", + "data": { + "flareCategory": "GOLD", + "inGameID": 38442 + }, + "id": 38442, + "searchTerms": [], + "title": "灼熱 Pt.2 Long Train Running" + }, + { + "altTitles": [], + "artist": "あるふぁ", + "data": { + "flareCategory": "GOLD", + "inGameID": 38443 + }, + "id": 38443, + "searchTerms": [], + "title": "Sweet Clock" + }, + { + "altTitles": [], + "artist": "kors k", + "data": { + "flareCategory": "GOLD", + "inGameID": 38444 + }, + "id": 38444, + "searchTerms": [], + "title": "Pump Pump Pump" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"Monolith vs. Nautilus\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38445 + }, + "id": 38445, + "searchTerms": [], + "title": "Last Summer" + }, + { + "altTitles": [], + "artist": "Yuta Imai", + "data": { + "flareCategory": "GOLD", + "inGameID": 38446 + }, + "id": 38446, + "searchTerms": [], + "title": "STAY GOLD" + }, + { + "altTitles": [], + "artist": "TORIENA", + "data": { + "flareCategory": "GOLD", + "inGameID": 38447 + }, + "id": 38447, + "searchTerms": [], + "title": "ノープラン・デイズ" + }, + { + "altTitles": [], + "artist": "G-T-R", + "data": { + "flareCategory": "GOLD", + "inGameID": 38448 + }, + "id": 38448, + "searchTerms": [], + "title": "Shout It Out" + }, + { + "altTitles": [], + "artist": "A.T.park", + "data": { + "flareCategory": "GOLD", + "inGameID": 38449 + }, + "id": 38449, + "searchTerms": [], + "title": "BLAKE" + }, + { + "altTitles": [], + "artist": "BlackY", + "data": { + "flareCategory": "GOLD", + "inGameID": 38450 + }, + "id": 38450, + "searchTerms": [], + "title": "TYPHØN" + }, + { + "altTitles": [], + "artist": "Whac-A-Me", + "data": { + "flareCategory": "GOLD", + "inGameID": 38451 + }, + "id": 38451, + "searchTerms": [], + "title": "Let Me Show You" + }, + { + "altTitles": [], + "artist": "Dubscribe", + "data": { + "flareCategory": "GOLD", + "inGameID": 38452 + }, + "id": 38452, + "searchTerms": [], + "title": "Get it" + }, + { + "altTitles": [], + "artist": "Dominant Space", + "data": { + "flareCategory": "GOLD", + "inGameID": 38453 + }, + "id": 38453, + "searchTerms": [], + "title": "Come Back to Me (Feel It)" + }, + { + "altTitles": [], + "artist": "CHEAP CREAM", + "data": { + "flareCategory": "GOLD", + "inGameID": 38454 + }, + "id": 38454, + "searchTerms": [], + "title": "♡Drive My Heart♡" + }, + { + "altTitles": [], + "artist": "Tatsunoshin", + "data": { + "flareCategory": "GOLD", + "inGameID": 38455 + }, + "id": 38455, + "searchTerms": [], + "title": "Teleportation" + }, + { + "altTitles": [], + "artist": "nora2r feat. 和鳴るせ", + "data": { + "flareCategory": "GOLD", + "inGameID": 38456 + }, + "id": 38456, + "searchTerms": [], + "title": "Like A Star" + }, + { + "altTitles": [], + "artist": "Hommarju", + "data": { + "flareCategory": "GOLD", + "inGameID": 38457 + }, + "id": 38457, + "searchTerms": [], + "title": "Good Sound United" + }, + { + "altTitles": [], + "artist": "ZEOL", + "data": { + "flareCategory": "GOLD", + "inGameID": 38458 + }, + "id": 38458, + "searchTerms": [], + "title": "Let Me Know" + }, + { + "altTitles": [], + "artist": "FLOXYTEK", + "data": { + "flareCategory": "GOLD", + "inGameID": 38459 + }, + "id": 38459, + "searchTerms": [], + "title": "PERSIAN LAND" + }, + { + "altTitles": [], + "artist": "Stessie", + "data": { + "flareCategory": "GOLD", + "inGameID": 38460 + }, + "id": 38460, + "searchTerms": [], + "title": "Surface" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"ZAQUVA\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38461 + }, + "id": 38461, + "searchTerms": [], + "title": "ANTI ANTHEM" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"Sota F.\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38462 + }, + "id": 38462, + "searchTerms": [], + "title": "AI" + }, + { + "altTitles": [], + "artist": "sky_delta", + "data": { + "flareCategory": "GOLD", + "inGameID": 38463 + }, + "id": 38463, + "searchTerms": [], + "title": "Unreality" + }, + { + "altTitles": [], + "artist": "WATARU", + "data": { + "flareCategory": "GOLD", + "inGameID": 38464 + }, + "id": 38464, + "searchTerms": [], + "title": "Get Your Wish" + }, + { + "altTitles": [], + "artist": "BlackY feat. Risa Yuzuki", + "data": { + "flareCategory": "GOLD", + "inGameID": 38465 + }, + "id": 38465, + "searchTerms": [], + "title": "Anthurium" + }, + { + "altTitles": [], + "artist": "D-wacrew", + "data": { + "flareCategory": "GOLD", + "inGameID": 38466 + }, + "id": 38466, + "searchTerms": [], + "title": "ほしのつくりかた" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"TAG\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38467 + }, + "id": 38467, + "searchTerms": [], + "title": "モノクロモーメント" + }, + { + "altTitles": [], + "artist": "DV-i", + "data": { + "flareCategory": "GOLD", + "inGameID": 38468 + }, + "id": 38468, + "searchTerms": [], + "title": "Environ [De-SYNC] (feat. lythe)" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 38469 + }, + "id": 38469, + "searchTerms": [], + "title": "紅蓮華" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 38470 + }, + "id": 38470, + "searchTerms": [], + "title": "夜に駆ける" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 38471 + }, + "id": 38471, + "searchTerms": [], + "title": "怪物" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 38472 + }, + "id": 38472, + "searchTerms": [], + "title": "群青" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 38473 + }, + "id": 38473, + "searchTerms": [], + "title": "勿忘" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 38474 + }, + "id": 38474, + "searchTerms": [], + "title": "ドライフラワー" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 38476 + }, + "id": 38476, + "searchTerms": [], + "title": "Pretender" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 38477 + }, + "id": 38477, + "searchTerms": [], + "title": "さくらんぼ" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 38478 + }, + "id": 38478, + "searchTerms": [], + "title": "愛のために。" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 38479 + }, + "id": 38479, + "searchTerms": [], + "title": "恋愛レボリューション21" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 38480 + }, + "id": 38480, + "searchTerms": [], + "title": "ルカルカ★ナイトフィーバー" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"猫叉Master & あさき & Yvya\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38481 + }, + "id": 38481, + "searchTerms": [], + "title": "Aftermath" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 38482 + }, + "id": 38482, + "searchTerms": [], + "title": "10年桜" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 38483 + }, + "id": 38483, + "searchTerms": [], + "title": "夏祭り" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 38484 + }, + "id": 38484, + "searchTerms": [], + "title": "じょいふる" + }, + { + "altTitles": [], + "artist": "P*Light", + "data": { + "flareCategory": "GOLD", + "inGameID": 38485 + }, + "id": 38485, + "searchTerms": [], + "title": "パピポペピプペパ" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"Captain KING\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38486 + }, + "id": 38486, + "searchTerms": [], + "title": "Dance Phenomena" + }, + { + "altTitles": [], + "artist": "U1 vs U1 overground", + "data": { + "flareCategory": "GOLD", + "inGameID": 38487 + }, + "id": 38487, + "searchTerms": [], + "title": "私をディスコに連れてって TOKYO" + }, + { + "altTitles": [], + "artist": "TOMOSUKE feat. Three Berry Icecream", + "data": { + "flareCategory": "GOLD", + "inGameID": 38488 + }, + "id": 38488, + "searchTerms": [], + "title": "jet coaster☆girl" + }, + { + "altTitles": [], + "artist": "L.E.D.", + "data": { + "flareCategory": "GOLD", + "inGameID": 38489 + }, + "id": 38489, + "searchTerms": [], + "title": "SCHWARZSCHILD FIELD" + }, + { + "altTitles": [], + "artist": "すりぃ feat.鏡音レン", + "data": { + "flareCategory": "GOLD", + "inGameID": 38490 + }, + "id": 38490, + "searchTerms": [], + "title": "テレキャスタービーボーイ" + }, + { + "altTitles": [], + "artist": "フレデリック", + "data": { + "flareCategory": "GOLD", + "inGameID": 38491 + }, + "id": 38491, + "searchTerms": [], + "title": "サイカ" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"Akhuta Works\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38492 + }, + "id": 38492, + "searchTerms": [], + "title": "Fleur" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"Coyaan\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38493 + }, + "id": 38493, + "searchTerms": [], + "title": "Deep tenDon Reflex" + }, + { + "altTitles": [], + "artist": "S-C-U", + "data": { + "flareCategory": "GOLD", + "inGameID": 38494 + }, + "id": 38494, + "searchTerms": [], + "title": "concon" + }, + { + "altTitles": [], + "artist": "DJ YOSHITAKA", + "data": { + "flareCategory": "GOLD", + "inGameID": 38495 + }, + "id": 38495, + "searchTerms": [], + "title": "VALLIS-NERIA" + }, + { + "altTitles": [], + "artist": "kors k", + "data": { + "flareCategory": "GOLD", + "inGameID": 38496 + }, + "id": 38496, + "searchTerms": [], + "title": "Wuv U" + }, + { + "altTitles": [], + "artist": "azuma feat. ななひら", + "data": { + "flareCategory": "GOLD", + "inGameID": 38497 + }, + "id": 38497, + "searchTerms": [], + "title": "ヤサイマシ☆ニンニクアブラオオメ" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 38498 + }, + "id": 38498, + "searchTerms": [], + "title": "Lemon" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 38499 + }, + "id": 38499, + "searchTerms": [], + "title": "秒針を噛む" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 38500 + }, + "id": 38500, + "searchTerms": [], + "title": "廻廻奇譚" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"Sota F.\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38501 + }, + "id": 38501, + "searchTerms": [], + "title": "New Millennium" + }, + { + "altTitles": [], + "artist": "iconoclasm", + "data": { + "flareCategory": "GOLD", + "inGameID": 38502 + }, + "id": 38502, + "searchTerms": [], + "title": "perditus†paradisus" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 38503 + }, + "id": 38503, + "searchTerms": [], + "title": "オリオンをなぞる" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 38504 + }, + "id": 38504, + "searchTerms": [], + "title": "Trickster" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 38505 + }, + "id": 38505, + "searchTerms": [], + "title": "only my railgun" + }, + { + "altTitles": [], + "artist": "D-Evoke(与那嶺雅人/小日向翔)", + "data": { + "flareCategory": "GOLD", + "inGameID": 38506 + }, + "id": 38506, + "searchTerms": [], + "title": "共犯ヘヴンズコード" + }, + { + "altTitles": [], + "artist": "猫叉Master", + "data": { + "flareCategory": "GOLD", + "inGameID": 38507 + }, + "id": 38507, + "searchTerms": [], + "title": "サヨナラ・ヘヴン" + }, + { + "altTitles": [], + "artist": "佐々木博史", + "data": { + "flareCategory": "GOLD", + "inGameID": 38508 + }, + "id": 38508, + "searchTerms": [], + "title": "Concertino in Blue" + }, + { + "altTitles": [], + "artist": "TOKYO MACHINE", + "data": { + "flareCategory": "GOLD", + "inGameID": 38509 + }, + "id": 38509, + "searchTerms": [], + "title": "GRADIUS REMIX(↑↑↓↓←→←→BA Ver.)" + }, + { + "altTitles": [], + "artist": "meiyo", + "data": { + "flareCategory": "GOLD", + "inGameID": 38510 + }, + "id": 38510, + "searchTerms": [], + "title": "↑↑↓↓←→←→BA" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"S-C-U\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38511 + }, + "id": 38511, + "searchTerms": [], + "title": "Beluga" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"SYUNN\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38512 + }, + "id": 38512, + "searchTerms": [], + "title": "Worst Plan" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"Yvya\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38513 + }, + "id": 38513, + "searchTerms": [], + "title": "Qwerty" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"PHQUASE\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38514 + }, + "id": 38514, + "searchTerms": [], + "title": "stellar rain" + }, + { + "altTitles": [], + "artist": "キノシタ feat.音街ウナ", + "data": { + "flareCategory": "GOLD", + "inGameID": 38515 + }, + "id": 38515, + "searchTerms": [], + "title": "アユミ☆マジカルショータイム" + }, + { + "altTitles": [], + "artist": "ビートまりお(COOL&CREATE)", + "data": { + "flareCategory": "GOLD", + "inGameID": 38516 + }, + "id": 38516, + "searchTerms": [], + "title": "ウサテイ" + }, + { + "altTitles": [], + "artist": "暁Records", + "data": { + "flareCategory": "GOLD", + "inGameID": 38517 + }, + "id": 38517, + "searchTerms": [], + "title": "WARNING×WARNING×WARNING" + }, + { + "altTitles": [], + "artist": "ARM(IOSYS)", + "data": { + "flareCategory": "GOLD", + "inGameID": 38518 + }, + "id": 38518, + "searchTerms": [], + "title": "患部で止まってすぐ溶ける~狂気の優曇華院" + }, + { + "altTitles": [], + "artist": "lapix", + "data": { + "flareCategory": "GOLD", + "inGameID": 38519 + }, + "id": 38519, + "searchTerms": [], + "title": "Debug Dance" + }, + { + "altTitles": [], + "artist": "kors k feat.Jaejun by NuevoStudio", + "data": { + "flareCategory": "GOLD", + "inGameID": 38520 + }, + "id": 38520, + "searchTerms": [], + "title": "Let's DANCE aROUND!!" + }, + { + "altTitles": [], + "artist": "Toby Fox", + "data": { + "flareCategory": "GOLD", + "inGameID": 38521 + }, + "id": 38521, + "searchTerms": [], + "title": "MEGALOVANIA" + }, + { + "altTitles": [], + "artist": "DJ YOSHITAKA", + "data": { + "flareCategory": "GOLD", + "inGameID": 38522 + }, + "id": 38522, + "searchTerms": [], + "title": "MANA" + }, + { + "altTitles": [], + "artist": "黒猫ダンジョン", + "data": { + "flareCategory": "GOLD", + "inGameID": 38523 + }, + "id": 38523, + "searchTerms": [], + "title": "リリーゼと炎龍レーヴァテイン" + }, + { + "altTitles": [], + "artist": "Mayumi Morinaga,Fernweh by BEMANI Sound Team \"L.E.D. & HuΣeR\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38524 + }, + "id": 38524, + "searchTerms": [], + "title": "DUAL STRIKER" + }, + { + "altTitles": [], + "artist": "かなたん,アマギセーラ,ぁゅ by BEMANI Sound Team \"藤森崇多\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38525 + }, + "id": 38525, + "searchTerms": [], + "title": "MA・TSU・RI" + }, + { + "altTitles": [], + "artist": "ななひら,Nana Takahashi,猫体質 by BEMANI Sound Team \"劇ダンサーレコード\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38526 + }, + "id": 38526, + "searchTerms": [], + "title": "チュッチュ♪マチュピチュ" + }, + { + "altTitles": [], + "artist": "mami,駄々子 by BEMANI Sound Team \"Akhuta Works\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38527 + }, + "id": 38527, + "searchTerms": [], + "title": "斑咲花" + }, + { + "altTitles": [], + "artist": "ZxNX", + "data": { + "flareCategory": "GOLD", + "inGameID": 38528 + }, + "id": 38528, + "searchTerms": [], + "title": "Lose Your Sense" + }, + { + "altTitles": [], + "artist": "PIKASONIC", + "data": { + "flareCategory": "GOLD", + "inGameID": 38529 + }, + "id": 38529, + "searchTerms": [], + "title": "Sparkle Dreams" + }, + { + "altTitles": [], + "artist": "Stessie", + "data": { + "flareCategory": "GOLD", + "inGameID": 38530 + }, + "id": 38530, + "searchTerms": [], + "title": "Ability" + }, + { + "altTitles": [], + "artist": "yadosan", + "data": { + "flareCategory": "GOLD", + "inGameID": 38531 + }, + "id": 38531, + "searchTerms": [], + "title": "Rave in the Shell" + }, + { + "altTitles": [], + "artist": "DJ Shimamura", + "data": { + "flareCategory": "GOLD", + "inGameID": 38532 + }, + "id": 38532, + "searchTerms": [], + "title": "TAKE ME HIGHER" + }, + { + "altTitles": [], + "artist": "android52", + "data": { + "flareCategory": "GOLD", + "inGameID": 38533 + }, + "id": 38533, + "searchTerms": [], + "title": "GROOVE 04" + }, + { + "altTitles": [], + "artist": "Akira Complex", + "data": { + "flareCategory": "GOLD", + "inGameID": 38534 + }, + "id": 38534, + "searchTerms": [], + "title": "SURVIVAL AT THE END OF THE UNIVERSE" + }, + { + "altTitles": [], + "artist": "Odyssey Eurobeat", + "data": { + "flareCategory": "GOLD", + "inGameID": 38535 + }, + "id": 38535, + "searchTerms": [], + "title": "Not Alone" + }, + { + "altTitles": [], + "artist": "RYOQUCHA", + "data": { + "flareCategory": "GOLD", + "inGameID": 38536 + }, + "id": 38536, + "searchTerms": [], + "title": "Sector" + }, + { + "altTitles": [], + "artist": "NATSUMI", + "data": { + "flareCategory": "GOLD", + "inGameID": 38537 + }, + "id": 38537, + "searchTerms": [], + "title": "Jungle Dance" + }, + { + "altTitles": [], + "artist": "2021真夏のSingers", + "data": { + "flareCategory": "GOLD", + "inGameID": 38538 + }, + "id": 38538, + "searchTerms": [], + "title": "恋愛観測 -2021真夏のエンディング ver.-" + }, + { + "altTitles": [], + "artist": "DJ TOTTO", + "data": { + "flareCategory": "GOLD", + "inGameID": 38539 + }, + "id": 38539, + "searchTerms": [], + "title": "glacia" + }, + { + "altTitles": [], + "artist": "SYUNN", + "data": { + "flareCategory": "GOLD", + "inGameID": 38540 + }, + "id": 38540, + "searchTerms": [], + "title": "Megalara Garuda" + }, + { + "altTitles": [], + "artist": "Hommarju", + "data": { + "flareCategory": "GOLD", + "inGameID": 38541 + }, + "id": 38541, + "searchTerms": [], + "title": "Wowie Zowie!" + }, + { + "altTitles": [], + "artist": "S-C-U", + "data": { + "flareCategory": "GOLD", + "inGameID": 38542 + }, + "id": 38542, + "searchTerms": [], + "title": "ナナホシ" + }, + { + "altTitles": [], + "artist": "DJ YOSHITAKA", + "data": { + "flareCategory": "GOLD", + "inGameID": 38543 + }, + "id": 38543, + "searchTerms": [], + "title": "ALBIDA" + }, + { + "altTitles": [], + "artist": "Project B-", + "data": { + "flareCategory": "GOLD", + "inGameID": 38544 + }, + "id": 38544, + "searchTerms": [], + "title": "Glitter Flatter Scatter" + }, + { + "altTitles": [], + "artist": "movies (moimoi × Xceon × Dai.)", + "data": { + "flareCategory": "GOLD", + "inGameID": 38545 + }, + "id": 38545, + "searchTerms": [], + "title": "Too Late Snow" + }, + { + "altTitles": [], + "artist": "黒猫ダンジョン", + "data": { + "flareCategory": "GOLD", + "inGameID": 38546 + }, + "id": 38546, + "searchTerms": [], + "title": "量子の海のリントヴルム" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"TAG\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38547 + }, + "id": 38547, + "searchTerms": [], + "title": "GERBERA" + }, + { + "altTitles": [], + "artist": "黒魔", + "data": { + "flareCategory": "GOLD", + "inGameID": 38548 + }, + "id": 38548, + "searchTerms": [], + "title": "Black Emperor" + }, + { + "altTitles": [], + "artist": "kaco", + "data": { + "flareCategory": "NONE", + "inGameID": 38549 + }, + "id": 38549, + "searchTerms": [], + "title": "ラムのラブソング" + }, + { + "altTitles": [], + "artist": "undefined", + "data": { + "flareCategory": "GOLD", + "inGameID": 38550 + }, + "id": 38550, + "searchTerms": [], + "title": "ミックスナッツ" + }, + { + "altTitles": [], + "artist": "undefined", + "data": { + "flareCategory": "GOLD", + "inGameID": 38551 + }, + "id": 38551, + "searchTerms": [], + "title": "一途" + }, + { + "altTitles": [], + "artist": "Kanaria", + "data": { + "flareCategory": "GOLD", + "inGameID": 38552 + }, + "id": 38552, + "searchTerms": [], + "title": "KING" + }, + { + "altTitles": [], + "artist": "Kanaria", + "data": { + "flareCategory": "GOLD", + "inGameID": 38553 + }, + "id": 38553, + "searchTerms": [], + "title": "酔いどれ知らず" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"L.E.D.-G\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38554 + }, + "id": 38554, + "searchTerms": [], + "title": "THE ANCIENT KING IS BACK" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"SYUNN\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38555 + }, + "id": 38555, + "searchTerms": [], + "title": "Easy Peasy" + }, + { + "altTitles": [], + "artist": "D.watt feat. 紡音れい", + "data": { + "flareCategory": "GOLD", + "inGameID": 38556 + }, + "id": 38556, + "searchTerms": [], + "title": "You You You" + }, + { + "altTitles": [], + "artist": "BlackY", + "data": { + "flareCategory": "GOLD", + "inGameID": 38557 + }, + "id": 38557, + "searchTerms": [], + "title": "Prettiful!" + }, + { + "altTitles": [], + "artist": "KO3", + "data": { + "flareCategory": "GOLD", + "inGameID": 38558 + }, + "id": 38558, + "searchTerms": [], + "title": "Go Down" + }, + { + "altTitles": [], + "artist": "Relect", + "data": { + "flareCategory": "GOLD", + "inGameID": 38559 + }, + "id": 38559, + "searchTerms": [], + "title": "Acid,Tribal & Dance (DDR EDITION)" + }, + { + "altTitles": [], + "artist": "GRAN-NEW DRAMATIC BOYS", + "data": { + "flareCategory": "GOLD", + "inGameID": 38560 + }, + "id": 38560, + "searchTerms": [], + "title": "Go To The Oasis" + }, + { + "altTitles": [], + "artist": "SOUND HOLIC feat. Nana Takahashi", + "data": { + "flareCategory": "GOLD", + "inGameID": 38561 + }, + "id": 38561, + "searchTerms": [], + "title": "惑星☆ロリポップ" + }, + { + "altTitles": [], + "artist": "MARON (IOSYS)", + "data": { + "flareCategory": "GOLD", + "inGameID": 38562 + }, + "id": 38562, + "searchTerms": [], + "title": "BONE BORN" + }, + { + "altTitles": [], + "artist": "工藤吉三(ベイシスケイプ)", + "data": { + "flareCategory": "GOLD", + "inGameID": 38563 + }, + "id": 38563, + "searchTerms": [], + "title": "キヤロラ衛星の軌跡" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"SYUNN\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38564 + }, + "id": 38564, + "searchTerms": [], + "title": "BREDLI" + }, + { + "altTitles": [], + "artist": "BlackY", + "data": { + "flareCategory": "GOLD", + "inGameID": 38565 + }, + "id": 38565, + "searchTerms": [], + "title": "Crystarium" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 38566 + }, + "id": 38566, + "searchTerms": [], + "title": "星が泳ぐ" + }, + { + "altTitles": [], + "artist": "", + "data": { + "flareCategory": "NONE", + "inGameID": 38567 + }, + "id": 38567, + "searchTerms": [], + "title": "POP STAR" + }, + { + "altTitles": [], + "artist": "Virtual Self", + "data": { + "flareCategory": "GOLD", + "inGameID": 38568 + }, + "id": 38568, + "searchTerms": [], + "title": "Eon Break" + }, + { + "altTitles": [], + "artist": "Porter Robinson", + "data": { + "flareCategory": "GOLD", + "inGameID": 38569 + }, + "id": 38569, + "searchTerms": [], + "title": "Look at the Sky" + }, + { + "altTitles": [], + "artist": "Porter Robinson", + "data": { + "flareCategory": "GOLD", + "inGameID": 38570 + }, + "id": 38570, + "searchTerms": [], + "title": "Something Comforting" + }, + { + "altTitles": [], + "artist": "Porter Robinson", + "data": { + "flareCategory": "GOLD", + "inGameID": 38571 + }, + "id": 38571, + "searchTerms": [], + "title": "Musician" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"DJ TOTTO VS 兎々\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38572 + }, + "id": 38572, + "searchTerms": [], + "title": "VOLAQUAS" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"U1-ASAMi\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38573 + }, + "id": 38573, + "searchTerms": [], + "title": "新蛇姫" + }, + { + "altTitles": [], + "artist": "伊達朱里紗", + "data": { + "flareCategory": "GOLD", + "inGameID": 38574 + }, + "id": 38574, + "searchTerms": [], + "title": "Awakening Wings" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"Yvya\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38575 + }, + "id": 38575, + "searchTerms": [], + "title": "Kilonova" + }, + { + "altTitles": [], + "artist": "七条レタスグループ", + "data": { + "flareCategory": "GOLD", + "inGameID": 38576 + }, + "id": 38576, + "searchTerms": [], + "title": "スカーレット警察のゲットーパトロール24時" + }, + { + "altTitles": [], + "artist": "uno & 夕野ヨシミ feat. miko", + "data": { + "flareCategory": "GOLD", + "inGameID": 38577 + }, + "id": 38577, + "searchTerms": [], + "title": "恋の氷結おてんば湯けむりチルノ温泉" + }, + { + "altTitles": [], + "artist": "Tomoyuki Uchida feat.秋成", + "data": { + "flareCategory": "GOLD", + "inGameID": 38578 + }, + "id": 38578, + "searchTerms": [], + "title": "insist" + }, + { + "altTitles": [], + "artist": "ビートまりお(COOL&CREATE)", + "data": { + "flareCategory": "GOLD", + "inGameID": 38579 + }, + "id": 38579, + "searchTerms": [], + "title": "リスペク風神" + }, + { + "altTitles": [], + "artist": "ビートまりお(COOL&CREATE)", + "data": { + "flareCategory": "GOLD", + "inGameID": 38580 + }, + "id": 38580, + "searchTerms": [], + "title": "最速最高シャッターガール" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"KE!JU\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38581 + }, + "id": 38581, + "searchTerms": [], + "title": "Snow Garland Fairy" + }, + { + "altTitles": [], + "artist": "月乃 & BEMANI Sound Team \"劇団レコード\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38582 + }, + "id": 38582, + "searchTerms": [], + "title": "みゅ、みゅ、Müllる" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"PON\" feat.かなたん", + "data": { + "flareCategory": "GOLD", + "inGameID": 38583 + }, + "id": 38583, + "searchTerms": [], + "title": "パーフェクトイーター" + }, + { + "altTitles": [], + "artist": "Sota Fujimori 2nd Season", + "data": { + "flareCategory": "GOLD", + "inGameID": 38584 + }, + "id": 38584, + "searchTerms": [], + "title": "Phlox" + }, + { + "altTitles": [], + "artist": "U1 overground", + "data": { + "flareCategory": "GOLD", + "inGameID": 38585 + }, + "id": 38585, + "searchTerms": [], + "title": "アドレナリン" + }, + { + "altTitles": [], + "artist": "DJ TOTTO", + "data": { + "flareCategory": "GOLD", + "inGameID": 38586 + }, + "id": 38586, + "searchTerms": [], + "title": "chaplet" + }, + { + "altTitles": [], + "artist": "S-C-U", + "data": { + "flareCategory": "GOLD", + "inGameID": 38587 + }, + "id": 38587, + "searchTerms": [], + "title": "spring pony" + }, + { + "altTitles": [], + "artist": "パーキッツ", + "data": { + "flareCategory": "NONE", + "inGameID": 38588 + }, + "id": 38588, + "searchTerms": [], + "title": "すいみん不足" + }, + { + "altTitles": [], + "artist": "OSTER project feat. そらこ", + "data": { + "flareCategory": "GOLD", + "inGameID": 38589 + }, + "id": 38589, + "searchTerms": [], + "title": "羊皮紙の上の銀河" + }, + { + "altTitles": [], + "artist": "undefined", + "data": { + "flareCategory": "GOLD", + "inGameID": 38590 + }, + "id": 38590, + "searchTerms": [], + "title": "SOUVENIR" + }, + { + "altTitles": [], + "artist": "ARM (IOSYS) x BEMANI Sound Team \"U1\" ft. Kradness x TRIΔNGLE", + "data": { + "flareCategory": "GOLD", + "inGameID": 38591 + }, + "id": 38591, + "searchTerms": [], + "title": "BREAKING THE FUTURE" + }, + { + "altTitles": [], + "artist": "Tanukichi", + "data": { + "flareCategory": "GOLD", + "inGameID": 38592 + }, + "id": 38592, + "searchTerms": [], + "title": "Drive Away" + }, + { + "altTitles": [], + "artist": "ZxNX", + "data": { + "flareCategory": "GOLD", + "inGameID": 38593 + }, + "id": 38593, + "searchTerms": [], + "title": "Aria" + }, + { + "altTitles": [], + "artist": "Numb'n'dub", + "data": { + "flareCategory": "GOLD", + "inGameID": 38594 + }, + "id": 38594, + "searchTerms": [], + "title": "Complete Game Victory" + }, + { + "altTitles": [], + "artist": "DJ Shimamura", + "data": { + "flareCategory": "GOLD", + "inGameID": 38595 + }, + "id": 38595, + "searchTerms": [], + "title": "GLOW THE CROWN" + }, + { + "altTitles": [], + "artist": "Whac-A-Me", + "data": { + "flareCategory": "GOLD", + "inGameID": 38596 + }, + "id": 38596, + "searchTerms": [], + "title": "SMASH" + }, + { + "altTitles": [], + "artist": "Relect", + "data": { + "flareCategory": "GOLD", + "inGameID": 38597 + }, + "id": 38597, + "searchTerms": [], + "title": "Rise As One" + }, + { + "altTitles": [], + "artist": "JAKAZiD", + "data": { + "flareCategory": "GOLD", + "inGameID": 38598 + }, + "id": 38598, + "searchTerms": [], + "title": "Chromatic Burst" + }, + { + "altTitles": [], + "artist": "Mameyudoufu", + "data": { + "flareCategory": "GOLD", + "inGameID": 38599 + }, + "id": 38599, + "searchTerms": [], + "title": "Abrupt Madness" + }, + { + "altTitles": [], + "artist": "Qrispy Joybox feat.mao", + "data": { + "flareCategory": "GOLD", + "inGameID": 38602 + }, + "id": 38602, + "searchTerms": [], + "title": "カラフルミニッツ" + }, + { + "altTitles": [], + "artist": "kors k", + "data": { + "flareCategory": "GOLD", + "inGameID": 38603 + }, + "id": 38603, + "searchTerms": [], + "title": "Flip Flap" + }, + { + "altTitles": [], + "artist": "Sota Fujimori 2nd Season", + "data": { + "flareCategory": "GOLD", + "inGameID": 38604 + }, + "id": 38604, + "searchTerms": [], + "title": "GLITTER" + }, + { + "altTitles": [], + "artist": "DJ TOTTO", + "data": { + "flareCategory": "GOLD", + "inGameID": 38605 + }, + "id": 38605, + "searchTerms": [], + "title": "Valanga" + }, + { + "altTitles": [], + "artist": "dj TAKA feat.AiMEE", + "data": { + "flareCategory": "GOLD", + "inGameID": 38606 + }, + "id": 38606, + "searchTerms": [], + "title": "Broken" + }, + { + "altTitles": [], + "artist": "kors k", + "data": { + "flareCategory": "GOLD", + "inGameID": 38607 + }, + "id": 38607, + "searchTerms": [], + "title": "Playing With Fire" + }, + { + "altTitles": [], + "artist": "かめりあ", + "data": { + "flareCategory": "GOLD", + "inGameID": 38608 + }, + "id": 38608, + "searchTerms": [], + "title": "Towards The Horizon" + }, + { + "altTitles": [], + "artist": "DJ TOTTO VS 兎々", + "data": { + "flareCategory": "GOLD", + "inGameID": 38609 + }, + "id": 38609, + "searchTerms": [], + "title": "伐折羅-vajra-" + }, + { + "altTitles": [], + "artist": "enzo + O2i3", + "data": { + "flareCategory": "GOLD", + "inGameID": 38610 + }, + "id": 38610, + "searchTerms": [], + "title": "メンタンピンドラドラ" + }, + { + "altTitles": [], + "artist": "Sota Fujimori", + "data": { + "flareCategory": "GOLD", + "inGameID": 38611 + }, + "id": 38611, + "searchTerms": [], + "title": "Urban Life" + }, + { + "altTitles": [], + "artist": "三代目 ADULTIC TEACHERS feat. BEMANI Sound Team \"スコーピオン志村\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38612 + }, + "id": 38612, + "searchTerms": [], + "title": "mathematical good-bye" + }, + { + "altTitles": [], + "artist": "Dormir", + "data": { + "flareCategory": "GOLD", + "inGameID": 38613 + }, + "id": 38613, + "searchTerms": [], + "title": "とこにゃつ☆トロピカル" + }, + { + "altTitles": [], + "artist": "sky_delta", + "data": { + "flareCategory": "GOLD", + "inGameID": 38614 + }, + "id": 38614, + "searchTerms": [], + "title": "EMOTiON TRiPPER" + }, + { + "altTitles": [], + "artist": "kors k", + "data": { + "flareCategory": "GOLD", + "inGameID": 38615 + }, + "id": 38615, + "searchTerms": [], + "title": "Pure Rude" + }, + { + "altTitles": [], + "artist": "キノシタ feat.音街ウナ・鏡音リン", + "data": { + "flareCategory": "GOLD", + "inGameID": 38616 + }, + "id": 38616, + "searchTerms": [], + "title": "ポジティブ☆ダンスタイム" + }, + { + "altTitles": [], + "artist": "キノシタ feat.音街ウナ・鏡音リン", + "data": { + "flareCategory": "GOLD", + "inGameID": 38617 + }, + "id": 38617, + "searchTerms": [], + "title": "ポッピンキャンディ☆フィーバー!" + }, + { + "altTitles": [], + "artist": "暁Records", + "data": { + "flareCategory": "GOLD", + "inGameID": 38618 + }, + "id": 38618, + "searchTerms": [], + "title": "LOVE EAST" + }, + { + "altTitles": [], + "artist": "暁Records", + "data": { + "flareCategory": "GOLD", + "inGameID": 38619 + }, + "id": 38619, + "searchTerms": [], + "title": "トランスダンスアナーキー" + }, + { + "altTitles": [], + "artist": "nagomu tamaki", + "data": { + "flareCategory": "GOLD", + "inGameID": 38620 + }, + "id": 38620, + "searchTerms": [], + "title": "I-W-U (I Want U)" + }, + { + "altTitles": [], + "artist": "DC Mizey", + "data": { + "flareCategory": "GOLD", + "inGameID": 38621 + }, + "id": 38621, + "searchTerms": [], + "title": "Euphoric Fragmentation" + }, + { + "altTitles": [], + "artist": "sky_delta", + "data": { + "flareCategory": "GOLD", + "inGameID": 38623 + }, + "id": 38623, + "searchTerms": [], + "title": "DIABLOSIS::Nāga" + }, + { + "altTitles": [], + "artist": "RoughSkreamZ feat. Aikapin", + "data": { + "flareCategory": "GOLD", + "inGameID": 38624 + }, + "id": 38624, + "searchTerms": [], + "title": "C-C-C-N-N-N" + }, + { + "altTitles": [], + "artist": "Toby Fox", + "data": { + "flareCategory": "GOLD", + "inGameID": 38625 + }, + "id": 38625, + "searchTerms": [], + "title": "Battle Against a True Hero" + }, + { + "altTitles": [], + "artist": "Toby Fox", + "data": { + "flareCategory": "GOLD", + "inGameID": 38626 + }, + "id": 38626, + "searchTerms": [], + "title": "Death by Glamour" + }, + { + "altTitles": [], + "artist": "Toby Fox", + "data": { + "flareCategory": "GOLD", + "inGameID": 38627 + }, + "id": 38627, + "searchTerms": [], + "title": "Finale" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"猫叉Master VS dj TAKA\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38628 + }, + "id": 38628, + "searchTerms": [], + "title": "suspicions" + }, + { + "altTitles": [], + "artist": "暁Records", + "data": { + "flareCategory": "GOLD", + "inGameID": 38632 + }, + "id": 38632, + "searchTerms": [], + "title": "HANIPAGANDA" + }, + { + "altTitles": [], + "artist": "NUU$HI", + "data": { + "flareCategory": "GOLD", + "inGameID": 38633 + }, + "id": 38633, + "searchTerms": [], + "title": "Continue to the real world?" + }, + { + "altTitles": [], + "artist": "Zekk", + "data": { + "flareCategory": "GOLD", + "inGameID": 38634 + }, + "id": 38634, + "searchTerms": [], + "title": "9th Outburst" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"KE!JU\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38635 + }, + "id": 38635, + "searchTerms": [], + "title": "ROCK THE PARTY" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"Paoon\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38636 + }, + "id": 38636, + "searchTerms": [], + "title": "SISYPHUS" + }, + { + "altTitles": [], + "artist": "SOUND HOLIC feat. Nana Takahashi", + "data": { + "flareCategory": "GOLD", + "inGameID": 38637 + }, + "id": 38637, + "searchTerms": [], + "title": "INFINITE WORLD" + }, + { + "altTitles": [], + "artist": "SOUND HOLIC feat. Nana Takahashi", + "data": { + "flareCategory": "GOLD", + "inGameID": 38638 + }, + "id": 38638, + "searchTerms": [], + "title": "しゅわスパ大作戦☆" + }, + { + "altTitles": [], + "artist": "SOUND HOLIC feat. Nana Takahashi & 709sec.", + "data": { + "flareCategory": "GOLD", + "inGameID": 38639 + }, + "id": 38639, + "searchTerms": [], + "title": "Kill The Night" + }, + { + "altTitles": [], + "artist": "SARAH", + "data": { + "flareCategory": "GOLD", + "inGameID": 38640 + }, + "id": 38640, + "searchTerms": [], + "title": "Next FUTURE" + }, + { + "altTitles": [], + "artist": "Coretex feat. MIDI War", + "data": { + "flareCategory": "GOLD", + "inGameID": 38641 + }, + "id": 38641, + "searchTerms": [], + "title": "My Drama" + }, + { + "altTitles": [], + "artist": "ここなつ2.0", + "data": { + "flareCategory": "GOLD", + "inGameID": 38643 + }, + "id": 38643, + "searchTerms": [], + "title": "ポラリスノウタ" + }, + { + "altTitles": [], + "artist": "ここなつ Produced by lapix", + "data": { + "flareCategory": "GOLD", + "inGameID": 38644 + }, + "id": 38644, + "searchTerms": [], + "title": "Finally Dive" + }, + { + "altTitles": [], + "artist": "日向美ビタースイーツ♪", + "data": { + "flareCategory": "GOLD", + "inGameID": 38645 + }, + "id": 38645, + "searchTerms": [], + "title": "都会征服Girls☆" + }, + { + "altTitles": [], + "artist": "ここなつ", + "data": { + "flareCategory": "GOLD", + "inGameID": 38646 + }, + "id": 38646, + "searchTerms": [], + "title": "ナナイロライト" + }, + { + "altTitles": [], + "artist": "ここなつ Produced by U-ske", + "data": { + "flareCategory": "GOLD", + "inGameID": 38647 + }, + "id": 38647, + "searchTerms": [], + "title": "コンフェイト*コンチェルト" + }, + { + "altTitles": [], + "artist": "ここなつ Produced by uma", + "data": { + "flareCategory": "GOLD", + "inGameID": 38648 + }, + "id": 38648, + "searchTerms": [], + "title": "千客万来☆無問題!" + }, + { + "altTitles": [], + "artist": "日向美ビタースイーツ♪", + "data": { + "flareCategory": "GOLD", + "inGameID": 38649 + }, + "id": 38649, + "searchTerms": [], + "title": "走れメロンパン" + }, + { + "altTitles": [], + "artist": "Remixed by BEMANI Sound Team \"Yvya\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38650 + }, + "id": 38650, + "searchTerms": [], + "title": "ちくわパフェだよ☆CKP (Yvya Remix)" + }, + { + "altTitles": [], + "artist": "Remixed by BEMANI Sound Team \"ZAQUVA\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38651 + }, + "id": 38651, + "searchTerms": [], + "title": "めうめうぺったんたん!! (ZAQUVA Remix)" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"ZAQUVA\" feat. Uzumaki", + "data": { + "flareCategory": "GOLD", + "inGameID": 38652 + }, + "id": 38652, + "searchTerms": [], + "title": "Throw Out" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"HuΣeR\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38653 + }, + "id": 38653, + "searchTerms": [], + "title": "[ ]DENTITY" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"ZAQUVA\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38654 + }, + "id": 38654, + "searchTerms": [], + "title": "White Stream" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"SYUNN\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38655 + }, + "id": 38655, + "searchTerms": [], + "title": "Dance With The Dead" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"Sota Fujimori\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38656 + }, + "id": 38656, + "searchTerms": [], + "title": "Metamorphic" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"Power Of Nature\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38657 + }, + "id": 38657, + "searchTerms": [], + "title": "Indigo Nocturne" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"dj TAKA\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38658 + }, + "id": 38658, + "searchTerms": [], + "title": "輪廻の鴉" + }, + { + "altTitles": [], + "artist": "Kaname", + "data": { + "flareCategory": "NONE", + "inGameID": 38659 + }, + "id": 38659, + "searchTerms": [], + "title": "Ødyssey" + }, + { + "altTitles": [], + "artist": "アツムワンダフル", + "data": { + "flareCategory": "NONE", + "inGameID": 38660 + }, + "id": 38660, + "searchTerms": [], + "title": "DanRevoAthlon" + }, + { + "altTitles": [], + "artist": "SK MUSIC", + "data": { + "flareCategory": "NONE", + "inGameID": 38661 + }, + "id": 38661, + "searchTerms": [], + "title": "HyperNOAH" + }, + { + "altTitles": [], + "artist": "みーに feat. はらもりよしな", + "data": { + "flareCategory": "NONE", + "inGameID": 38662 + }, + "id": 38662, + "searchTerms": [], + "title": "バッドユース・アウェイク" + }, + { + "altTitles": [], + "artist": "OMOCHI feat.星野奏子", + "data": { + "flareCategory": "NONE", + "inGameID": 38663 + }, + "id": 38663, + "searchTerms": [], + "title": "Arcadia" + }, + { + "altTitles": [], + "artist": "赤木エリ & BJ.chika feat. 菜月なこ", + "data": { + "flareCategory": "NONE", + "inGameID": 38664 + }, + "id": 38664, + "searchTerms": [], + "title": "Dozen Flower" + }, + { + "altTitles": [], + "artist": "X-END", + "data": { + "flareCategory": "NONE", + "inGameID": 38665 + }, + "id": 38665, + "searchTerms": [], + "title": "Gravity Collapse" + }, + { + "altTitles": [], + "artist": "Malixi", + "data": { + "flareCategory": "NONE", + "inGameID": 38666 + }, + "id": 38666, + "searchTerms": [], + "title": "Sweetin' Fruity" + }, + { + "altTitles": [], + "artist": "Kolaa", + "data": { + "flareCategory": "NONE", + "inGameID": 38667 + }, + "id": 38667, + "searchTerms": [], + "title": "極地大衝撃" + }, + { + "altTitles": [], + "artist": "MUGIPONG", + "data": { + "flareCategory": "NONE", + "inGameID": 38668 + }, + "id": 38668, + "searchTerms": [], + "title": "WONDER COASTER" + }, + { + "altTitles": [], + "artist": "Felysrator", + "data": { + "flareCategory": "NONE", + "inGameID": 38669 + }, + "id": 38669, + "searchTerms": [], + "title": "Roche Limit" + }, + { + "altTitles": [], + "artist": "Amebre Kizami", + "data": { + "flareCategory": "NONE", + "inGameID": 38670 + }, + "id": 38670, + "searchTerms": [], + "title": "Heavy Rain" + }, + { + "altTitles": [], + "artist": "MYUKKE.", + "data": { + "flareCategory": "NONE", + "inGameID": 38671 + }, + "id": 38671, + "searchTerms": [], + "title": "The 88's Instigation" + }, + { + "altTitles": [], + "artist": "Se-U-Ra", + "data": { + "flareCategory": "NONE", + "inGameID": 38672 + }, + "id": 38672, + "searchTerms": [], + "title": "The Ashes of Boreas" + }, + { + "altTitles": [], + "artist": "Alkome", + "data": { + "flareCategory": "NONE", + "inGameID": 38680 + }, + "id": 38680, + "searchTerms": [], + "title": "Origin Pulsation" + }, + { + "altTitles": [], + "artist": "Halv", + "data": { + "flareCategory": "NONE", + "inGameID": 38688 + }, + "id": 38688, + "searchTerms": [], + "title": "Don't Stop The HYPERCORE" + }, + { + "altTitles": [], + "artist": "nagomu tamaki feat. ぽめ", + "data": { + "flareCategory": "NONE", + "inGameID": 38691 + }, + "id": 38691, + "searchTerms": [], + "title": "きらきら☆ユニバース" + }, + { + "altTitles": [], + "artist": "kors k feat. haru", + "data": { + "flareCategory": "NONE", + "inGameID": 38692 + }, + "id": 38692, + "searchTerms": [], + "title": "Move On" + }, + { + "altTitles": [], + "artist": "nc feat. TOCORO十 ", + "data": { + "flareCategory": "NONE", + "inGameID": 38693 + }, + "id": 38693, + "searchTerms": [], + "title": "踊れ!!バーチャルアニマル!!" + }, + { + "altTitles": [], + "artist": "SOUND HOLIC feat. taru", + "data": { + "flareCategory": "NONE", + "inGameID": 38694 + }, + "id": 38694, + "searchTerms": [], + "title": "Niji no Sekai" + }, + { + "altTitles": [], + "artist": "Shoichiro Hirata feat. ちょぴん ", + "data": { + "flareCategory": "NONE", + "inGameID": 38695 + }, + "id": 38695, + "searchTerms": [], + "title": "Happy Dance Day 2 U" + }, + { + "altTitles": [], + "artist": "青龍", + "data": { + "flareCategory": "GOLD", + "inGameID": 38701 + }, + "id": 38701, + "searchTerms": [], + "title": "3y3s" + }, + { + "altTitles": [], + "artist": "U-ske feat. 棗いつき", + "data": { + "flareCategory": "GOLD", + "inGameID": 38702 + }, + "id": 38702, + "searchTerms": [], + "title": "コメット⇒スケイター" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"二代目朱雀 feat.朱雀\"", + "data": { + "flareCategory": "GOLD", + "inGameID": 38703 + }, + "id": 38703, + "searchTerms": [], + "title": "Ambivalent Vermilia" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team", + "data": { + "flareCategory": "GOLD", + "inGameID": 38708 + }, + "id": 38708, + "searchTerms": [], + "title": "DDR System Songs+Replicant Mix" + }, + { + "altTitles": [], + "artist": "Zektbach", + "data": { + "flareCategory": "NONE", + "inGameID": 38710 + }, + "id": 38710, + "searchTerms": [], + "title": "蛇神" + }, + { + "altTitles": [], + "artist": "Des-ROW・組", + "data": { + "flareCategory": "NONE", + "inGameID": 38711 + }, + "id": 38711, + "searchTerms": [], + "title": "雪上断火" + }, + { + "altTitles": [], + "artist": "猫叉Master", + "data": { + "flareCategory": "NONE", + "inGameID": 38712 + }, + "id": 38712, + "searchTerms": [], + "title": "Beyond The Earth" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"HuΣeR\" feat.Fernweh", + "data": { + "flareCategory": "NONE", + "inGameID": 38713 + }, + "id": 38713, + "searchTerms": [], + "title": "逆月" + }, + { + "altTitles": [], + "artist": "SOUND HOLIC feat. Nana Takahashi", + "data": { + "flareCategory": "NONE", + "inGameID": 38714 + }, + "id": 38714, + "searchTerms": [], + "title": "TYCOON" + }, + { + "altTitles": [], + "artist": "technoplanet", + "data": { + "flareCategory": "NONE", + "inGameID": 38715 + }, + "id": 38715, + "searchTerms": [], + "title": "Fly Like You" + }, + { + "altTitles": [], + "artist": "Risk Junk", + "data": { + "flareCategory": "NONE", + "inGameID": 38716 + }, + "id": 38716, + "searchTerms": [], + "title": "quaver♪" + }, + { + "altTitles": [], + "artist": "度胸兄弟", + "data": { + "flareCategory": "NONE", + "inGameID": 38717 + }, + "id": 38717, + "searchTerms": [], + "title": "DIAVOLO" + }, + { + "altTitles": [], + "artist": "DJ Mass MAD Izm*", + "data": { + "flareCategory": "NONE", + "inGameID": 38718 + }, + "id": 38718, + "searchTerms": [], + "title": "Red. by Full Metal Jacket" + }, + { + "altTitles": [], + "artist": "Xceon feat. Mayumi Morinaga", + "data": { + "flareCategory": "NONE", + "inGameID": 38719 + }, + "id": 38719, + "searchTerms": [], + "title": "罪と罰" + }, + { + "altTitles": [], + "artist": "Moe Shop", + "data": { + "flareCategory": "GOLD", + "inGameID": 38720 + }, + "id": 38720, + "searchTerms": [], + "title": "melody H4CKER" + }, + { + "altTitles": [], + "artist": "Pizuya's Cell VS BEMANI Sound Team \"dj TAKA\"", + "data": { + "flareCategory": "NONE", + "inGameID": 38727 + }, + "id": 38727, + "searchTerms": [], + "title": "閉塞的フレーション" + }, + { + "altTitles": [], + "artist": "SOUND HOLIC Vs. BEMANI Sound Team \"KE!JU\" feat. Nana Takahashi", + "data": { + "flareCategory": "NONE", + "inGameID": 38728 + }, + "id": 38728, + "searchTerms": [], + "title": "残像ニ繋ガレタ追憶ノHIDEAWAY" + }, + { + "altTitles": [], + "artist": "日向美ビタースイーツ♪", + "data": { + "flareCategory": "NONE", + "inGameID": 38733 + }, + "id": 38733, + "searchTerms": [], + "title": "イマココ!この瞬間" + }, + { + "altTitles": [], + "artist": "豚乙女×BEMANI Sound Team \"PON\"", + "data": { + "flareCategory": "NONE", + "inGameID": 38735 + }, + "id": 38735, + "searchTerms": [], + "title": "弾幕信仰" + }, + { + "altTitles": [], + "artist": "Amateras Records vs BEMANI Sound Team \"TATSUYA\" feat. miko", + "data": { + "flareCategory": "NONE", + "inGameID": 38736 + }, + "id": 38736, + "searchTerms": [], + "title": "SUPER HEROINE!!" + }, + { + "altTitles": [], + "artist": "BEMANI Sound Team \"SYUNN\"", + "data": { + "flareCategory": "NONE", + "inGameID": 38737 + }, + "id": 38737, + "searchTerms": [], + "title": "THE SAFARI (STARDOM Remix)" + }, + { + "altTitles": [], + "artist": "cosMo@暴走P", + "data": { + "flareCategory": "NONE", + "inGameID": 38738 + }, + "id": 38738, + "searchTerms": [], + "title": "音楽 (STARDOM Remix)" + }, + { + "altTitles": [], + "artist": "幽閉サテライト feat. senya", + "data": { + "flareCategory": "NONE", + "inGameID": 38739 + }, + "id": 38739, + "searchTerms": [], + "title": "月に叢雲華に風" + } +] \ No newline at end of file diff --git a/database-seeds/collections/tables.json b/database-seeds/collections/tables.json index 54990eb4c..cdec69dea 100644 --- a/database-seeds/collections/tables.json +++ b/database-seeds/collections/tables.json @@ -1313,6 +1313,66 @@ "tableID": "chunithm-Single-sun-difficulties", "title": "CHUNITHM (SUN) (Difficulties)" }, + { + "default": true, + "description": "All songs in DDR A3", + "folders": [ + "F0c09b0447497e6ce7016e593f26fb860526c47705e4823fe8e31079b8dc20814", + "F1e62ed269483936c348678b307c649bf674e0d3a3735d9635ed43dae79caa7c0", + "F848646e7a6689964ef7ca99672e32d41560dd4e50b49a2247e800fbff1958323", + "F83239573a4f29a9ac847425afba58cf41fc43bc74d415daf5826611936b59da2", + "F37df248ab2f58f732f24940293c5e91c4aaf5e64344d5fb1cd192a9e4b0d8d45", + "F1e794bc73e08cd2843130b7a9df76877941b3a4d2789ec76c2c3bab878c9f43d", + "Fb59f8945c3d7b0eaa113c9899e9ae55d5a7ad7e157d374c0d9a74235287d4794", + "F2463f6bc988f960f2b6e822187805a35b7c66412e9cfecf2ba0f81c2a9aacebc", + "F5efd26d77d73dc52c934ff7e97b554de63e20ead805525069bc4993cf4d50ffb", + "F0c9a877c6bedb79a8a49edfc353b1051f85752b57c91a2ae6d12bed0a3196417", + "F520973c7d85f0d197862a897b1a81fc931080e185f6b098be2028ba22c492fc7", + "Fc5acf2723ed0ae888f129be0b77d5414a6fab3420eb5e02d5eb3c08a3fa49741", + "F80d3a7b581735e1b0c8f1669937fad455ec66b34f3c55457278f4cfd36b1c115", + "Ff975e532c7589db66cc619384cf45ee1d9a14d775be4efd2c9253ba8630b13ed", + "Fcdd639a6c30acc4703b98ba6ee87613229bfe726c0f5a3438ce913b52c68e537", + "F408f16670afeff015eb0d8f1c149013a3cb2b29bd474bc676e5993ca25b312cd", + "Fdde615d765569b32535711ef67fd85dde59c31999dda1f48176529f03b6e5de3", + "F9934345ea33451bd21be4151a5ddc130aa735960e8bf9ff66a060e42819f3888", + "Fc6d420869984a20cc8954cff43df46c49b0e2c06998b94e3226655bf13c75d3c" + ], + "game": "ddr", + "inactive": false, + "playtype": "DP", + "tableID": "ddr-DP-a3", + "title": "DDR A3" + }, + { + "default": true, + "description": "All songs in DDR A3", + "folders": [ + "F298d0411534d7b38b7cbca14a43a1e4de71f30d73a5bdbb7f677b30fcc6e6cc2", + "F2f3c320dcb69a9810f88f1bef0ec357b6f25d1200dab5daea6c7d88b4021f0ea", + "F0f6e04147a238bb365fa78d8b45d53f8fb7af3b2b0084c0e7630512c6fb28f94", + "F374c59150d51b54d8096c9873095e4e425d615f35ed88bb03ff1f8c939dcf345", + "F319b480a6607d528b8a630d5a08904c01b5d1357e5c80a23bab5e03cb2d8d6fa", + "F8f4111b72204384257bfd6acd615dd50e28414348efc773a28073fed4165c71f", + "F20ee236c6cb25263eac9af9c9d873b741499778995e3f6ca97a688410ee948b2", + "F35e045b4f2b46bf783ff17ab67e2e834f36561cc7eb7ffeeba2a69e5538bcb01", + "F5379a63559ac7925560c02e98fc8a32c4a8210c989203cb8deaac01120c017b0", + "Ff99e411eb0e3dbaa2dab8e52dda4ef35ccc327c788140c10c2d2a286c55cdd46", + "F5437f25765ead737606c7fd9042163a0063532c125fe17d9e77d113b7d1ac7ef", + "F9ad83b2f07753c7fbebee715cbaddd0e444bf6c808e4b26fdb8fcd42a46bab92", + "Fe80638cfba7c94e1dbf7c6a8e094ee1b771f886f9b083b5d9ed6d89fbe24290d", + "F5a72b2268e14987eec04b9bd471740109354a683151443469ad44cada067fb12", + "F8a04baa09fb2466d8f5c45d3223a4fd75dd2cff80b09dd3db87d54bee98ee49c", + "F50bad5092469b33ef153acb28aa545a7f5cd0b6ff699ef5e6145667f4377508d", + "F0d6274231e5060bb8f1b4f72f3e0b132825629bbc9a193b3fe8781aa10c628e3", + "Ffb7d33d91fc0ab5c613dd200a51d595fca03d9252f5c10d0a55952c769aeae66", + "F210ff4a4b62852c199717f07532d74371db48ac8922fec0496b8f97813d8c1c7" + ], + "game": "ddr", + "inactive": false, + "playtype": "SP", + "tableID": "ddr-SP-a3", + "title": "DDR A3" + }, { "default": true, "description": "Level Folders for GITADORA Konaste.", diff --git a/database-seeds/scripts/rerunners/add-table-and-folders.js b/database-seeds/scripts/rerunners/add-table-and-folders.js index 081923b5e..fdac5666a 100644 --- a/database-seeds/scripts/rerunners/add-table-and-folders.js +++ b/database-seeds/scripts/rerunners/add-table-and-folders.js @@ -1,13 +1,12 @@ const { MutateCollection, CreateFolderID } = require("../util"); // Change these for whatever table you are adding. -const GAME = "pms"; -const PLAYTYPES = ["Controller", "Keyboard"]; -const PREFIX = "PLv"; -const TITLE = "Normal PMS Database"; -const SHORTTITLE = "normalpmsdb"; // this is used in the tableID -const DESCRIPTION = - "The Normal PMS Database. This contains almost every PMS file ever created, lv1-45."; +const GAME = "ddr"; +const PLAYTYPES = ["SP", "DP"]; +const PREFIX = "Level "; +const TITLE = "DDR A3"; +const SHORTTITLE = "a3"; // this is used in the tableID +const DESCRIPTION = "All songs in DDR A3"; const LEVELS = [ "1", "2", @@ -28,34 +27,6 @@ const LEVELS = [ "17", "18", "19", - "20", - "21", - "22", - "23", - "24", - "25", - "26", - "27", - "28", - "29", - "30", - "31", - "32", - "33", - "34", - "35", - "36", - "37", - "38", - "39", - "40", - "41", - "42", - "43", - "44", - "45", - "45+", - "?", ]; const ptFolders = {}; diff --git a/database-seeds/scripts/rerunners/ddr/README.md b/database-seeds/scripts/rerunners/ddr/README.md new file mode 100644 index 000000000..8da91e99c --- /dev/null +++ b/database-seeds/scripts/rerunners/ddr/README.md @@ -0,0 +1,30 @@ +# Import DDR Gamedata + +1) Generate gamedata under the following XML format : + +```xml + + + + 999 + randomsong + This song doesn't exist + thissongdoesntexist + Some Artist + 120 + 2 + 1 + 1 + 3 5 6 9 0 0 6 8 8 0 + + + ... + + ... + +``` + +File must be stored in the same folder as the script with the name `musicdb.xml` + +2) At the last line of the script, eventually change the version if necessary. Current supported versions are `a3` and `konaste` (which are very similar since konaste is based on a3) +3) Run `ts-node parse-gameData-xml.ts` diff --git a/database-seeds/scripts/rerunners/ddr/parse-gameData-json.ts b/database-seeds/scripts/rerunners/ddr/parse-gameData-json.ts new file mode 100644 index 000000000..984d69d50 --- /dev/null +++ b/database-seeds/scripts/rerunners/ddr/parse-gameData-json.ts @@ -0,0 +1,37 @@ +import fs from "fs"; +import {Music, parseGameData} from "./parse-gameData"; + +interface JsonMusic { + mcode: number, + basename: string, + title: string, + title_sort: string, + artist: string, + bpmmax: number, + bpmmin: number, + level_str: string, + editable: boolean, + seriesid: number, + ac_seriesid: number, + limited_cha: number, + bemaniflag: number, +} + +function jsonMusicToMusic(jsonMusic: JsonMusic): Music { + return { + mcode: jsonMusic.mcode, + basename: jsonMusic.basename, + title: jsonMusic.title, + title_yomi: jsonMusic.title_sort, + artist: jsonMusic.artist, + bpmmax: jsonMusic.bpmmax, + series: jsonMusic.ac_seriesid, + bemaniflag: jsonMusic.bemaniflag, + limited_cha: jsonMusic.limited_cha, + diffLv: jsonMusic.level_str, + } +} + +const gameData = JSON.parse(fs.readFileSync("music.json", "utf-8")).map(jsonMusicToMusic); + +parseGameData("konaste", gameData); diff --git a/database-seeds/scripts/rerunners/ddr/parse-gameData-xml.ts b/database-seeds/scripts/rerunners/ddr/parse-gameData-xml.ts new file mode 100644 index 000000000..dfa94e933 --- /dev/null +++ b/database-seeds/scripts/rerunners/ddr/parse-gameData-xml.ts @@ -0,0 +1,9 @@ +import {XMLParser} from "fast-xml-parser"; +import fs from "fs"; +import {Music, parseGameData} from "./parse-gameData"; + +const parser = new XMLParser(); + +const gameData: Music[] = parser.parse(fs.readFileSync("musicdb.xml")).mdb.music; + +parseGameData("a3", gameData); diff --git a/database-seeds/scripts/rerunners/ddr/parse-gameData.ts b/database-seeds/scripts/rerunners/ddr/parse-gameData.ts new file mode 100644 index 000000000..e0eaefbcc --- /dev/null +++ b/database-seeds/scripts/rerunners/ddr/parse-gameData.ts @@ -0,0 +1,147 @@ +import { CreateChartID, MutateCollection, ReadCollection, WriteCollection } from "../../util"; +import { + ChartDocument, + Difficulties, + type GameConfig, + GetGameConfig, + Playtypes, + SongDocument, + Versions, +} from "tachi-common"; +import { DDR_FLARE_CATEGORIES } from "tachi-common/config/game-support/ddr"; + +const gameConfig = GetGameConfig("ddr") as GameConfig<"ddr">; + +export interface Music { + mcode: number; + basename: string; + title: string; + title_yomi: string; + artist: string; + bpmmax: number; + series: number; + bemaniflag: number; + limited_cha: number; + diffLv: string; +} + +const DIFFICULTIES: Array = [ + "BEGINNER", + "BASIC", + "DIFFICULT", + "EXPERT", + "CHALLENGE", +]; + +function seriesToFlareCategory(series: number) { + if (!series) { + return DDR_FLARE_CATEGORIES.enum.NONE; + } + // Before X3 vs 2nd MIX + if (series <= 13) { + return DDR_FLARE_CATEGORIES.enum.CLASSIC; + } + // Between 2013 and A + if (series > 13 && series <= 17) { + return DDR_FLARE_CATEGORIES.enum.WHITE; + } + // Between A20 and WORLD + if (series > 17 && series <= 20) { + return DDR_FLARE_CATEGORIES.enum.GOLD; + } + return DDR_FLARE_CATEGORIES.enum.NONE; +} + +function buildSong(music: Music): SongDocument<"ddr"> { + return { + artist: `${music.artist}`, + title: `${music.title}`, + id: music.mcode, + data: { + inGameID: music.mcode, + flareCategory: seriesToFlareCategory(music.series), + }, + altTitles: [], + searchTerms: [], + }; +} + +function buildChart( + music: Music, + playtype: Playtypes["ddr"], + difficulty: Difficulties["ddr:SP" | "ddr:DP"], + version: Versions["ddr:SP" | "ddr:DP"] +): ChartDocument<"ddr:SP" | "ddr:DP"> { + const splitDiff = music.diffLv.split(" "); + const diffIndex = (playtype === "SP" ? 0 : 5) + DIFFICULTIES.indexOf(difficulty); + return { + chartID: CreateChartID(), + songID: music.mcode, + difficulty: difficulty, + isPrimary: true, + level: splitDiff[diffIndex]!, + levelNum: parseInt(splitDiff[diffIndex]!, 10), + playtype: playtype, + versions: [version], + data: { + inGameID: music.mcode, + }, + }; +} + +export function parseGameData(version: Versions["ddr:SP" | "ddr:DP"], gameData: Music[]) { + const songs = ReadCollection("songs-ddr.json"); + const existingChartDocs = ReadCollection("charts-ddr.json"); + const existingCharts = new Map>(); + for (const chart of existingChartDocs) { + existingCharts.set(`${chart.data.inGameID}-${chart.difficulty}-${chart.playtype}`, chart); + } + + const newSongs: SongDocument<"ddr">[] = []; + const newCharts: ChartDocument<"ddr:SP" | "ddr:DP">[] = []; + for (const music of gameData) { + const song = songs.find((s: SongDocument<"ddr">) => s.data.inGameID === music.mcode); + if (!song) { + const newSong = buildSong(music); + console.log( + `New song detected: ${newSong.artist} - ${newSong.title} (inGameId ${newSong.id})` + ); + newSongs.push(buildSong(music)); + } + const splitDiff = music.diffLv.split(" "); + for (let i = 0; i < 10; i++) { + if (parseInt(splitDiff[i]!, 10) > 0) { + const playtype = gameConfig.playtypes.at(Math.floor(i / 5))!; + const difficulty = DIFFICULTIES.at(i % 5)!; + const exists = existingCharts.get(`${music.mcode}-${difficulty}-${playtype}`); + if (exists) { + if (!exists.versions.includes(version)) { + console.log( + `Adding version ${version} to chart ${exists.playtype} ${exists.difficulty} of song ${song.artist} - ${song.title} (inGameId ${song.id})` + ); + exists.versions.push(version); + } + + exists.level = splitDiff[i]!; + exists.levelNum = parseInt(splitDiff[i]!, 10); + } else { + const newChart = buildChart(music, playtype, difficulty, version); + console.log( + `New chart detected: ${newChart.playtype} ${newChart.difficulty} for song ${music.artist} - ${music.title} (inGameId ${music.mcode})` + ); + newCharts.push(newChart); + } + } + } + } + + MutateCollection("songs-ddr.json", (songs: Array>) => [ + ...songs, + ...newSongs, + ]); + + // overwrite this collection instead of mutating it + // we already know the existing chart docs and might have mutated them to + // declare the new versions, or update chart constants. + WriteCollection("charts-ddr.json", [...existingChartDocs, ...newCharts]); +} diff --git a/docs/docs/game-support/games/ddr-DP.md b/docs/docs/game-support/games/ddr-DP.md new file mode 100644 index 000000000..20a330b15 --- /dev/null +++ b/docs/docs/game-support/games/ddr-DP.md @@ -0,0 +1,86 @@ +# DDR (DP) Support + +This game has the internal GPTString of `ddr:DP`. + +!!! 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 1 million. | +| `lamp` | "FAILED", "ASSIST", "CLEAR", "FULL COMBO", "GREAT FULL COMBO", "PERFECT FULL COMBO", "MARVELOUS FULL COMBO", "LIFE4" | The type of clear this user got. | + +### Derived Metrics + +| Metric Name | Type | Description | +| :: | :: | :: | +| `grade` | "E", "D", "D+", "C-", "C", "C+", "B-", "B", "B+", "A-", "A", "A+", "AA-", "AA", "AA+", "AAA" | The grade this score was. Note that grades are capped at F if this was a fail. | +| `percent` | Decimal | The % value this score was worth. This is a number between 0 and 100. | + +### Optional Metrics + +| Metric Name | Type | Description | +| :: | :: | :: | + +## Judgements + +The folowing judgements are defined: + +- `MARVELOUS` +- `PERFECT` +- `GREAT` +- `GOOD` +- `MISS` +- `OK` + +## Rating Algorithms + +### Score Rating Algorithms + +| Name | Description | +| :: | :: | +| `flareSkill` | Flare Skill as it's implemented in DDR World. | + +### Session Rating Algorithms + +| Name | Description | +| :: | :: | +| `flareSkill` | Average of your 10 best Flare Points this session | + +### Profile Rating Algorithms + +| Name | Description | +| :: | :: | +| `flareSkill` | Flare Skill as it's implemented in DDR World, taking 30 best flare points from 3 different categories: CLASSIC (DDR 1st~X3 vs 2ndMIX), WHITE (DDR(2013)~DDR A), GOLD (DDR A20~WORLD). | + +## Difficulties + +- `BEGINNER` +- `BASIC` +- `DIFFICULT` +- `EXPERT` +- `CHALLENGE` + +## Classes + +| Name | Type | Values | +| :: | :: | :: | + +## Versions + +| ID | Pretty Name | +| :: | :: | +| `a3` | A3 | +| `konaste` | Konaste | + +## Supported Match Types + +- `inGameID` +- `songTitle` +- `tachiSongID` diff --git a/docs/docs/game-support/games/ddr-SP.md b/docs/docs/game-support/games/ddr-SP.md new file mode 100644 index 000000000..db7345eeb --- /dev/null +++ b/docs/docs/game-support/games/ddr-SP.md @@ -0,0 +1,86 @@ +# DDR (SP) Support + +This game has the internal GPTString of `ddr:SP`. + +!!! 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 1 million. | +| `lamp` | "FAILED", "ASSIST", "CLEAR", "FULL COMBO", "GREAT FULL COMBO", "PERFECT FULL COMBO", "MARVELOUS FULL COMBO", "LIFE4" | The type of clear this user got. | + +### Derived Metrics + +| Metric Name | Type | Description | +| :: | :: | :: | +| `grade` | "E", "D", "D+", "C-", "C", "C+", "B-", "B", "B+", "A-", "A", "A+", "AA-", "AA", "AA+", "AAA" | The grade this score was. Note that grades are capped at F if this was a fail. | +| `percent` | Decimal | The % value this score was worth. This is a number between 0 and 100. | + +### Optional Metrics + +| Metric Name | Type | Description | +| :: | :: | :: | + +## Judgements + +The folowing judgements are defined: + +- `MARVELOUS` +- `PERFECT` +- `GREAT` +- `GOOD` +- `MISS` +- `OK` + +## Rating Algorithms + +### Score Rating Algorithms + +| Name | Description | +| :: | :: | +| `flareSkill` | Flare Skill as it's implemented in DDR World. | + +### Session Rating Algorithms + +| Name | Description | +| :: | :: | +| `flareSkill` | Average of your 10 best Flare Points this session | + +### Profile Rating Algorithms + +| Name | Description | +| :: | :: | +| `flareSkill` | Flare Skill as it's implemented in DDR World, taking 30 best flare points from 3 different categories: CLASSIC (DDR 1st~X3 vs 2ndMIX), WHITE (DDR(2013)~DDR A), GOLD (DDR A20~WORLD). | + +## Difficulties + +- `BEGINNER` +- `BASIC` +- `DIFFICULT` +- `EXPERT` +- `CHALLENGE` + +## Classes + +| Name | Type | Values | +| :: | :: | :: | + +## Versions + +| ID | Pretty Name | +| :: | :: | +| `a3` | A3 | +| `konaste` | Konaste | + +## Supported Match Types + +- `inGameID` +- `songTitle` +- `tachiSongID` diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1476f9ea3..3cf07262e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -295,8 +295,8 @@ importers: specifier: ^5.6.1 version: 5.6.1(@babel/core@7.1.0)(@types/react@17.0.13)(react-dom@17.0.2)(react@17.0.2) rg-stats: - specifier: 0.5.6 - version: 0.5.6 + specifier: 0.5.8 + version: 0.5.8 sync-fetch: specifier: ^0.3.1 version: 0.3.1 @@ -662,8 +662,8 @@ importers: specifier: 3.1.2 version: 3.1.2 rg-stats: - specifier: 0.5.6 - version: 0.5.6 + specifier: 0.5.8 + version: 0.5.8 rimraf: specifier: 3.0.2 version: 3.0.2 @@ -10162,8 +10162,8 @@ packages: resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==} dev: false - /rg-stats@0.5.6: - resolution: {integrity: sha512-4YG942ztdaXd27KUABxiQAA3aJuLvLcvjdLfoxKqn89P7967bfyG5Z5OWaAg9Sr8pvhsABA4bHZuBAKtSW90xA==} + /rg-stats@0.5.8: + resolution: {integrity: sha512-AqhksXLcwACA3Af1XQkJhVSeQtFlu6NggmTqxXvw7BLDiaOsTJDZn4+gnk4XlJtf+7U0nlrMKUFM8ZlHCNFjXA==} dev: false /rimraf@2.4.5: diff --git a/server/example/conf.json5 b/server/example/conf.json5 index 572d12e36..25104327c 100644 --- a/server/example/conf.json5 +++ b/server/example/conf.json5 @@ -50,6 +50,7 @@ "maimai", "maimaidx", "itg", + "ddr" ], IMPORT_TYPES: [ "file/eamusement-iidx-csv", diff --git a/server/package.json b/server/package.json index 8216d0fe9..24e6add14 100644 --- a/server/package.json +++ b/server/package.json @@ -100,7 +100,7 @@ "prudence": "0.10.0", "rate-limit-redis": "2.1.0", "redis": "3.1.2", - "rg-stats": "0.5.6", + "rg-stats": "0.5.8", "rimraf": "3.0.2", "safe-json-stringify": "1.2.0", "semver": "^7.3.7", @@ -129,4 +129,4 @@ "node": "20", "pnpm": "8" } -} \ 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 8707fc6f6..d48c323f9 100644 --- a/server/src/game-implementations/game-implementations.ts +++ b/server/src/game-implementations/game-implementations.ts @@ -1,6 +1,7 @@ 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 { DDR_IMPL } from "./games/ddr"; import { GITADORA_DORA_IMPL, GITADORA_GITA_IMPL } from "./games/gitadora"; import { IIDX_DP_IMPL, IIDX_SP_IMPL } from "./games/iidx"; import { ITG_STAMINA_IMPL } from "./games/itg"; @@ -45,4 +46,6 @@ export const GPT_SERVER_IMPLEMENTATIONS: GPTImplementations = { "sdvx:Single": SDVX_IMPL, "arcaea:Touch": ARCAEA_IMPL, "ongeki:Single": ONGEKI_IMPL, + "ddr:SP": DDR_IMPL, + "ddr:DP": DDR_IMPL, }; diff --git a/server/src/game-implementations/games/ddr.test.ts b/server/src/game-implementations/games/ddr.test.ts new file mode 100644 index 000000000..05b58b91f --- /dev/null +++ b/server/src/game-implementations/games/ddr.test.ts @@ -0,0 +1,197 @@ +import { DDR_IMPL } from "./ddr"; +import { IIDX_DP_IMPL, IIDX_SP_IMPL } from "./iidx"; +import { TestSnapshot } from "../../test-utils/single-process-snapshot"; +import { DDR_GRADES, DDR_LAMPS } from "tachi-common"; +import t from "tap"; +import { dmf, mkFakePBDDRSP } from "test-utils/misc"; +import { Testing511SPA, TestingDDRSP, TestingDDRSPScore } from "test-utils/test-data"; +import type { ChartDocumentData, ProvidedMetrics, ScoreData } from "tachi-common"; + +const baseMetrics: ProvidedMetrics["ddr:DP" | "ddr:SP"] = { + lamp: "CLEAR", + score: 750_000, +}; + +t.test("DDR Implementation", (t) => { + t.test("Derivers", (t) => { + const impl = DDR_IMPL; + + t.test("Grade", (t) => { + const f = (score: number, expected: any) => + t.equal( + impl.derivers.grade(dmf(baseMetrics, { score }), TestingDDRSP as any), + expected, + `A score of ${score} should result in grade=${expected}.` + ); + + f(990500, "AAA"); + f(950500, "AA+"); + f(900500, "AA"); + f(890500, "AA-"); + f(850500, "A+"); + f(800500, "A"); + f(790500, "A-"); + f(750500, "B+"); + f(700500, "B"); + f(690500, "B-"); + f(650500, "C+"); + f(600500, "C"); + f(590500, "C-"); + f(550500, "D+"); + f(500, "D"); + + t.end(); + }); + + t.end(); + }); + t.test("Class Derivers", (t) => { + const impl = DDR_IMPL; + + t.test("Flare", (t) => { + const f = (ratings: number, expected: any) => + t.equal( + impl.classDerivers.flare({ flareSkill: ratings }), + expected, + `A flare skill of ${ratings} should result in grade=${expected}.` + ); + + f(1, "NONE"); + f(501, "NONE+"); + f(1001, "NONE++"); + f(1501, "NONE+++"); + f(2001, "MERCURY"); + f(3001, "MERCURY+"); + f(4001, "MERCURY++"); + f(5001, "MERCURY+++"); + f(6001, "VENUS"); + f(7001, "VENUS+"); + f(8001, "VENUS++"); + f(9001, "VENUS+++"); + f(10001, "EARTH"); + f(11501, "EARTH+"); + f(13001, "EARTH++"); + f(14501, "EARTH+++"); + f(16001, "MARS"); + f(18001, "MARS+"); + f(20001, "MARS++"); + f(22001, "MARS+++"); + f(24001, "JUPITER"); + f(26501, "JUPITER+"); + f(29001, "JUPITER++"); + f(31501, "JUPITER+++"); + f(34001, "SATURN"); + f(36751, "SATURN+"); + f(39501, "SATURN++"); + f(42251, "SATURN+++"); + f(45001, "URANUS"); + f(48751, "URANUS+"); + f(52501, "URANUS++"); + f(56251, "URANUS+++"); + f(60001, "NEPTUNE"); + f(63751, "NEPTUNE+"); + f(67501, "NEPTUNE++"); + f(71251, "NEPTUNE+++"); + f(75001, "SUN"); + f(78751, "SUN+"); + f(82501, "SUN++"); + f(86251, "SUN+++"); + f(90001, "WORLD"); + + t.end(); + }); + + t.end(); + }); + + t.test("CalculatedData", (t) => { + const impl = DDR_IMPL; + + t.test("Flare Skill", (t) => { + const f = ( + scoreData: Partial>, + chartData: Partial, + expected: any, + msg: string + ) => + t.equal( + impl.scoreCalcs.flareSkill( + dmf(TestingDDRSPScore.scoreData, scoreData), + dmf(TestingDDRSP, { data: chartData as any }) as any + ), + expected, + msg + ); + + f( + { grade: "AA", lamp: "CLEAR", optional: { flare: "II", enumIndexes: {} } }, + {}, + 257, + "Level 6 song with Flare II should give 257 flare skill" + ); + + f({ grade: "E", lamp: "FAILED" }, {}, 0, "Song failed: flare skill should be 0"); + + t.end(); + }); + + t.end(); + }); + + t.test("Goal Formatters", (t) => { + const impl = DDR_IMPL; + + t.test("Criteria", (t) => { + t.equal(impl.goalCriteriaFormatters.score(123456), "Get a score of 123,456 on"); + t.equal(impl.goalCriteriaFormatters.score(0), "Get a score of 0 on"); + + t.end(); + }); + + t.test("Progress", (t) => { + const f = ( + k: keyof typeof impl.goalProgressFormatters, + modifant: Partial, + goalValue: any, + expected: any + ) => + t.equal( + impl.goalProgressFormatters[k]( + mkFakePBDDRSP({ + // @ts-expect-error lol deepmerge types + scoreData: modifant, + }), + goalValue + ), + expected + ); + + f("score", { score: 123_456 }, 1_000_000, "123,456"); + f("score", { score: 0 }, 1_000_000, "0"); + + f("grade", { score: 955000, grade: "AA+" }, DDR_GRADES.AAA, "AAA-35,000"); + f("grade", { score: 995000, grade: "AAA" }, DDR_GRADES.AAA, "AAA+5,000"); + + f("lamp", { lamp: "CLEAR", optional: {} as any }, DDR_LAMPS.FULL_COMBO, "CLEAR"); + + f( + "lamp", + { lamp: "FULL COMBO", optional: {} as any }, + DDR_LAMPS.FULL_COMBO, + "FULL COMBO" + ); + + t.end(); + }); + + t.test("OutOf", (t) => { + t.equal(impl.goalOutOfFormatters.score(123456), "123,456"); + + t.end(); + }); + + t.end(); + }); + + t.end(); +}); diff --git a/server/src/game-implementations/games/ddr.ts b/server/src/game-implementations/games/ddr.ts new file mode 100644 index 000000000..cff43f42b --- /dev/null +++ b/server/src/game-implementations/games/ddr.ts @@ -0,0 +1,342 @@ +import { + GoalFmtPercent, + GoalFmtScore, + GoalOutOfFmtPercent, + GoalOutOfFmtScore, + GradeGoalFormatter, +} from "./_common"; +import db from "../../external/mongo/db"; +import { IsNullish } from "../../utils/misc"; +import { CreatePBMergeFor } from "../utils/pb-merge"; +import { SessionAvgBest10For } from "../utils/session-calc"; +import { DDRFlare } from "rg-stats"; +import { + DDR_GBOUNDARIES, + FmtNum, + type Game, + GetGrade, + GetSpecificGPTConfig, + type integer, + type Playtype, +} from "tachi-common"; +import type { + GPTGoalFormatters, + GPTGoalProgressFormatters, + GPTServerImplementation, + ScoreValidator, +} from "game-implementations/types"; +import type { PBScoreDocument, SongDocument } from "tachi-common"; + +interface PBScoreDocumentWithSong extends PBScoreDocument<"ddr:DP" | "ddr:SP"> { + song: SongDocument<"ddr">; + top?: number; +} + +const FLARE_0_POINTS = [ + 145, 155, 170, 185, 205, 230, 255, 290, 335, 400, 465, 510, 545, 575, 600, 620, 635, 650, 665, +]; + +const DDR_GOAL_FMT: GPTGoalFormatters<"ddr:DP" | "ddr:SP"> = { + score: GoalFmtScore, +}; + +const DDR_GOAL_OO_FMT: GPTGoalFormatters<"ddr:DP" | "ddr:SP"> = { + score: GoalOutOfFmtScore, +}; + +const DDR_GOAL_PG_FMT: GPTGoalProgressFormatters<"ddr:DP" | "ddr:SP"> = { + score: (pb) => FmtNum(pb.scoreData.score), + lamp: (pb) => { + return pb.scoreData.lamp; + }, + grade: (pb, gradeIndex) => + GradeGoalFormatter( + DDR_GBOUNDARIES, + pb.scoreData.grade, + pb.scoreData.score, + DDR_GBOUNDARIES[gradeIndex]!.name, + (delta) => { + return FmtNum(delta); + } + ), +}; + +export const DDR_SCORE_VALIDATORS: Array> = [ + (s) => { + const { MARVELOUS, PERFECT, GREAT, GOOD, OK, MISS } = s.scoreData.judgements; + + if ( + IsNullish(MARVELOUS) || + IsNullish(PERFECT) || + IsNullish(GREAT) || + IsNullish(GOOD) || + IsNullish(OK) || + IsNullish(MISS) + ) { + return; + } + + const stepScore = 1_000_000 / (MARVELOUS + PERFECT + GREAT + GOOD + OK + MISS); + const calculatedScore = + Math.floor( + (stepScore * (MARVELOUS + OK) + + (stepScore - 10) * PERFECT + + ((stepScore * 3) / 5 - 10) * GREAT + + (stepScore / 5 - 10) * GOOD) / + 10 + ) * 10; + + if (calculatedScore !== s.scoreData.score) { + return `Expected calculated score from judgements of ${calculatedScore} to equal score of ${s.scoreData.score}.`; + } + }, + (s) => { + const { MARVELOUS, PERFECT, GREAT, GOOD, MISS } = s.scoreData.judgements; + + if ( + IsNullish(MARVELOUS) || + IsNullish(PERFECT) || + IsNullish(GREAT) || + IsNullish(GOOD) || + IsNullish(MISS) + ) { + return; + } + + switch (s.scoreData.lamp) { + case "FULL COMBO": { + if (MISS > 0) { + return `Cannot have a FULL COMBO with more than 0 MISS`; + } + + break; + } + + case "GREAT FULL COMBO": { + if (MISS > 0 || GOOD > 0) { + return `Cannot have a GREAT FULL COMBO with more than 0 MISS and GOOD`; + } + + break; + } + + case "PERFECT FULL COMBO": { + if (MISS > 0 || GOOD > 0 || GREAT > 0) { + return `Cannot have a PERFECT FULL COMBO with more than 0 MISS, GOOD and GREAT`; + } + + break; + } + + case "MARVELOUS FULL COMBO": { + if (MISS > 0 || GOOD > 0 || GREAT > 0 || PERFECT > 0) { + return `Cannot have a MARVELOUS FULL COMBO with anyhing else than MARVELOUS judgements`; + } + + break; + } + + default: + } + }, +]; + +export const DDR_IMPL: GPTServerImplementation<"ddr:DP" | "ddr:SP"> = { + chartSpecificValidators: {}, + classDerivers: { + flare: (ratings) => { + const flarePoints = ratings.flareSkill; + + if (IsNullish(flarePoints)) { + return null; + } + + switch (true) { + case flarePoints < 500: + return "NONE"; + case flarePoints < 1000: + return "NONE+"; + case flarePoints < 1500: + return "NONE++"; + case flarePoints < 2000: + return "NONE+++"; + case flarePoints < 3000: + return "MERCURY"; + case flarePoints < 4000: + return "MERCURY+"; + case flarePoints < 5000: + return "MERCURY++"; + case flarePoints < 6000: + return "MERCURY+++"; + case flarePoints < 7000: + return "VENUS"; + case flarePoints < 8000: + return "VENUS+"; + case flarePoints < 9000: + return "VENUS++"; + case flarePoints < 10000: + return "VENUS+++"; + case flarePoints < 11500: + return "EARTH"; + case flarePoints < 13000: + return "EARTH+"; + case flarePoints < 14500: + return "EARTH++"; + case flarePoints < 16000: + return "EARTH+++"; + case flarePoints < 18000: + return "MARS"; + case flarePoints < 20000: + return "MARS+"; + case flarePoints < 22000: + return "MARS++"; + case flarePoints < 24000: + return "MARS+++"; + case flarePoints < 26500: + return "JUPITER"; + case flarePoints < 29000: + return "JUPITER+"; + case flarePoints < 31500: + return "JUPITER++"; + case flarePoints < 34000: + return "JUPITER+++"; + case flarePoints < 36750: + return "SATURN"; + case flarePoints < 39500: + return "SATURN+"; + case flarePoints < 42250: + return "SATURN++"; + case flarePoints < 45000: + return "SATURN+++"; + case flarePoints < 48750: + return "URANUS"; + case flarePoints < 52500: + return "URANUS+"; + case flarePoints < 56250: + return "URANUS++"; + case flarePoints < 60000: + return "URANUS+++"; + case flarePoints < 63750: + return "NEPTUNE"; + case flarePoints < 67500: + return "NEPTUNE+"; + case flarePoints < 71250: + return "NEPTUNE++"; + case flarePoints < 75000: + return "NEPTUNE+++"; + case flarePoints < 78750: + return "SUN"; + case flarePoints < 82500: + return "SUN+"; + case flarePoints < 86250: + return "SUN++"; + case flarePoints < 90000: + return "SUN+++"; + } + + return "WORLD"; + }, + }, + defaultMergeRefName: "Best Score", + derivers: { + grade: ({ score, lamp }) => { + if (lamp === "FAILED") { + return "E"; + } + + return GetGrade(DDR_GBOUNDARIES, score); + }, + }, + goalCriteriaFormatters: DDR_GOAL_FMT, + goalProgressFormatters: DDR_GOAL_PG_FMT, + goalOutOfFormatters: DDR_GOAL_OO_FMT, + pbMergeFunctions: [ + CreatePBMergeFor("largest", "enumIndexes.lamp", "Best Lamp", (base, score) => { + base.scoreData.lamp = score.scoreData.lamp; + }), + CreatePBMergeFor("largest", "score", "Best Score", (base, score) => { + base.scoreData.score = score.scoreData.score; + base.scoreData.grade = score.scoreData.grade; + }), + ], + profileCalcs: { + flareSkill: async (game: Game, playtype: Playtype, userID: integer) => { + const sc: Array = await db["personal-bests"].aggregate([ + { + $match: { + userID, + game, + playtype, + isPrimary: true, + [`calculatedData.flareSkill`]: { $type: "number" }, + }, + }, + { + $lookup: { + from: "songs-ddr", + localField: "songID", + foreignField: "id", + as: "song", + }, + }, + { + $unwind: { + path: "$song", + }, + }, + { + $sort: { + [`calculatedData.flareSkill`]: -1, + }, + }, + ]); + + if (sc.length === 0) { + return null; + } + + let classicIndex = 0; + let goldIndex = 0; + let whiteIndex = 0; + + for (const score of sc) { + if (score.song.data.flareCategory === "CLASSIC") { + score.top = classicIndex++; + } else if (score.song.data.flareCategory === "WHITE") { + score.top = whiteIndex++; + } else if (score.song.data.flareCategory === "GOLD") { + score.top = goldIndex++; + } else { + score.top = 99; // Score will be filtered out + } + } + + return sc + .filter((score: PBScoreDocumentWithSong) => score.top! < 30) + .reduce( + (a: number, e: PBScoreDocumentWithSong) => a + e.calculatedData.flareSkill!, + 0 + ); + }, + }, + scoreCalcs: { + flareSkill: (scoreData, chart) => { + // No flare if the song is failed + if (scoreData.lamp === "FAILED") { + return 0; + } + + const flareLevel = scoreData.optional.flare + ? GetSpecificGPTConfig("ddr:SP").optionalMetrics.flare.values.indexOf( + scoreData.optional.flare + ) + : 0; + + return DDRFlare.calculate(chart.levelNum, flareLevel); + }, + }, + scoreValidators: DDR_SCORE_VALIDATORS, + sessionCalcs: { + flareSkill: SessionAvgBest10For("flareSkill"), + }, +}; diff --git a/server/src/lib/migration/migrations/v3-props.ts b/server/src/lib/migration/migrations/v3-props.ts index f61cda03f..5b4af1685 100644 --- a/server/src/lib/migration/migrations/v3-props.ts +++ b/server/src/lib/migration/migrations/v3-props.ts @@ -36,6 +36,7 @@ function perToScore(goal: GoalDocument) { case "wacca": case "chunithm": case "ongeki": + case "ddr": case "museca": return v * 1_000_000; case "popn": diff --git a/server/src/lib/migration/migrations/v3-scores.ts b/server/src/lib/migration/migrations/v3-scores.ts index c3145a06a..0e89d3fb0 100644 --- a/server/src/lib/migration/migrations/v3-scores.ts +++ b/server/src/lib/migration/migrations/v3-scores.ts @@ -88,6 +88,8 @@ const scoreMovers: ScoreMovers = { "sdvx:Single": NEUTRAL_MV, "wacca:Single": NEUTRAL_MV, "museca:Single": NEUTRAL_MV, + "ddr:SP": NEUTRAL_MV, + "ddr:DP": NEUTRAL_MV, "maimai:Single": (old) => ({ percent: old.percent, judgements: old.judgements, diff --git a/server/src/test-utils/misc.ts b/server/src/test-utils/misc.ts index c999dd308..6dd803a93 100644 --- a/server/src/test-utils/misc.ts +++ b/server/src/test-utils/misc.ts @@ -5,6 +5,7 @@ import { FakeOtherUser, HC511Goal, HC511UserGoal, + TestingDDRSPScorePB, TestingIIDXSPScore, TestingIIDXSPScorePB, TestingJubeatPB, @@ -101,6 +102,10 @@ export function mkFakePBIIDXSP(modifant: DeepPartial> return dmf(TestingIIDXSPScorePB, modifant); } +export function mkFakePBDDRSP(modifant: DeepPartial> = {}) { + return dmf(TestingDDRSPScorePB, modifant); +} + export function mkFakePBJubeat(modifant: DeepPartial> = {}) { return dmf(TestingJubeatPB, modifant); } diff --git a/server/src/test-utils/test-data.ts b/server/src/test-utils/test-data.ts index 32f8c2826..1c5c8cff9 100644 --- a/server/src/test-utils/test-data.ts +++ b/server/src/test-utils/test-data.ts @@ -101,6 +101,44 @@ export const TestingIIDXSPScorePB: PBScoreDocument<"iidx:SP"> = { timeAchieved: 10000, }; +export const TestingDDRSPScorePB: PBScoreDocument<"ddr:SP"> = { + calculatedData: { + flareSkill: 545, + }, + chartID: "f14bc72ad8336625ce64fc42571192e1ec168113", + composedFrom: [ + { + name: "Best Score", + scoreID: "Te065000f08b49458f8b0aa3eabf0b857b79c562d7cf9eb34f6dabd7a1c3c3fa6", + }, + ], + game: "ddr", + highlight: false, + isPrimary: true, + playtype: "SP", + rankingData: { + rank: 1, + outOf: 1, + rivalRank: null, + }, + scoreData: { + score: 914400, + lamp: "CLEAR", + judgements: {}, + optional: { + enumIndexes: {}, + }, + grade: "AA", + enumIndexes: { + lamp: 2, + grade: 13, + }, + }, + songID: 37691, + timeAchieved: null, + userID: 1, +}; + export const TestingJubeatPB: PBScoreDocument<"jubeat:Single"> = { chartID: "b90a319f18d1a746b330b8f4cd6f74874f664421", userID: 1, @@ -172,6 +210,39 @@ export const TestingIIDXSPScore: ScoreDocument<"iidx:SP"> = { importType: "ir/direct-manual", }; +export const TestingDDRSPScore: ScoreDocument<"ddr:SP"> = { + calculatedData: { + flareSkill: 545, + }, + chartID: "2fc2e0cfdda42addb7840b58be1df1f545310d66", + comment: null, + game: "ddr", + highlight: false, + importType: "file/batch-manual", + isPrimary: true, + playtype: "SP", + scoreData: { + score: 914400, + lamp: "CLEAR", + judgements: {}, + optional: { + enumIndexes: {}, + }, + grade: "AA", + enumIndexes: { + lamp: 2, + grade: 13, + }, + }, + scoreID: "Te065000f08b49458f8b0aa3eabf0b857b79c562d7cf9eb34f6dabd7a1c3c3fa6", + scoreMeta: {}, + service: "History (BATCH-MANUAL)", + songID: 10, + timeAchieved: null, + timeAdded: 1722084133807, + userID: 1, +}; + export const TestingSDVXScore: ScoreDocument<"sdvx:Single"> = { service: "foo (DIRECT-MANUAL)", game: "sdvx", @@ -475,6 +546,32 @@ export const Testing511Song: SongDocument<"iidx"> = { }, }; +export const TestingDDRSP: ChartDocument<"ddr:SP"> = { + chartID: "2fc2e0cfdda42addb7840b58be1df1f545310d66", + data: { + inGameID: 10, + }, + difficulty: "BASIC", + isPrimary: true, + level: "6", + levelNum: 6, + playtype: "SP", + songID: 10, + versions: ["a3"], +}; + +export const TestingDDRSong: SongDocument<"ddr"> = { + altTitles: [], + artist: "UZI-LAY", + data: { + flareCategory: "CLASSIC", + inGameID: 10, + }, + id: 10, + searchTerms: [], + title: "PUT YOUR FAITH IN ME", +}; + export const TestingAlbidaADV: ChartDocument<"sdvx:Single"> = { chartID: "5088a4d0e1ee9d0cc2f625934306e45b1a60699b", difficulty: "ADV",