diff --git a/client/src/lib/games/sdvx-usc.tsx b/client/src/lib/games/sdvx-usc.tsx index 6bf627058..30e9c78ae 100644 --- a/client/src/lib/games/sdvx-usc.tsx +++ b/client/src/lib/games/sdvx-usc.tsx @@ -2,7 +2,7 @@ import { NumericSOV } from "util/sorts"; import { ChangeOpacity } from "util/color-opacity"; import { FormatMillions } from "util/misc"; import { GPTClientImplementation } from "lib/types"; -import { COLOUR_SET, GPTStrings } from "tachi-common"; +import { COLOUR_SET, GPTStrings, SDVX_GRADES } from "tachi-common"; import MillionsScoreCell from "components/tables/cells/MillionsScoreCell"; import SDVXJudgementCell from "components/tables/cells/SDVXJudgementCell"; import SDVXLampCell from "components/tables/cells/SDVXLampCell"; @@ -152,7 +152,7 @@ export const SDVX_IMPL: GPTClientImplementation<"sdvx:Single"> = { }, ratingSystems: [ CreateRatingSys( - "Tierlist", + "Clear Tierlist", "The unofficial SDVX clearing tierlist", "lamp", (c) => c.data.clearTier?.value, @@ -160,6 +160,15 @@ export const SDVX_IMPL: GPTClientImplementation<"sdvx:Single"> = { (c) => c.data.clearTier?.individualDifference, (s) => [s.scoreData.lamp, s.scoreData.lamp !== "FAILED"] ), + CreateRatingSys( + "S Tierlist", + "Tierlist ratings for S grade", + "grade", + (c) => c.data.sTier?.value, + (c) => c.data.sTier?.text, + (c) => c.data.sTier?.individualDifference, + (s) => [s.scoreData.grade, s.scoreData.enumIndexes.grade >= SDVX_GRADES.S] + ), ], scoreHeaders: [ ["Score", "Score", NumericSOV((x) => x?.scoreData.score)], diff --git a/common/src/config/game-support/sdvx.ts b/common/src/config/game-support/sdvx.ts index 28c0e1b41..641ae32b6 100644 --- a/common/src/config/game-support/sdvx.ts +++ b/common/src/config/game-support/sdvx.ts @@ -184,6 +184,7 @@ export const SDVX_SINGLE_CONF = { chartData: z.strictObject({ inGameID: zodNonNegativeInt, clearTier: zodTierlistData, + sTier: zodTierlistData, }), preferences: z.strictObject({ vf6Target: z.number().optional().nullable() }), diff --git a/seeds/collections/charts-sdvx.json b/seeds/collections/charts-sdvx.json index fc3b4743c..bb4253177 100644 --- a/seeds/collections/charts-sdvx.json +++ b/seeds/collections/charts-sdvx.json @@ -49,7 +49,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1 + "inGameID": 1, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "INF", "isPrimary": true, @@ -138,7 +143,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 2 + "inGameID": 2, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "HVN", "isPrimary": true, @@ -526,7 +536,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 7 + "inGameID": 7, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "INF", "isPrimary": true, @@ -631,7 +646,12 @@ { "chartID": "1468f2cc24449b3fb0c6ac533e0f69f466497dc0", "data": { - "inGameID": 8 + "inGameID": 8, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "XCD", "isPrimary": true, @@ -1023,7 +1043,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 14 + "inGameID": 14, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "HVN", "isPrimary": true, @@ -2156,7 +2181,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 30 + "inGameID": 30, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "GRV", "isPrimary": true, @@ -2523,7 +2553,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 36 + "inGameID": 36, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "INF", "isPrimary": true, @@ -2633,7 +2668,12 @@ { "chartID": "830ee39db145150ff1867fdf809a0e8be99520aa", "data": { - "inGameID": 37 + "inGameID": 37, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "XCD", "isPrimary": true, @@ -2695,7 +2735,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 39 + "inGameID": 39, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "INF", "isPrimary": true, @@ -3078,7 +3123,12 @@ { "chartID": "85308b78350ea4b37c96ec650e260a388bcc0c72", "data": { - "inGameID": 44 + "inGameID": 44, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "XCD", "isPrimary": true, @@ -3208,7 +3258,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 47 + "inGameID": 47, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "INF", "isPrimary": true, @@ -3297,7 +3352,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 48 + "inGameID": 48, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "HVN", "isPrimary": true, @@ -3833,7 +3893,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 56 + "inGameID": 56, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "INF", "isPrimary": true, @@ -4161,7 +4226,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 60 + "inGameID": 60, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 17.9 + } }, "difficulty": "GRV", "isPrimary": true, @@ -4313,7 +4383,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 62 + "inGameID": 62, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "HVN", "isPrimary": true, @@ -4407,7 +4482,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 63 + "inGameID": 63, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "HVN", "isPrimary": true, @@ -4512,7 +4592,12 @@ { "chartID": "85d29d13bb0e441c7f3e2a67c63a4a7ffd8fda52", "data": { - "inGameID": 64 + "inGameID": 64, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "XCD", "isPrimary": true, @@ -4574,7 +4659,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 65 + "inGameID": 65, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "HVN", "isPrimary": true, @@ -4663,7 +4753,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 66 + "inGameID": 66, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "HVN", "isPrimary": true, @@ -4815,7 +4910,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 68 + "inGameID": 68, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "HVN", "isPrimary": true, @@ -4993,7 +5093,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 70 + "inGameID": 70, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "INF", "isPrimary": true, @@ -5082,7 +5187,12 @@ "text": "17A+", "value": 17.8 }, - "inGameID": 71 + "inGameID": 71, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 17.9 + } }, "difficulty": "GRV", "isPrimary": true, @@ -5239,7 +5349,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 73 + "inGameID": 73, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 17.9 + } }, "difficulty": "EXH", "isPrimary": true, @@ -5265,7 +5380,12 @@ "text": "19E", "value": 19.1 }, - "inGameID": 73 + "inGameID": 73, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 19.3 + } }, "difficulty": "INF", "isPrimary": true, @@ -5623,7 +5743,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 78 + "inGameID": 78, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "HVN", "isPrimary": true, @@ -5710,7 +5835,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 79 + "inGameID": 79, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "HVN", "isPrimary": true, @@ -6135,7 +6265,12 @@ { "chartID": "ff2a5629a2267179996f7861470310ec890a8048", "data": { - "inGameID": 85 + "inGameID": 85, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "XCD", "isPrimary": true, @@ -6391,7 +6526,12 @@ { "chartID": "62bc9f5ea5fd50aa8da5caa6db083c9d024f9d4a", "data": { - "inGameID": 88 + "inGameID": 88, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "XCD", "isPrimary": true, @@ -6601,7 +6741,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 91 + "inGameID": 91, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "HVN", "isPrimary": true, @@ -7272,7 +7417,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 101 + "inGameID": 101, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 17.9 + } }, "difficulty": "INF", "isPrimary": true, @@ -7511,7 +7661,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 104 + "inGameID": 104, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "HVN", "isPrimary": true, @@ -7616,7 +7771,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 105 + "inGameID": 105, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "VVD", "isPrimary": true, @@ -7764,7 +7924,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 107 + "inGameID": 107, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "VVD", "isPrimary": true, @@ -7829,7 +7994,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 108 + "inGameID": 108, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "GRV", "isPrimary": true, @@ -7895,7 +8065,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 109 + "inGameID": 109, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -7921,7 +8096,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 109 + "inGameID": 109, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "HVN", "isPrimary": true, @@ -8083,7 +8263,12 @@ { "chartID": "6577ee720a225249b64c52357a4d23c119ebc0b1", "data": { - "inGameID": 111 + "inGameID": 111, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "XCD", "isPrimary": true, @@ -8328,7 +8513,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 115 + "inGameID": 115, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "GRV", "isPrimary": true, @@ -8396,7 +8586,12 @@ "text": "18A - 15E", "value": 17 }, - "inGameID": 116 + "inGameID": 116, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -8422,7 +8617,12 @@ "text": "19E", "value": 19.1 }, - "inGameID": 116 + "inGameID": 116, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 19.3 + } }, "difficulty": "GRV", "isPrimary": true, @@ -8516,7 +8716,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 117 + "inGameID": 117, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "GRV", "isPrimary": true, @@ -8783,7 +8988,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 121 + "inGameID": 121, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "GRV", "isPrimary": true, @@ -8877,7 +9087,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 122 + "inGameID": 122, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "GRV", "isPrimary": true, @@ -8971,7 +9186,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 123 + "inGameID": 123, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "INF", "isPrimary": true, @@ -9065,7 +9285,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 124 + "inGameID": 124, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "INF", "isPrimary": true, @@ -9159,7 +9384,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 125 + "inGameID": 125, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "INF", "isPrimary": true, @@ -9227,7 +9457,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 126 + "inGameID": 126, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -9253,7 +9488,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 126 + "inGameID": 126, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "INF", "isPrimary": true, @@ -9405,7 +9645,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 128 + "inGameID": 128, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "GRV", "isPrimary": true, @@ -9557,7 +9802,12 @@ "text": "17A+", "value": 17.8 }, - "inGameID": 130 + "inGameID": 130, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "HVN", "isPrimary": true, @@ -9662,7 +9912,12 @@ { "chartID": "e500fd253391000e8be8232322a443e2d5f5658b", "data": { - "inGameID": 131 + "inGameID": 131, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "XCD", "isPrimary": true, @@ -9737,7 +9992,12 @@ { "chartID": "7fb4550cb92110bbaa780679893b4b15f373c3c3", "data": { - "inGameID": 132 + "inGameID": 132, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "XCD", "isPrimary": true, @@ -9859,7 +10119,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 134 + "inGameID": 134, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "INF", "isPrimary": true, @@ -10205,7 +10470,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 139 + "inGameID": 139, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "HVN", "isPrimary": true, @@ -10762,7 +11032,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 151 + "inGameID": 151, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -10788,7 +11063,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 151 + "inGameID": 151, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "HVN", "isPrimary": true, @@ -11069,7 +11349,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 155 + "inGameID": 155, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "INF", "isPrimary": true, @@ -11228,7 +11513,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 158 + "inGameID": 158, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "VVD", "isPrimary": true, @@ -11679,7 +11969,12 @@ { "chartID": "d2024517bde832edc02632d50d59c01a1fb3df32", "data": { - "inGameID": 165 + "inGameID": 165, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "XCD", "isPrimary": true, @@ -11720,7 +12015,12 @@ "text": "18D - 17F", "value": 17 }, - "inGameID": 166 + "inGameID": 166, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -11746,7 +12046,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 166 + "inGameID": 166, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "HVN", "isPrimary": true, @@ -12207,7 +12512,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 173 + "inGameID": 173, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "HVN", "isPrimary": true, @@ -12528,7 +12838,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 180 + "inGameID": 180, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "GRV", "isPrimary": true, @@ -12793,7 +13108,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 184 + "inGameID": 184, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "HVN", "isPrimary": true, @@ -14062,7 +14382,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 208 + "inGameID": 208, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -14287,7 +14612,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 211 + "inGameID": 211, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "VVD", "isPrimary": true, @@ -14432,7 +14762,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 213 + "inGameID": 213, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "VVD", "isPrimary": true, @@ -14477,7 +14812,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 214 + "inGameID": 214, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -14502,7 +14842,12 @@ "text": "19E", "value": 19.1 }, - "inGameID": 214 + "inGameID": 214, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 19.3 + } }, "difficulty": "GRV", "isPrimary": true, @@ -14672,7 +15017,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 216 + "inGameID": 216, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "VVD", "isPrimary": true, @@ -14897,7 +15247,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 220 + "inGameID": 220, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -14962,7 +15317,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 221 + "inGameID": 221, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -15007,7 +15367,12 @@ "text": "19F", "value": 19 }, - "inGameID": 221 + "inGameID": 221, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 19.1 + } }, "difficulty": "VVD", "isPrimary": true, @@ -15137,7 +15502,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 223 + "inGameID": 223, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "GRV", "isPrimary": true, @@ -15467,7 +15837,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 228 + "inGameID": 228, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "HVN", "isPrimary": true, @@ -15532,7 +15907,12 @@ "text": "17A+", "value": 17.8 }, - "inGameID": 229 + "inGameID": 229, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -15557,7 +15937,12 @@ "text": "19B", "value": 19.5 }, - "inGameID": 229 + "inGameID": 229, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 19.2 + } }, "difficulty": "HVN", "isPrimary": true, @@ -16142,7 +16527,12 @@ { "chartID": "09d3ac50d1805ce26be8dfd43c45efe395c494bf", "data": { - "inGameID": 239 + "inGameID": 239, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "XCD", "isPrimary": true, @@ -16277,7 +16667,12 @@ { "chartID": "72729d6f20d81e0d93456fc205f88f210fa582d0", "data": { - "inGameID": 241 + "inGameID": 241, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "XCD", "isPrimary": true, @@ -16497,7 +16892,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 247 + "inGameID": 247, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 17.9 + } }, "difficulty": "EXH", "isPrimary": true, @@ -16542,7 +16942,12 @@ "text": "18SS", "value": 19.5 }, - "inGameID": 247 + "inGameID": 247, + "sTier": { + "individualDifference": false, + "text": "Tier 0", + "value": 19 + } }, "difficulty": "VVD", "isPrimary": true, @@ -16672,7 +17077,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 250 + "inGameID": 250, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "GRV", "isPrimary": true, @@ -16762,7 +17172,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 251 + "inGameID": 251, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "GRV", "isPrimary": true, @@ -16852,7 +17267,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 252 + "inGameID": 252, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "HVN", "isPrimary": true, @@ -17242,7 +17662,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 258 + "inGameID": 258, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -17267,7 +17692,12 @@ "text": "19D", "value": 19.3 }, - "inGameID": 258 + "inGameID": 258, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 19.2 + } }, "difficulty": "GRV", "isPrimary": true, @@ -17332,7 +17762,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 259 + "inGameID": 259, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -17357,7 +17792,12 @@ "text": "19A", "value": 19.7 }, - "inGameID": 259 + "inGameID": 259, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 19.6 + } }, "difficulty": "HVN", "isPrimary": true, @@ -17867,7 +18307,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 267 + "inGameID": 267, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "GRV", "isPrimary": true, @@ -17997,7 +18442,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 269 + "inGameID": 269, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -18062,7 +18512,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 271 + "inGameID": 271, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -18234,7 +18689,12 @@ "text": "19E", "value": 19.1 }, - "inGameID": 273 + "inGameID": 273, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 19.1 + } }, "difficulty": "VVD", "isPrimary": true, @@ -18773,7 +19233,12 @@ { "chartID": "0917ccb7b6f982cd912eaa2fa3d0cd96049ab08c", "data": { - "inGameID": 281 + "inGameID": 281, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "XCD", "isPrimary": true, @@ -18813,7 +19278,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 282 + "inGameID": 282, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 17.9 + } }, "difficulty": "EXH", "isPrimary": true, @@ -19188,7 +19658,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 289 + "inGameID": 289, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -19228,7 +19703,12 @@ { "chartID": "834d0b23bfc944a96498c333d3d6161dff726a58", "data": { - "inGameID": 289 + "inGameID": 289, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 19.4 + } }, "difficulty": "XCD", "isPrimary": true, @@ -19618,7 +20098,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 295 + "inGameID": 295, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "VVD", "isPrimary": true, @@ -19888,7 +20373,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 299 + "inGameID": 299, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "VVD", "isPrimary": true, @@ -20223,7 +20713,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 304 + "inGameID": 304, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "VVD", "isPrimary": true, @@ -21256,7 +21751,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 322 + "inGameID": 322, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "HVN", "isPrimary": true, @@ -21356,7 +21856,12 @@ { "chartID": "770687bec477aa55d87ac4c37a54be419fa24351", "data": { - "inGameID": 323 + "inGameID": 323, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "XCD", "isPrimary": true, @@ -21396,7 +21901,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 324 + "inGameID": 324, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -21706,7 +22216,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 329 + "inGameID": 329, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -21931,7 +22446,12 @@ { "chartID": "1cb5a51db97afc8852ebb043e955225c3aeae0b0", "data": { - "inGameID": 332 + "inGameID": 332, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "XCD", "isPrimary": true, @@ -21971,7 +22491,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 333 + "inGameID": 333, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -22016,7 +22541,12 @@ "text": "18S", "value": 18.9 }, - "inGameID": 333 + "inGameID": 333, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "VVD", "isPrimary": true, @@ -22361,7 +22891,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 339 + "inGameID": 339, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -22406,7 +22941,12 @@ "text": "19B", "value": 19.5 }, - "inGameID": 339 + "inGameID": 339, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 19.1 + } }, "difficulty": "VVD", "isPrimary": true, @@ -22536,7 +23076,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 341 + "inGameID": 341, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "GRV", "isPrimary": true, @@ -22601,7 +23146,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 342 + "inGameID": 342, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -22641,7 +23191,12 @@ { "chartID": "0be59a0b3f7b7956bac1d814838ecbe6025355b6", "data": { - "inGameID": 342 + "inGameID": 342, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 19.7 + } }, "difficulty": "XCD", "isPrimary": true, @@ -22871,7 +23426,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 346 + "inGameID": 346, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -23001,7 +23561,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 348 + "inGameID": 348, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -23041,7 +23606,12 @@ { "chartID": "8ef6223712c4fc80cd9942573e748601511087d2", "data": { - "inGameID": 348 + "inGameID": 348, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "XCD", "isPrimary": true, @@ -23466,7 +24036,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 357 + "inGameID": 357, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "GRV", "isPrimary": true, @@ -23641,7 +24216,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 359 + "inGameID": 359, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "GRV", "isPrimary": true, @@ -23706,7 +24286,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 360 + "inGameID": 360, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "EXH", "isPrimary": true, @@ -23731,7 +24316,12 @@ "text": "19D", "value": 19.3 }, - "inGameID": 360 + "inGameID": 360, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 19.2 + } }, "difficulty": "GRV", "isPrimary": true, @@ -23816,7 +24406,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 361 + "inGameID": 361, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "HVN", "isPrimary": true, @@ -23881,7 +24476,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 362 + "inGameID": 362, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 17.9 + } }, "difficulty": "EXH", "isPrimary": true, @@ -23906,7 +24506,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 362 + "inGameID": 362, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "HVN", "isPrimary": true, @@ -23971,7 +24576,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 363 + "inGameID": 363, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 17.9 + } }, "difficulty": "EXH", "isPrimary": true, @@ -23996,7 +24606,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 363 + "inGameID": 363, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "GRV", "isPrimary": true, @@ -24061,7 +24676,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 364 + "inGameID": 364, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -24086,7 +24706,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 364 + "inGameID": 364, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "GRV", "isPrimary": true, @@ -24151,7 +24776,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 365 + "inGameID": 365, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -24176,7 +24806,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 365 + "inGameID": 365, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "HVN", "isPrimary": true, @@ -24241,7 +24876,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 366 + "inGameID": 366, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -24266,7 +24906,12 @@ "text": "19A", "value": 19.7 }, - "inGameID": 366 + "inGameID": 366, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 19.5 + } }, "difficulty": "GRV", "isPrimary": true, @@ -24331,7 +24976,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 367 + "inGameID": 367, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -24356,7 +25006,12 @@ "text": "19A", "value": 19.7 }, - "inGameID": 367 + "inGameID": 367, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 19.7 + } }, "difficulty": "HVN", "isPrimary": true, @@ -24441,7 +25096,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 368 + "inGameID": 368, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "GRV", "isPrimary": true, @@ -24616,7 +25276,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 370 + "inGameID": 370, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "HVN", "isPrimary": true, @@ -24701,7 +25366,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 372 + "inGameID": 372, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "GRV", "isPrimary": true, @@ -24791,7 +25461,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 373 + "inGameID": 373, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "GRV", "isPrimary": true, @@ -24856,7 +25531,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 374 + "inGameID": 374, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -24881,7 +25561,12 @@ "text": "19F", "value": 19 }, - "inGameID": 374 + "inGameID": 374, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 19.1 + } }, "difficulty": "GRV", "isPrimary": true, @@ -24966,7 +25651,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 375 + "inGameID": 375, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "GRV", "isPrimary": true, @@ -25031,7 +25721,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 376 + "inGameID": 376, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 17.9 + } }, "difficulty": "EXH", "isPrimary": true, @@ -25056,7 +25751,12 @@ "text": "19B", "value": 19.5 }, - "inGameID": 376 + "inGameID": 376, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 19.3 + } }, "difficulty": "HVN", "isPrimary": true, @@ -25396,7 +26096,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 381 + "inGameID": 381, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -25436,7 +26141,12 @@ { "chartID": "f6aecf751d27d1a3d337b6018da7eeb0a5790c36", "data": { - "inGameID": 381 + "inGameID": 381, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 19.7 + } }, "difficulty": "XCD", "isPrimary": true, @@ -25590,7 +26300,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 384 + "inGameID": 384, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -25935,7 +26650,12 @@ { "chartID": "48582ca42166e3974fe9028a0a6b57ece72bb0ee", "data": { - "inGameID": 389 + "inGameID": 389, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "XCD", "isPrimary": true, @@ -25975,7 +26695,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 390 + "inGameID": 390, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -26015,7 +26740,12 @@ { "chartID": "674f9bb7298722823419febe18eb9bb9f3ed425a", "data": { - "inGameID": 390 + "inGameID": 390, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "XCD", "isPrimary": true, @@ -26180,7 +26910,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 393 + "inGameID": 393, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -26225,7 +26960,12 @@ "text": "19D", "value": 19.3 }, - "inGameID": 393 + "inGameID": 393, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 19.1 + } }, "difficulty": "VVD", "isPrimary": true, @@ -27067,7 +27807,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 407 + "inGameID": 407, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -27132,7 +27877,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 408 + "inGameID": 408, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -27382,7 +28132,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 413 + "inGameID": 413, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -27447,7 +28202,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 414 + "inGameID": 414, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -27692,7 +28452,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 418 + "inGameID": 418, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -27822,7 +28587,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 420 + "inGameID": 420, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -28204,7 +28974,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 426 + "inGameID": 426, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "HVN", "isPrimary": true, @@ -28394,7 +29169,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 429 + "inGameID": 429, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -28598,7 +29378,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 432 + "inGameID": 432, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "INF", "isPrimary": true, @@ -28923,7 +29708,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 437 + "inGameID": 437, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -29048,7 +29838,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 439 + "inGameID": 439, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -29253,7 +30048,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 442 + "inGameID": 442, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "HVN", "isPrimary": true, @@ -29317,7 +30117,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 443 + "inGameID": 443, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -29341,7 +30146,12 @@ "text": "19C", "value": 19.4 }, - "inGameID": 443 + "inGameID": 443, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 19.5 + } }, "difficulty": "HVN", "isPrimary": true, @@ -29403,7 +30213,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 444 + "inGameID": 444, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -29427,7 +30242,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 444 + "inGameID": 444, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "HVN", "isPrimary": true, @@ -29789,7 +30609,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 450 + "inGameID": 450, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -29829,7 +30654,12 @@ { "chartID": "c083a8952b67007e5b5370de76eab0a09f494d4d", "data": { - "inGameID": 450 + "inGameID": 450, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 19.2 + } }, "difficulty": "XCD", "isPrimary": true, @@ -30290,7 +31120,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 459 + "inGameID": 459, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 17.9 + } }, "difficulty": "EXH", "isPrimary": true, @@ -30314,7 +31149,12 @@ "text": "18F", "value": 18 }, - "inGameID": 459 + "inGameID": 459, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "GRV", "isPrimary": true, @@ -30550,7 +31390,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 463 + "inGameID": 463, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -30674,7 +31519,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 465 + "inGameID": 465, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -30859,7 +31709,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 468 + "inGameID": 468, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -30981,7 +31836,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 470 + "inGameID": 470, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -31098,7 +31958,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 472 + "inGameID": 472, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -31535,7 +32400,12 @@ "text": "17A+", "value": 17.8 }, - "inGameID": 479 + "inGameID": 479, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -32393,7 +33263,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 493 + "inGameID": 493, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "INF", "isPrimary": true, @@ -32548,7 +33423,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 495 + "inGameID": 495, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -32573,7 +33453,12 @@ "text": "19D", "value": 19.3 }, - "inGameID": 495 + "inGameID": 495, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 19.2 + } }, "difficulty": "HVN", "isPrimary": true, @@ -32637,7 +33522,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 496 + "inGameID": 496, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -32762,7 +33652,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 498 + "inGameID": 498, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -32826,7 +33721,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 499 + "inGameID": 499, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -32889,7 +33789,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 500 + "inGameID": 500, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -32953,7 +33858,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 501 + "inGameID": 501, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -33267,7 +34177,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 506 + "inGameID": 506, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -33331,7 +34246,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 507 + "inGameID": 507, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 17.9 + } }, "difficulty": "EXH", "isPrimary": true, @@ -33394,7 +34314,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 508 + "inGameID": 508, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -33523,7 +34448,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 510 + "inGameID": 510, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -33561,7 +34491,12 @@ { "chartID": "c4c9db40fda17d7f202933a90e54e14d18b8e54d", "data": { - "inGameID": 510 + "inGameID": 510, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "XCD", "isPrimary": true, @@ -34274,7 +35209,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 522 + "inGameID": 522, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -34451,7 +35391,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 525 + "inGameID": 525, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -34476,7 +35421,12 @@ "text": "19E", "value": 19.1 }, - "inGameID": 525 + "inGameID": 525, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 19 + } }, "difficulty": "GRV", "isPrimary": true, @@ -34716,7 +35666,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 529 + "inGameID": 529, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -34902,7 +35857,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 532 + "inGameID": 532, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -34945,7 +35905,12 @@ "text": "19A", "value": 19.7 }, - "inGameID": 532 + "inGameID": 532, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 19.7 + } }, "difficulty": "VVD", "isPrimary": true, @@ -35107,7 +36072,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 535 + "inGameID": 535, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -35231,7 +36201,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 537 + "inGameID": 537, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -35293,7 +36268,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 538 + "inGameID": 538, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -35355,7 +36335,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 539 + "inGameID": 539, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -35418,7 +36403,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 540 + "inGameID": 540, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -35443,7 +36433,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 540 + "inGameID": 540, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "GRV", "isPrimary": true, @@ -35570,7 +36565,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 542 + "inGameID": 542, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 17.9 + } }, "difficulty": "EXH", "isPrimary": true, @@ -35595,7 +36595,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 542 + "inGameID": 542, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "GRV", "isPrimary": true, @@ -35659,7 +36664,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 543 + "inGameID": 543, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -35835,7 +36845,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 546 + "inGameID": 546, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -35897,7 +36912,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 547 + "inGameID": 547, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -35985,7 +37005,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 548 + "inGameID": 548, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "GRV", "isPrimary": true, @@ -36111,7 +37136,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 550 + "inGameID": 550, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -36173,7 +37203,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 551 + "inGameID": 551, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -36236,7 +37271,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 552 + "inGameID": 552, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -36321,7 +37361,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 553 + "inGameID": 553, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "INF", "isPrimary": true, @@ -37557,7 +38602,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 574 + "inGameID": 574, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -37752,7 +38802,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 579 + "inGameID": 579, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "GRV", "isPrimary": true, @@ -37812,7 +38867,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 580 + "inGameID": 580, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -37874,7 +38934,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 581 + "inGameID": 581, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -37993,7 +39058,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 583 + "inGameID": 583, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -38231,7 +39301,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 587 + "inGameID": 587, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -38593,7 +39668,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 593 + "inGameID": 593, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -38712,7 +39792,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 595 + "inGameID": 595, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 17.9 + } }, "difficulty": "EXH", "isPrimary": true, @@ -38831,7 +39916,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 597 + "inGameID": 597, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -38893,7 +39983,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 598 + "inGameID": 598, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 17.9 + } }, "difficulty": "EXH", "isPrimary": true, @@ -39017,7 +40112,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 600 + "inGameID": 600, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -39250,7 +40350,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 604 + "inGameID": 604, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -39369,7 +40474,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 606 + "inGameID": 606, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -39612,7 +40722,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 610 + "inGameID": 610, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -39650,7 +40765,12 @@ { "chartID": "056e6591c4d42341d872bd6c6efd07e3a082964d", "data": { - "inGameID": 610 + "inGameID": 610, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 19.7 + } }, "difficulty": "XCD", "isPrimary": true, @@ -39689,7 +40809,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 611 + "inGameID": 611, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -39789,7 +40914,12 @@ { "chartID": "e95aa8d657f2aa32c02653f183826159d2fb6deb", "data": { - "inGameID": 612 + "inGameID": 612, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "XCD", "isPrimary": true, @@ -39885,7 +41015,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 615 + "inGameID": 615, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -40009,7 +41144,12 @@ "text": "17A+", "value": 17.8 }, - "inGameID": 617 + "inGameID": 617, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -40356,7 +41496,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 623 + "inGameID": 623, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -40519,7 +41664,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 625 + "inGameID": 625, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "GRV", "isPrimary": true, @@ -40581,7 +41731,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 626 + "inGameID": 626, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -40759,7 +41914,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 629 + "inGameID": 629, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -40821,7 +41981,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 630 + "inGameID": 630, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -40942,7 +42107,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 632 + "inGameID": 632, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -40980,7 +42150,12 @@ { "chartID": "4594e57115566905f71b82bab689e76259935bee", "data": { - "inGameID": 632 + "inGameID": 632, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 19.4 + } }, "difficulty": "XCD", "isPrimary": true, @@ -41019,7 +42194,12 @@ "text": "17A+", "value": 17.8 }, - "inGameID": 633 + "inGameID": 633, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -41057,7 +42237,12 @@ { "chartID": "4662697eb7e2e6e8d2dc92f28538aa941fefc67c", "data": { - "inGameID": 633 + "inGameID": 633, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 19.5 + } }, "difficulty": "XCD", "isPrimary": true, @@ -41096,7 +42281,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 634 + "inGameID": 634, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -41134,7 +42324,12 @@ { "chartID": "a8426c4750796a6e3eea874d2a0e22188ef30686", "data": { - "inGameID": 634 + "inGameID": 634, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 19.2 + } }, "difficulty": "XCD", "isPrimary": true, @@ -41173,7 +42368,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 635 + "inGameID": 635, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "EXH", "isPrimary": true, @@ -41211,7 +42411,12 @@ { "chartID": "3cd9d2790d8f519552d404dd6b15104e83c2f3ec", "data": { - "inGameID": 635 + "inGameID": 635, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 19.9 + } }, "difficulty": "XCD", "isPrimary": true, @@ -41250,7 +42455,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 636 + "inGameID": 636, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -41274,7 +42484,12 @@ "text": "19D", "value": 19.3 }, - "inGameID": 636 + "inGameID": 636, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 19.3 + } }, "difficulty": "GRV", "isPrimary": true, @@ -41398,7 +42613,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 638 + "inGameID": 638, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -41522,7 +42742,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 640 + "inGameID": 640, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -41584,7 +42809,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 641 + "inGameID": 641, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -41646,7 +42876,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 642 + "inGameID": 642, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -41684,7 +42919,12 @@ { "chartID": "ca6a297eab6d8e797c5f8b29cfe672be7a3b3bc4", "data": { - "inGameID": 642 + "inGameID": 642, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 19.9 + } }, "difficulty": "XCD", "isPrimary": true, @@ -41847,7 +43087,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 645 + "inGameID": 645, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -42028,7 +43273,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 648 + "inGameID": 648, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -42090,7 +43340,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 649 + "inGameID": 649, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -42152,7 +43407,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 650 + "inGameID": 650, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -42190,7 +43450,12 @@ { "chartID": "12b3f56cbbb29c08c2c995fc60de39a631d15696", "data": { - "inGameID": 650 + "inGameID": 650, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "XCD", "isPrimary": true, @@ -42291,7 +43556,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 652 + "inGameID": 652, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -42353,7 +43623,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 653 + "inGameID": 653, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -42391,7 +43666,12 @@ { "chartID": "45493d5b7571eae85bf18036cd7199b152ac08ba", "data": { - "inGameID": 653 + "inGameID": 653, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 19.8 + } }, "difficulty": "XCD", "isPrimary": true, @@ -42430,7 +43710,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 654 + "inGameID": 654, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -42492,7 +43777,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 655 + "inGameID": 655, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -42616,7 +43906,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 657 + "inGameID": 657, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -42654,7 +43949,12 @@ { "chartID": "a7589ea512b4f7d178ce37267752d56cf484aa51", "data": { - "inGameID": 657 + "inGameID": 657, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 19.7 + } }, "difficulty": "XCD", "isPrimary": true, @@ -42693,7 +43993,12 @@ "text": "17A+", "value": 17.8 }, - "inGameID": 658 + "inGameID": 658, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -42834,7 +44139,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 660 + "inGameID": 660, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "GRV", "isPrimary": true, @@ -42894,7 +44204,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 661 + "inGameID": 661, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -42918,7 +44233,12 @@ "text": "18S", "value": 18.9 }, - "inGameID": 661 + "inGameID": 661, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "GRV", "isPrimary": true, @@ -43258,7 +44578,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 667 + "inGameID": 667, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -43439,7 +44764,12 @@ "text": "17A+", "value": 17.8 }, - "inGameID": 670 + "inGameID": 670, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -43739,7 +45069,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 675 + "inGameID": 675, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -43982,7 +45317,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 679 + "inGameID": 679, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -44044,7 +45384,12 @@ "text": "17A+", "value": 17.8 }, - "inGameID": 680 + "inGameID": 680, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -44106,7 +45451,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 681 + "inGameID": 681, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -44168,7 +45518,12 @@ "text": "17A+", "value": 17.8 }, - "inGameID": 682 + "inGameID": 682, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -44230,7 +45585,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 683 + "inGameID": 683, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -44316,7 +45676,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 684 + "inGameID": 684, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "GRV", "isPrimary": true, @@ -44378,7 +45743,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 685 + "inGameID": 685, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -44621,7 +45991,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 689 + "inGameID": 689, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -44740,7 +46115,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 691 + "inGameID": 691, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -44826,7 +46206,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 692 + "inGameID": 692, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -44850,7 +46235,12 @@ "text": "19B", "value": 19.5 }, - "inGameID": 692 + "inGameID": 692, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 19.5 + } }, "difficulty": "GRV", "isPrimary": true, @@ -44912,7 +46302,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 693 + "inGameID": 693, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -44936,7 +46331,12 @@ "text": "19A", "value": 19.7 }, - "inGameID": 693 + "inGameID": 693, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 19.6 + } }, "difficulty": "GRV", "isPrimary": true, @@ -44998,7 +46398,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 694 + "inGameID": 694, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -45022,7 +46427,12 @@ "text": "19C", "value": 19.4 }, - "inGameID": 694 + "inGameID": 694, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 19.2 + } }, "difficulty": "GRV", "isPrimary": true, @@ -45083,7 +46493,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 695 + "inGameID": 695, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -45106,7 +46521,12 @@ "text": "19D", "value": 19.3 }, - "inGameID": 695 + "inGameID": 695, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 19.7 + } }, "difficulty": "GRV", "isPrimary": true, @@ -45165,7 +46585,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 696 + "inGameID": 696, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -45224,7 +46649,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 697 + "inGameID": 697, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -45284,7 +46714,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 698 + "inGameID": 698, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -45346,7 +46781,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 699 + "inGameID": 699, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -45646,7 +47086,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 704 + "inGameID": 704, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -45670,7 +47115,12 @@ "text": "19D", "value": 19.3 }, - "inGameID": 704 + "inGameID": 704, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 19.1 + } }, "difficulty": "HVN", "isPrimary": true, @@ -45731,7 +47181,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 705 + "inGameID": 705, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -45754,7 +47209,12 @@ "text": "19E", "value": 19.1 }, - "inGameID": 705 + "inGameID": 705, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 19 + } }, "difficulty": "HVN", "isPrimary": true, @@ -45813,7 +47273,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 706 + "inGameID": 706, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -45836,7 +47301,12 @@ "text": "19D", "value": 19.3 }, - "inGameID": 706 + "inGameID": 706, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 19 + } }, "difficulty": "HVN", "isPrimary": true, @@ -45895,7 +47365,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 707 + "inGameID": 707, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -45918,7 +47393,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 707 + "inGameID": 707, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "HVN", "isPrimary": true, @@ -45978,7 +47458,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 708 + "inGameID": 708, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -46040,7 +47525,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 709 + "inGameID": 709, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -46064,7 +47554,12 @@ "text": "19F", "value": 19 }, - "inGameID": 709 + "inGameID": 709, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 19 + } }, "difficulty": "GRV", "isPrimary": true, @@ -46216,7 +47711,12 @@ { "chartID": "1ac9baec926329d444cd7b36364cd4f3a9e323de", "data": { - "inGameID": 711 + "inGameID": 711, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "XCD", "isPrimary": true, @@ -46255,7 +47755,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 712 + "inGameID": 712, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -46455,7 +47960,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 715 + "inGameID": 715, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "GRV", "isPrimary": true, @@ -46517,7 +48027,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 716 + "inGameID": 716, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -46579,7 +48094,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 717 + "inGameID": 717, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -46641,7 +48161,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 718 + "inGameID": 718, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -46765,7 +48290,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 720 + "inGameID": 720, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -46884,7 +48414,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 722 + "inGameID": 722, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -47060,7 +48595,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 725 + "inGameID": 725, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -47370,7 +48910,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 730 + "inGameID": 730, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -47432,7 +48977,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 731 + "inGameID": 731, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -47556,7 +49106,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 733 + "inGameID": 733, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -47675,7 +49230,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 735 + "inGameID": 735, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -47970,7 +49530,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 740 + "inGameID": 740, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -48032,7 +49597,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 741 + "inGameID": 741, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -48156,7 +49726,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 743 + "inGameID": 743, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -48337,7 +49912,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 746 + "inGameID": 746, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -49046,7 +50626,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 758 + "inGameID": 758, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -50003,7 +51588,12 @@ { "chartID": "d7e8e92d7577558a42cae943034f5edcfb110626", "data": { - "inGameID": 774 + "inGameID": 774, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "XCD", "isPrimary": true, @@ -50099,7 +51689,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 776 + "inGameID": 776, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -50275,7 +51870,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 779 + "inGameID": 779, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -50483,7 +52083,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 782 + "inGameID": 782, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -50719,7 +52324,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 786 + "inGameID": 786, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -50757,7 +52367,12 @@ { "chartID": "dbb9f5cef3a6ac179332e32bc1ae5c269c6af9a9", "data": { - "inGameID": 786 + "inGameID": 786, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "XCD", "isPrimary": true, @@ -50796,7 +52411,12 @@ "text": "17A+", "value": 17.8 }, - "inGameID": 787 + "inGameID": 787, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -50834,7 +52454,12 @@ { "chartID": "069681b4b6c65f56d7e41979e2735213849eed8e", "data": { - "inGameID": 787 + "inGameID": 787, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "XCD", "isPrimary": true, @@ -50873,7 +52498,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 788 + "inGameID": 788, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -50911,7 +52541,12 @@ { "chartID": "6b55439540fea88815bd7f6436cc7ac0dee81baa", "data": { - "inGameID": 788 + "inGameID": 788, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "XCD", "isPrimary": true, @@ -50950,7 +52585,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 789 + "inGameID": 789, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -50988,7 +52628,12 @@ { "chartID": "3ef1448f84ff79f57870a7b66d7aa5c9e55d52d7", "data": { - "inGameID": 789 + "inGameID": 789, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 19.2 + } }, "difficulty": "XCD", "isPrimary": true, @@ -51027,7 +52672,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 790 + "inGameID": 790, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -51065,7 +52715,12 @@ { "chartID": "68a80c6b1b4b045b958cc7f1e080f00cf35ae77b", "data": { - "inGameID": 790 + "inGameID": 790, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 19.3 + } }, "difficulty": "XCD", "isPrimary": true, @@ -51104,7 +52759,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 791 + "inGameID": 791, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -51128,7 +52788,12 @@ "text": "20B", "value": 20.1 }, - "inGameID": 791 + "inGameID": 791, + "sTier": { + "individualDifference": false, + "text": "Tier 0-", + "value": 20 + } }, "difficulty": "GRV", "isPrimary": true, @@ -51190,7 +52855,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 792 + "inGameID": 792, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -51252,7 +52922,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 793 + "inGameID": 793, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "EXH", "isPrimary": true, @@ -51314,7 +52989,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 794 + "inGameID": 794, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -51376,7 +53056,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 795 + "inGameID": 795, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -51438,7 +53123,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 796 + "inGameID": 796, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -51500,7 +53190,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 797 + "inGameID": 797, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -51562,7 +53257,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 798 + "inGameID": 798, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -51738,7 +53438,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 801 + "inGameID": 801, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -51800,7 +53505,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 802 + "inGameID": 802, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -51862,7 +53572,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 803 + "inGameID": 803, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -51924,7 +53639,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 804 + "inGameID": 804, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -51986,7 +53706,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 805 + "inGameID": 805, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -52048,7 +53773,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 806 + "inGameID": 806, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -52110,7 +53840,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 807 + "inGameID": 807, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -52172,7 +53907,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 808 + "inGameID": 808, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -52234,7 +53974,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 809 + "inGameID": 809, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -52296,7 +54041,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 810 + "inGameID": 810, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -52358,7 +54108,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 811 + "inGameID": 811, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -52539,7 +54294,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 814 + "inGameID": 814, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -52658,7 +54418,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 816 + "inGameID": 816, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -52720,7 +54485,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 817 + "inGameID": 817, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -52782,7 +54552,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 818 + "inGameID": 818, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -52844,7 +54619,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 819 + "inGameID": 819, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -53121,7 +54901,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 823 + "inGameID": 823, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -53183,7 +54968,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 824 + "inGameID": 824, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -53207,7 +54997,12 @@ "text": "19A+", "value": 19.9 }, - "inGameID": 824 + "inGameID": 824, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 19.6 + } }, "difficulty": "GRV", "isPrimary": true, @@ -53286,7 +55081,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 825 + "inGameID": 825, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "GRV", "isPrimary": true, @@ -53594,7 +55394,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 829 + "inGameID": 829, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "GRV", "isPrimary": true, @@ -53680,7 +55485,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 830 + "inGameID": 830, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "GRV", "isPrimary": true, @@ -53766,7 +55576,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 831 + "inGameID": 831, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "GRV", "isPrimary": true, @@ -53827,7 +55642,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 832 + "inGameID": 832, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -53886,7 +55706,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 833 + "inGameID": 833, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -53963,7 +55788,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 834 + "inGameID": 834, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -54023,7 +55853,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 835 + "inGameID": 835, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -54085,7 +55920,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 836 + "inGameID": 836, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -54147,7 +55987,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 837 + "inGameID": 837, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -54271,7 +56116,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 839 + "inGameID": 839, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -54414,7 +56264,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 842 + "inGameID": 842, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -54452,7 +56307,12 @@ { "chartID": "e38f5e16b3cb78028c317d329beb860a058f9772", "data": { - "inGameID": 842 + "inGameID": 842, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "XCD", "isPrimary": true, @@ -54724,7 +56584,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 847 + "inGameID": 847, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -54786,7 +56651,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 848 + "inGameID": 848, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -55106,7 +56976,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 853 + "inGameID": 853, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -55406,7 +57281,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 858 + "inGameID": 858, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -55712,7 +57592,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 863 + "inGameID": 863, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -55942,7 +57827,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 867 + "inGameID": 867, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -56175,7 +58065,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 871 + "inGameID": 871, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -56213,7 +58108,12 @@ { "chartID": "331b02b417de66f1afafa4d844c8f6897796bec4", "data": { - "inGameID": 871 + "inGameID": 871, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "XCD", "isPrimary": true, @@ -56290,7 +58190,12 @@ { "chartID": "43ba9a2df6ea45ffa863f6bda19ae0a983992174", "data": { - "inGameID": 872 + "inGameID": 872, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "XCD", "isPrimary": true, @@ -56328,7 +58233,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 873 + "inGameID": 873, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -56502,7 +58412,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 876 + "inGameID": 876, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -56581,7 +58496,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 877 + "inGameID": 877, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -56807,7 +58727,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 880 + "inGameID": 880, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -56884,7 +58809,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 881 + "inGameID": 881, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -57172,7 +59102,12 @@ "text": "17A+", "value": 17.8 }, - "inGameID": 885 + "inGameID": 885, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -57403,7 +59338,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 888 + "inGameID": 888, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -57480,7 +59420,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 889 + "inGameID": 889, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -57771,7 +59716,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 893 + "inGameID": 893, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -58274,7 +60224,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 900 + "inGameID": 900, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "GRV", "isPrimary": true, @@ -58422,7 +60377,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 902 + "inGameID": 902, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "GRV", "isPrimary": true, @@ -58727,7 +60687,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 907 + "inGameID": 907, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -58813,7 +60778,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 908 + "inGameID": 908, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "GRV", "isPrimary": true, @@ -58899,7 +60869,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 909 + "inGameID": 909, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "GRV", "isPrimary": true, @@ -58985,7 +60960,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 910 + "inGameID": 910, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "GRV", "isPrimary": true, @@ -59071,7 +61051,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 911 + "inGameID": 911, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "GRV", "isPrimary": true, @@ -59157,7 +61142,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 912 + "inGameID": 912, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "GRV", "isPrimary": true, @@ -59219,7 +61209,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 913 + "inGameID": 913, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -59243,7 +61238,12 @@ "text": "19F", "value": 19 }, - "inGameID": 913 + "inGameID": 913, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 19.2 + } }, "difficulty": "GRV", "isPrimary": true, @@ -59305,7 +61305,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 914 + "inGameID": 914, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -59329,7 +61334,12 @@ "text": "19E", "value": 19.1 }, - "inGameID": 914 + "inGameID": 914, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 19.2 + } }, "difficulty": "GRV", "isPrimary": true, @@ -59391,7 +61401,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 915 + "inGameID": 915, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -59415,7 +61430,12 @@ "text": "19A", "value": 19.7 }, - "inGameID": 915 + "inGameID": 915, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 19.8 + } }, "difficulty": "GRV", "isPrimary": true, @@ -59558,7 +61578,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 917 + "inGameID": 917, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "GRV", "isPrimary": true, @@ -59644,7 +61669,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 918 + "inGameID": 918, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "GRV", "isPrimary": true, @@ -59725,7 +61755,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 919 + "inGameID": 919, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "GRV", "isPrimary": true, @@ -59806,7 +61841,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 920 + "inGameID": 920, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "GRV", "isPrimary": true, @@ -59887,7 +61927,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 921 + "inGameID": 921, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "GRV", "isPrimary": true, @@ -59949,7 +61994,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 922 + "inGameID": 922, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "EXH", "isPrimary": true, @@ -59973,7 +62023,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 922 + "inGameID": 922, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "GRV", "isPrimary": true, @@ -60073,7 +62128,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 923 + "inGameID": 923, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "VVD", "isPrimary": true, @@ -60115,7 +62175,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 924 + "inGameID": 924, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -60175,7 +62240,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 925 + "inGameID": 925, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -60294,7 +62364,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 927 + "inGameID": 927, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -60318,7 +62393,12 @@ "text": "19E", "value": 19.1 }, - "inGameID": 927 + "inGameID": 927, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 19 + } }, "difficulty": "HVN", "isPrimary": true, @@ -60397,7 +62477,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 928 + "inGameID": 928, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -60479,7 +62564,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 929 + "inGameID": 929, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "GRV", "isPrimary": true, @@ -60638,7 +62728,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 931 + "inGameID": 931, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -60786,7 +62881,12 @@ "text": "17F-", "value": 17 }, - "inGameID": 933 + "inGameID": 933, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -60932,7 +63032,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 935 + "inGameID": 935, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -61151,7 +63256,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 938 + "inGameID": 938, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -61209,7 +63319,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 939 + "inGameID": 939, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -61359,7 +63474,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 941 + "inGameID": 941, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -61702,7 +63822,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 946 + "inGameID": 946, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -61775,7 +63900,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 947 + "inGameID": 947, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -62074,7 +64204,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 951 + "inGameID": 951, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "VVD", "isPrimary": true, @@ -62117,7 +64252,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 952 + "inGameID": 952, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -62179,7 +64319,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 953 + "inGameID": 953, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -62258,7 +64403,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 954 + "inGameID": 954, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -62405,7 +64555,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 956 + "inGameID": 956, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -62701,7 +64856,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 960 + "inGameID": 960, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -62776,7 +64936,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 961 + "inGameID": 961, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -62853,7 +65018,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 962 + "inGameID": 962, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -62930,7 +65100,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 963 + "inGameID": 963, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -63012,7 +65187,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 964 + "inGameID": 964, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -63089,7 +65269,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 965 + "inGameID": 965, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -63166,7 +65351,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 966 + "inGameID": 966, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -63243,7 +65433,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 967 + "inGameID": 967, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -63320,7 +65515,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 968 + "inGameID": 968, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -63397,7 +65597,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 969 + "inGameID": 969, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -63474,7 +65679,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 970 + "inGameID": 970, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -63556,7 +65766,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 971 + "inGameID": 971, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -63633,7 +65848,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 972 + "inGameID": 972, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -63859,7 +66079,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 975 + "inGameID": 975, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "GRV", "isPrimary": true, @@ -64013,7 +66238,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 977 + "inGameID": 977, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "GRV", "isPrimary": true, @@ -64090,7 +66320,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 978 + "inGameID": 978, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -64167,7 +66402,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 979 + "inGameID": 979, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "GRV", "isPrimary": true, @@ -64249,7 +66489,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 980 + "inGameID": 980, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -64326,7 +66571,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 981 + "inGameID": 981, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -64403,7 +66653,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 982 + "inGameID": 982, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -64480,7 +66735,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 983 + "inGameID": 983, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -64629,7 +66889,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 985 + "inGameID": 985, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -64706,7 +66971,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 986 + "inGameID": 986, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -64855,7 +67125,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 988 + "inGameID": 988, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -64932,7 +67207,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 989 + "inGameID": 989, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -65081,7 +67361,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 991 + "inGameID": 991, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -65158,7 +67443,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 992 + "inGameID": 992, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -65235,7 +67525,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 993 + "inGameID": 993, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -65312,7 +67607,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 994 + "inGameID": 994, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -65389,7 +67689,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 995 + "inGameID": 995, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -65620,7 +67925,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 998 + "inGameID": 998, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -66005,7 +68315,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1003 + "inGameID": 1003, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -66231,7 +68546,12 @@ "text": "17F-", "value": 17 }, - "inGameID": 1006 + "inGameID": 1006, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -66308,7 +68628,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1007 + "inGameID": 1007, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -66385,7 +68710,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1008 + "inGameID": 1008, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -66462,7 +68792,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1009 + "inGameID": 1009, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -66539,7 +68874,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1010 + "inGameID": 1010, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -66616,7 +68956,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1011 + "inGameID": 1011, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -66693,7 +69038,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1012 + "inGameID": 1012, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -66770,7 +69120,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1013 + "inGameID": 1013, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -66919,7 +69274,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1015 + "inGameID": 1015, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -67073,7 +69433,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1017 + "inGameID": 1017, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -67150,7 +69515,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 1018 + "inGameID": 1018, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -67304,7 +69674,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1020 + "inGameID": 1020, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -67381,7 +69756,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1021 + "inGameID": 1021, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -67458,7 +69838,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1022 + "inGameID": 1022, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -67535,7 +69920,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 1023 + "inGameID": 1023, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -67617,7 +70007,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 1024 + "inGameID": 1024, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -67699,7 +70094,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1025 + "inGameID": 1025, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -67776,7 +70176,12 @@ "text": "17F-", "value": 17 }, - "inGameID": 1026 + "inGameID": 1026, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -67853,7 +70258,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1027 + "inGameID": 1027, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -67912,7 +70322,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 1028 + "inGameID": 1028, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -67935,7 +70350,12 @@ "text": "20B", "value": 20.1 }, - "inGameID": 1028 + "inGameID": 1028, + "sTier": { + "individualDifference": false, + "text": "Tier 0-", + "value": 20 + } }, "difficulty": "MXM", "isPrimary": true, @@ -68012,7 +70432,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1029 + "inGameID": 1029, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -68094,7 +70519,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1030 + "inGameID": 1030, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -68176,7 +70606,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1031 + "inGameID": 1031, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -68235,7 +70670,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 1032 + "inGameID": 1032, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "EXH", "isPrimary": true, @@ -68258,7 +70698,12 @@ "text": "19F", "value": 19 }, - "inGameID": 1032 + "inGameID": 1032, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 19 + } }, "difficulty": "MXM", "isPrimary": true, @@ -68317,7 +70762,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1033 + "inGameID": 1033, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -68340,7 +70790,12 @@ "text": "19F", "value": 19 }, - "inGameID": 1033 + "inGameID": 1033, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 19.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -68417,7 +70872,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1034 + "inGameID": 1034, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -68499,7 +70959,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1035 + "inGameID": 1035, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -68558,7 +71023,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 1036 + "inGameID": 1036, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -68581,7 +71051,12 @@ "text": "20B", "value": 20.1 }, - "inGameID": 1036 + "inGameID": 1036, + "sTier": { + "individualDifference": false, + "text": "Tier 0-", + "value": 20 + } }, "difficulty": "MXM", "isPrimary": true, @@ -68663,7 +71138,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1037 + "inGameID": 1037, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -68722,7 +71202,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1038 + "inGameID": 1038, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -68745,7 +71230,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1038 + "inGameID": 1038, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -68822,7 +71312,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1039 + "inGameID": 1039, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -68899,7 +71394,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1040 + "inGameID": 1040, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -68976,7 +71476,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1041 + "inGameID": 1041, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -69053,7 +71558,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1042 + "inGameID": 1042, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -69135,7 +71645,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1043 + "inGameID": 1043, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -69217,7 +71732,12 @@ "text": "19F", "value": 19 }, - "inGameID": 1044 + "inGameID": 1044, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 19 + } }, "difficulty": "MXM", "isPrimary": true, @@ -69294,7 +71814,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1045 + "inGameID": 1045, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -69371,7 +71896,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1046 + "inGameID": 1046, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -69448,7 +71978,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1047 + "inGameID": 1047, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -69607,7 +72142,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1049 + "inGameID": 1049, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -69684,7 +72224,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 1050 + "inGameID": 1050, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -69761,7 +72306,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1051 + "inGameID": 1051, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -69838,7 +72388,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1052 + "inGameID": 1052, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -69915,7 +72470,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1053 + "inGameID": 1053, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -70046,7 +72606,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1055 + "inGameID": 1055, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -70069,7 +72634,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 1055 + "inGameID": 1055, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -70292,7 +72862,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1058 + "inGameID": 1058, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -70351,7 +72926,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1059 + "inGameID": 1059, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -70374,7 +72954,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1059 + "inGameID": 1059, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -70451,7 +73036,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 1060 + "inGameID": 1060, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -70528,7 +73118,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 1061 + "inGameID": 1061, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -70610,7 +73205,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1062 + "inGameID": 1062, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -70914,7 +73514,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1066 + "inGameID": 1066, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -71062,7 +73667,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1068 + "inGameID": 1068, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -71208,7 +73818,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1070 + "inGameID": 1070, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -71281,7 +73896,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1071 + "inGameID": 1071, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -71356,7 +73976,12 @@ "text": "18A - 18D", "value": 18 }, - "inGameID": 1072 + "inGameID": 1072, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -71582,7 +74207,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1075 + "inGameID": 1075, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -71813,7 +74443,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1078 + "inGameID": 1078, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -72044,7 +74679,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1081 + "inGameID": 1081, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -72270,7 +74910,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 1084 + "inGameID": 1084, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -72640,7 +75285,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1089 + "inGameID": 1089, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -72715,7 +75365,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1090 + "inGameID": 1090, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -72792,7 +75447,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1091 + "inGameID": 1091, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -73023,7 +75683,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1094 + "inGameID": 1094, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -73177,7 +75842,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 1096 + "inGameID": 1096, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -73254,7 +75924,12 @@ "text": "18F", "value": 18 }, - "inGameID": 1097 + "inGameID": 1097, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -73331,7 +76006,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1098 + "inGameID": 1098, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -73390,7 +76070,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1099 + "inGameID": 1099, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -73413,7 +76098,12 @@ "text": "20A", "value": 20.3 }, - "inGameID": 1099 + "inGameID": 1099, + "sTier": { + "individualDifference": false, + "text": "Tier 0+", + "value": 20.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -73472,7 +76162,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1100 + "inGameID": 1100, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -73495,7 +76190,12 @@ "text": "20A", "value": 20.3 }, - "inGameID": 1100 + "inGameID": 1100, + "sTier": { + "individualDifference": false, + "text": "Tier 0-", + "value": 20 + } }, "difficulty": "MXM", "isPrimary": true, @@ -73554,7 +76254,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1101 + "inGameID": 1101, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -73577,7 +76282,12 @@ "text": "19D", "value": 19.3 }, - "inGameID": 1101 + "inGameID": 1101, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 19.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -73636,7 +76346,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1102 + "inGameID": 1102, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -73659,7 +76374,12 @@ "text": "19E", "value": 19.1 }, - "inGameID": 1102 + "inGameID": 1102, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 19 + } }, "difficulty": "MXM", "isPrimary": true, @@ -73718,7 +76438,12 @@ "text": "17A+", "value": 17.8 }, - "inGameID": 1103 + "inGameID": 1103, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 17.9 + } }, "difficulty": "EXH", "isPrimary": true, @@ -73741,7 +76466,12 @@ "text": "19S", "value": 20 }, - "inGameID": 1103 + "inGameID": 1103, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 19.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -73800,7 +76530,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1104 + "inGameID": 1104, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -73823,7 +76558,12 @@ "text": "19B", "value": 19.5 }, - "inGameID": 1104 + "inGameID": 1104, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 19.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -73905,7 +76645,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1105 + "inGameID": 1105, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -73987,7 +76732,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 1106 + "inGameID": 1106, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -74069,7 +76819,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1107 + "inGameID": 1107, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -74151,7 +76906,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1108 + "inGameID": 1108, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -74228,7 +76988,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1109 + "inGameID": 1109, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -74450,7 +77215,12 @@ "text": "17F-", "value": 17 }, - "inGameID": 1112 + "inGameID": 1112, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -74600,7 +77370,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1114 + "inGameID": 1114, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -74836,7 +77611,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 1117 + "inGameID": 1117, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -74911,7 +77691,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1118 + "inGameID": 1118, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -74984,7 +77769,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 1119 + "inGameID": 1119, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -75057,7 +77847,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1120 + "inGameID": 1120, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -75137,7 +77932,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1121 + "inGameID": 1121, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -75513,7 +78313,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1126 + "inGameID": 1126, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -75667,7 +78472,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1128 + "inGameID": 1128, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -75742,7 +78552,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1129 + "inGameID": 1129, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -75813,7 +78628,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1130 + "inGameID": 1130, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -75953,7 +78773,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1132 + "inGameID": 1132, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -76024,7 +78849,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1133 + "inGameID": 1133, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -76097,7 +78927,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 1134 + "inGameID": 1134, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -76174,7 +79009,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1135 + "inGameID": 1135, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -76233,7 +79073,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1136 + "inGameID": 1136, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -76256,7 +79101,12 @@ "text": "19C", "value": 19.4 }, - "inGameID": 1136 + "inGameID": 1136, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 19.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -76331,7 +79181,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1137 + "inGameID": 1137, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -76404,7 +79259,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1138 + "inGameID": 1138, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -76477,7 +79337,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1139 + "inGameID": 1139, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -76552,7 +79417,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1140 + "inGameID": 1140, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -76629,7 +79499,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 1141 + "inGameID": 1141, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -76706,7 +79581,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1142 + "inGameID": 1142, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -76783,7 +79663,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1143 + "inGameID": 1143, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -76865,7 +79750,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1144 + "inGameID": 1144, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -76947,7 +79837,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1145 + "inGameID": 1145, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -77024,7 +79919,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1146 + "inGameID": 1146, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -77101,7 +80001,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 1147 + "inGameID": 1147, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 17.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -77160,7 +80065,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1148 + "inGameID": 1148, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -77183,7 +80093,12 @@ "text": "19C", "value": 19.4 }, - "inGameID": 1148 + "inGameID": 1148, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 19.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -77260,7 +80175,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1149 + "inGameID": 1149, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -77319,7 +80239,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 1150 + "inGameID": 1150, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -77342,7 +80267,12 @@ "text": "19A+", "value": 19.9 }, - "inGameID": 1150 + "inGameID": 1150, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 19.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -77419,7 +80349,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1151 + "inGameID": 1151, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -77496,7 +80431,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 1152 + "inGameID": 1152, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -77804,7 +80744,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1156 + "inGameID": 1156, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -77881,7 +80826,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1157 + "inGameID": 1157, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -77958,7 +80908,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1158 + "inGameID": 1158, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -78189,7 +81144,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1161 + "inGameID": 1161, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -78266,7 +81226,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 1162 + "inGameID": 1162, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -78343,7 +81308,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1163 + "inGameID": 1163, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -78420,7 +81390,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1164 + "inGameID": 1164, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -78497,7 +81472,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 1165 + "inGameID": 1165, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -78579,7 +81559,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1166 + "inGameID": 1166, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -78656,7 +81641,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 1167 + "inGameID": 1167, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -78887,7 +81877,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1170 + "inGameID": 1170, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -78964,7 +81959,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 1171 + "inGameID": 1171, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -79041,7 +82041,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1172 + "inGameID": 1172, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -79118,7 +82123,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 1173 + "inGameID": 1173, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -79195,7 +82205,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1174 + "inGameID": 1174, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -79277,7 +82292,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1175 + "inGameID": 1175, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -79336,7 +82356,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1176 + "inGameID": 1176, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -79359,7 +82384,12 @@ "text": "19B", "value": 19.5 }, - "inGameID": 1176 + "inGameID": 1176, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 19.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -79418,7 +82448,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1177 + "inGameID": 1177, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -79441,7 +82476,12 @@ "text": "19B", "value": 19.5 }, - "inGameID": 1177 + "inGameID": 1177, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 19.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -79500,7 +82540,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 1178 + "inGameID": 1178, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -79523,7 +82568,12 @@ "text": "19C", "value": 19.4 }, - "inGameID": 1178 + "inGameID": 1178, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 19.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -79605,7 +82655,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1179 + "inGameID": 1179, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -79682,7 +82737,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1180 + "inGameID": 1180, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -79759,7 +82819,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1181 + "inGameID": 1181, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -79836,7 +82901,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1183 + "inGameID": 1183, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -79913,7 +82983,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1184 + "inGameID": 1184, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -79972,7 +83047,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1185 + "inGameID": 1185, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -79995,7 +83075,12 @@ "text": "20A", "value": 20.3 }, - "inGameID": 1185 + "inGameID": 1185, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 19.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -80072,7 +83157,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 1186 + "inGameID": 1186, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -80149,7 +83239,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1187 + "inGameID": 1187, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -80208,7 +83303,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1188 + "inGameID": 1188, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -80231,7 +83331,12 @@ "text": "19A", "value": 19.7 }, - "inGameID": 1188 + "inGameID": 1188, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 19.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -80290,7 +83395,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1189 + "inGameID": 1189, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -80313,7 +83423,12 @@ "text": "19B", "value": 19.5 }, - "inGameID": 1189 + "inGameID": 1189, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 19.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -80395,7 +83510,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1190 + "inGameID": 1190, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -80477,7 +83597,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1191 + "inGameID": 1191, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -80559,7 +83684,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1192 + "inGameID": 1192, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -80641,7 +83771,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1193 + "inGameID": 1193, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -80718,7 +83853,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1194 + "inGameID": 1194, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -80800,7 +83940,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1195 + "inGameID": 1195, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -80882,7 +84027,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1196 + "inGameID": 1196, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -80964,7 +84114,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1197 + "inGameID": 1197, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -81041,7 +84196,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1198 + "inGameID": 1198, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -81123,7 +84283,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1199 + "inGameID": 1199, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -81205,7 +84370,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1200 + "inGameID": 1200, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -81282,7 +84452,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1201 + "inGameID": 1201, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -81359,7 +84534,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1202 + "inGameID": 1202, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -81436,7 +84616,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1203 + "inGameID": 1203, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -81513,7 +84698,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1204 + "inGameID": 1204, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -81590,7 +84780,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1205 + "inGameID": 1205, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -81667,7 +84862,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1206 + "inGameID": 1206, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -81744,7 +84944,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1207 + "inGameID": 1207, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -81821,7 +85026,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1208 + "inGameID": 1208, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -81898,7 +85108,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1209 + "inGameID": 1209, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -82057,7 +85272,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1211 + "inGameID": 1211, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -82134,7 +85354,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1212 + "inGameID": 1212, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -82211,7 +85436,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1213 + "inGameID": 1213, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -82288,7 +85518,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1214 + "inGameID": 1214, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -82365,7 +85600,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1215 + "inGameID": 1215, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -82447,7 +85687,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1216 + "inGameID": 1216, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -82524,7 +85769,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1217 + "inGameID": 1217, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -82601,7 +85851,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1218 + "inGameID": 1218, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -82701,7 +85956,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1220 + "inGameID": 1220, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "GRV", "isPrimary": true, @@ -82760,7 +86020,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1221 + "inGameID": 1221, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -82783,7 +86048,12 @@ "text": "19S - 19E", "value": 19 }, - "inGameID": 1221 + "inGameID": 1221, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 19.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -82865,7 +86135,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 1222 + "inGameID": 1222, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -82940,7 +86215,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1223 + "inGameID": 1223, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -83015,7 +86295,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1224 + "inGameID": 1224, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -83092,7 +86377,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1225 + "inGameID": 1225, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -83169,7 +86459,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 1226 + "inGameID": 1226, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -83323,7 +86618,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1228 + "inGameID": 1228, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -83477,7 +86777,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1230 + "inGameID": 1230, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -83554,7 +86859,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1231 + "inGameID": 1231, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -83785,7 +87095,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1235 + "inGameID": 1235, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -83939,7 +87254,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1237 + "inGameID": 1237, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -84016,7 +87336,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 1238 + "inGameID": 1238, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -84098,7 +87423,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1239 + "inGameID": 1239, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -84180,7 +87510,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 1240 + "inGameID": 1240, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -84411,7 +87746,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 1243 + "inGameID": 1243, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -84493,7 +87833,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1244 + "inGameID": 1244, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -84647,7 +87992,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1246 + "inGameID": 1246, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -84724,7 +88074,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1247 + "inGameID": 1247, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -84801,7 +88156,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1248 + "inGameID": 1248, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -84955,7 +88315,12 @@ "text": "18F", "value": 18 }, - "inGameID": 1250 + "inGameID": 1250, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -85032,7 +88397,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1251 + "inGameID": 1251, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -85109,7 +88479,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1252 + "inGameID": 1252, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -85191,7 +88566,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1253 + "inGameID": 1253, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -85268,7 +88648,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1254 + "inGameID": 1254, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -85345,7 +88730,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 1255 + "inGameID": 1255, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -85499,7 +88889,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1257 + "inGameID": 1257, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -85581,7 +88976,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1258 + "inGameID": 1258, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -85640,7 +89040,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 1260 + "inGameID": 1260, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "EXH", "isPrimary": true, @@ -85663,7 +89068,12 @@ "text": "19A", "value": 19.7 }, - "inGameID": 1260 + "inGameID": 1260, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 19.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -85740,7 +89150,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1261 + "inGameID": 1261, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -85817,7 +89232,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1262 + "inGameID": 1262, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -85894,7 +89314,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1263 + "inGameID": 1263, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -85971,7 +89396,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 1264 + "inGameID": 1264, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -86048,7 +89478,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1265 + "inGameID": 1265, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -86207,7 +89642,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1267 + "inGameID": 1267, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -86284,7 +89724,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1268 + "inGameID": 1268, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -86361,7 +89806,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1269 + "inGameID": 1269, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -86420,7 +89870,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1270 + "inGameID": 1270, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -86443,7 +89898,12 @@ "text": "20A", "value": 20.3 }, - "inGameID": 1270 + "inGameID": 1270, + "sTier": { + "individualDifference": false, + "text": "Tier 0-", + "value": 20 + } }, "difficulty": "MXM", "isPrimary": true, @@ -86502,7 +89962,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1271 + "inGameID": 1271, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -86525,7 +89990,12 @@ "text": "19A", "value": 19.7 }, - "inGameID": 1271 + "inGameID": 1271, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 19.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -86584,7 +90054,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1272 + "inGameID": 1272, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -86607,7 +90082,12 @@ "text": "19B", "value": 19.5 }, - "inGameID": 1272 + "inGameID": 1272, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 19.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -86666,7 +90146,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1273 + "inGameID": 1273, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -86689,7 +90174,12 @@ "text": "19B", "value": 19.5 }, - "inGameID": 1273 + "inGameID": 1273, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 19.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -86766,7 +90256,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1274 + "inGameID": 1274, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -86848,7 +90343,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1275 + "inGameID": 1275, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -86930,7 +90430,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 1276 + "inGameID": 1276, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -87012,7 +90517,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1277 + "inGameID": 1277, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -87089,7 +90599,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 1278 + "inGameID": 1278, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -87166,7 +90681,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1279 + "inGameID": 1279, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -87243,7 +90763,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1280 + "inGameID": 1280, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -87320,7 +90845,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1281 + "inGameID": 1281, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -87397,7 +90927,12 @@ "text": "18F", "value": 18 }, - "inGameID": 1282 + "inGameID": 1282, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "GRV", "isPrimary": true, @@ -87474,7 +91009,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 1283 + "inGameID": 1283, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -87551,7 +91091,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1284 + "inGameID": 1284, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -87703,7 +91248,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1286 + "inGameID": 1286, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -87776,7 +91326,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1287 + "inGameID": 1287, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -87923,7 +91478,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1289 + "inGameID": 1289, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -87996,7 +91556,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1290 + "inGameID": 1290, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -88142,7 +91707,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1292 + "inGameID": 1292, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -88434,7 +92004,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1296 + "inGameID": 1296, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -88507,7 +92082,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1297 + "inGameID": 1297, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -88583,7 +92163,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1298 + "inGameID": 1298, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -88652,7 +92237,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1299 + "inGameID": 1299, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -88725,7 +92315,12 @@ "text": "18F", "value": 18 }, - "inGameID": 1300 + "inGameID": 1300, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "GRV", "isPrimary": true, @@ -88802,7 +92397,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 1301 + "inGameID": 1301, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "GRV", "isPrimary": true, @@ -88884,7 +92484,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1302 + "inGameID": 1302, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "GRV", "isPrimary": true, @@ -88959,7 +92564,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1303 + "inGameID": 1303, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -89032,7 +92642,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1304 + "inGameID": 1304, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -89179,7 +92794,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1306 + "inGameID": 1306, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -89252,7 +92872,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1307 + "inGameID": 1307, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -89330,7 +92955,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1308 + "inGameID": 1308, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -89408,7 +93038,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1309 + "inGameID": 1309, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "GRV", "isPrimary": true, @@ -89484,7 +93119,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1310 + "inGameID": 1310, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -89555,7 +93195,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 1311 + "inGameID": 1311, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -89626,7 +93271,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1312 + "inGameID": 1312, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -89697,7 +93347,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1313 + "inGameID": 1313, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -89770,7 +93425,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1314 + "inGameID": 1314, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -89843,7 +93503,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 1315 + "inGameID": 1315, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -89900,7 +93565,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1316 + "inGameID": 1316, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -89923,7 +93593,12 @@ "text": "19C", "value": 19.4 }, - "inGameID": 1316 + "inGameID": 1316, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 19 + } }, "difficulty": "MXM", "isPrimary": true, @@ -90000,7 +93675,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1317 + "inGameID": 1317, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -90159,7 +93839,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1319 + "inGameID": 1319, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -90313,7 +93998,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1321 + "inGameID": 1321, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -90390,7 +94080,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1322 + "inGameID": 1322, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -90467,7 +94162,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1323 + "inGameID": 1323, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -90544,7 +94244,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1324 + "inGameID": 1324, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -90621,7 +94326,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1325 + "inGameID": 1325, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -90701,7 +94411,12 @@ "text": "18S", "value": 18.9 }, - "inGameID": 1326 + "inGameID": 1326, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -90779,7 +94494,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1327 + "inGameID": 1327, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -90857,7 +94577,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1328 + "inGameID": 1328, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -90914,7 +94639,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1329 + "inGameID": 1329, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -90937,7 +94667,12 @@ "text": "19E", "value": 19.1 }, - "inGameID": 1329 + "inGameID": 1329, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 19 + } }, "difficulty": "MXM", "isPrimary": true, @@ -91079,7 +94814,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 1331 + "inGameID": 1331, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -91161,7 +94901,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1332 + "inGameID": 1332, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -91238,7 +94983,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1333 + "inGameID": 1333, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -91315,7 +95065,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1334 + "inGameID": 1334, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -91397,7 +95152,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1335 + "inGameID": 1335, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -91474,7 +95234,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 1336 + "inGameID": 1336, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -91758,7 +95523,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1340 + "inGameID": 1340, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -91829,7 +95599,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1341 + "inGameID": 1341, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -91900,7 +95675,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1342 + "inGameID": 1342, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -91974,7 +95754,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1343 + "inGameID": 1343, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -92114,7 +95899,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 1345 + "inGameID": 1345, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "GRV", "isPrimary": true, @@ -92192,7 +95982,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1346 + "inGameID": 1346, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "GRV", "isPrimary": true, @@ -92265,7 +96060,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1347 + "inGameID": 1347, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "GRV", "isPrimary": true, @@ -92338,7 +96138,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1348 + "inGameID": 1348, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "GRV", "isPrimary": true, @@ -92413,7 +96218,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1349 + "inGameID": 1349, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -93121,7 +96931,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 1360 + "inGameID": 1360, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -93143,7 +96958,12 @@ "text": "19A", "value": 19.7 }, - "inGameID": 1360 + "inGameID": 1360, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 19.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -93200,7 +97020,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1361 + "inGameID": 1361, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -93223,7 +97048,12 @@ "text": "20B", "value": 20.1 }, - "inGameID": 1361 + "inGameID": 1361, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 19.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -93282,7 +97112,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1362 + "inGameID": 1362, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -93305,7 +97140,12 @@ "text": "20A+", "value": 20.5 }, - "inGameID": 1362 + "inGameID": 1362, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 19.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -93364,7 +97204,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1363 + "inGameID": 1363, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -93387,7 +97232,12 @@ "text": "19D", "value": 19.3 }, - "inGameID": 1363 + "inGameID": 1363, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 19.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -93446,7 +97296,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1364 + "inGameID": 1364, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -93469,7 +97324,12 @@ "text": "19D", "value": 19.3 }, - "inGameID": 1364 + "inGameID": 1364, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 19.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -93546,7 +97406,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1365 + "inGameID": 1365, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -93628,7 +97493,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1366 + "inGameID": 1366, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -93705,7 +97575,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1367 + "inGameID": 1367, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -93787,7 +97662,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1368 + "inGameID": 1368, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -93845,7 +97725,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1369 + "inGameID": 1369, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -93867,7 +97752,12 @@ "text": "19C", "value": 19.4 }, - "inGameID": 1369 + "inGameID": 1369, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 19.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -93945,7 +97835,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1370 + "inGameID": 1370, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -94018,7 +97913,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1371 + "inGameID": 1371, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -94091,7 +97991,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1372 + "inGameID": 1372, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -94169,7 +98074,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1373 + "inGameID": 1373, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -94247,7 +98157,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1374 + "inGameID": 1374, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -94320,7 +98235,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 1375 + "inGameID": 1375, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -94398,7 +98318,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1376 + "inGameID": 1376, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -94476,7 +98401,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1377 + "inGameID": 1377, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -94549,7 +98479,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1378 + "inGameID": 1378, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -94627,7 +98562,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1379 + "inGameID": 1379, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -94705,7 +98645,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1380 + "inGameID": 1380, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -94778,7 +98723,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1381 + "inGameID": 1381, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -94851,7 +98801,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1382 + "inGameID": 1382, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -94929,7 +98884,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1383 + "inGameID": 1383, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -95002,7 +98962,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1384 + "inGameID": 1384, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -95075,7 +99040,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1385 + "inGameID": 1385, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -95153,7 +99123,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1386 + "inGameID": 1386, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -95299,7 +99274,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1388 + "inGameID": 1388, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -95377,7 +99357,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 1389 + "inGameID": 1389, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -95450,7 +99435,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 1390 + "inGameID": 1390, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -95523,7 +99513,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1391 + "inGameID": 1391, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -95596,7 +99591,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1392 + "inGameID": 1392, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -95669,7 +99669,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1393 + "inGameID": 1393, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -95742,7 +99747,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 1394 + "inGameID": 1394, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -95888,7 +99898,12 @@ "text": "18S", "value": 18.9 }, - "inGameID": 1396 + "inGameID": 1396, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -95966,7 +99981,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1397 + "inGameID": 1397, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -96039,7 +100059,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1398 + "inGameID": 1398, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -96112,7 +100137,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1399 + "inGameID": 1399, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -96190,7 +100220,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1400 + "inGameID": 1400, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -96263,7 +100298,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1401 + "inGameID": 1401, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -96336,7 +100376,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1402 + "inGameID": 1402, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -96409,7 +100454,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1403 + "inGameID": 1403, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -96482,7 +100532,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1404 + "inGameID": 1404, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -96555,7 +100610,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1405 + "inGameID": 1405, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -96628,7 +100688,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1406 + "inGameID": 1406, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -96706,7 +100771,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1407 + "inGameID": 1407, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -96779,7 +100849,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1408 + "inGameID": 1408, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -96852,7 +100927,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1409 + "inGameID": 1409, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -96925,7 +101005,12 @@ "text": "18F", "value": 18 }, - "inGameID": 1410 + "inGameID": 1410, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -97071,7 +101156,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1412 + "inGameID": 1412, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -97144,7 +101234,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 1413 + "inGameID": 1413, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -97217,7 +101312,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1414 + "inGameID": 1414, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -97290,7 +101390,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1415 + "inGameID": 1415, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -97363,7 +101468,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1416 + "inGameID": 1416, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -97436,7 +101546,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 1417 + "inGameID": 1417, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -97587,7 +101702,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1419 + "inGameID": 1419, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -97660,7 +101780,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1420 + "inGameID": 1420, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -97733,7 +101858,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1421 + "inGameID": 1421, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -97806,7 +101936,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1422 + "inGameID": 1422, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -97879,7 +102014,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1423 + "inGameID": 1423, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -98025,7 +102165,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1425 + "inGameID": 1425, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -98098,7 +102243,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1426 + "inGameID": 1426, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -98244,7 +102394,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1428 + "inGameID": 1428, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -98553,7 +102708,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1432 + "inGameID": 1432, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "VVD", "isPrimary": true, @@ -98614,7 +102774,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1433 + "inGameID": 1433, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "GRV", "isPrimary": true, @@ -98692,7 +102857,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1434 + "inGameID": 1434, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "GRV", "isPrimary": true, @@ -98770,7 +102940,12 @@ "text": "18A - 18E", "value": 18 }, - "inGameID": 1435 + "inGameID": 1435, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "GRV", "isPrimary": true, @@ -98843,7 +103018,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1436 + "inGameID": 1436, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "GRV", "isPrimary": true, @@ -98921,7 +103101,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 1437 + "inGameID": 1437, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -98994,7 +103179,12 @@ "text": "18F", "value": 18 }, - "inGameID": 1439 + "inGameID": 1439, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -99067,7 +103257,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1440 + "inGameID": 1440, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -99140,7 +103335,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1441 + "inGameID": 1441, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -99432,7 +103632,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1445 + "inGameID": 1445, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -99503,7 +103708,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 1446 + "inGameID": 1446, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -99641,7 +103851,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1448 + "inGameID": 1448, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -99710,7 +103925,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1449 + "inGameID": 1449, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -99917,7 +104137,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1452 + "inGameID": 1452, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -100193,7 +104418,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1456 + "inGameID": 1456, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -100262,7 +104492,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1457 + "inGameID": 1457, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -100407,7 +104642,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1459 + "inGameID": 1459, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -100485,7 +104725,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1460 + "inGameID": 1460, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -100563,7 +104808,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 1461 + "inGameID": 1461, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -100619,7 +104869,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1462 + "inGameID": 1462, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -100641,7 +104896,12 @@ "text": "20A", "value": 20.3 }, - "inGameID": 1462 + "inGameID": 1462, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 19.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -100719,7 +104979,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1463 + "inGameID": 1463, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -100775,7 +105040,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1464 + "inGameID": 1464, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -100797,7 +105067,12 @@ "text": "19A", "value": 19.7 }, - "inGameID": 1464 + "inGameID": 1464, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 19.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -100875,7 +105150,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1465 + "inGameID": 1465, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -100948,7 +105228,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1466 + "inGameID": 1466, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -101004,7 +105289,12 @@ "text": "17A+", "value": 17.8 }, - "inGameID": 1467 + "inGameID": 1467, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -101026,7 +105316,12 @@ "text": "19A+", "value": 19.9 }, - "inGameID": 1467 + "inGameID": 1467, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 19.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -101099,7 +105394,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1468 + "inGameID": 1468, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -101170,7 +105470,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1469 + "inGameID": 1469, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -101306,7 +105611,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1472 + "inGameID": 1472, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -101379,7 +105689,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1473 + "inGameID": 1473, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -101457,7 +105772,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1474 + "inGameID": 1474, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -101535,7 +105855,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1475 + "inGameID": 1475, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -101608,7 +105933,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1476 + "inGameID": 1476, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -101684,7 +106014,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1477 + "inGameID": 1477, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -101751,7 +106086,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1478 + "inGameID": 1478, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -101825,7 +106165,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1480 + "inGameID": 1480, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -101903,7 +106248,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1481 + "inGameID": 1481, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -101959,7 +106309,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 1482 + "inGameID": 1482, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -101981,7 +106336,12 @@ "text": "19D", "value": 19.3 }, - "inGameID": 1482 + "inGameID": 1482, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 19.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -102037,7 +106397,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1483 + "inGameID": 1483, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -102059,7 +106424,12 @@ "text": "19C", "value": 19.4 }, - "inGameID": 1483 + "inGameID": 1483, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 19.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -102132,7 +106502,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1484 + "inGameID": 1484, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -102210,7 +106585,12 @@ "text": "18F", "value": 18 }, - "inGameID": 1485 + "inGameID": 1485, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -102283,7 +106663,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1486 + "inGameID": 1486, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -102356,7 +106741,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1487 + "inGameID": 1487, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -102429,7 +106819,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1488 + "inGameID": 1488, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -102502,7 +106897,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1489 + "inGameID": 1489, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -102558,7 +106958,12 @@ "text": "18S", "value": 18.9 }, - "inGameID": 1495 + "inGameID": 1495, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "EXH", "isPrimary": true, @@ -102580,7 +106985,12 @@ "text": "20A+", "value": 20.5 }, - "inGameID": 1495 + "inGameID": 1495, + "sTier": { + "individualDifference": false, + "text": "Tier 0-", + "value": 20 + } }, "difficulty": "MXM", "isPrimary": true, @@ -102636,7 +107046,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1496 + "inGameID": 1496, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -102658,7 +107073,12 @@ "text": "19A", "value": 19.7 }, - "inGameID": 1496 + "inGameID": 1496, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 19.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -102731,7 +107151,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1497 + "inGameID": 1497, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -102787,7 +107212,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1498 + "inGameID": 1498, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -102809,7 +107239,12 @@ "text": "19C", "value": 19.4 }, - "inGameID": 1498 + "inGameID": 1498, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 19.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -102882,7 +107317,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1499 + "inGameID": 1499, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -102960,7 +107400,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 1500 + "inGameID": 1500, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -103038,7 +107483,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1501 + "inGameID": 1501, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -103116,7 +107566,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1502 + "inGameID": 1502, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -103194,7 +107649,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1503 + "inGameID": 1503, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -103267,7 +107727,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1504 + "inGameID": 1504, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -103340,7 +107805,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1505 + "inGameID": 1505, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -103413,7 +107883,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1509 + "inGameID": 1509, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -103486,7 +107961,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1510 + "inGameID": 1510, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -103557,7 +108037,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1511 + "inGameID": 1511, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -103626,7 +108111,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1512 + "inGameID": 1512, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -103695,7 +108185,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 1513 + "inGameID": 1513, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -103766,7 +108261,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1514 + "inGameID": 1514, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -103837,7 +108337,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1515 + "inGameID": 1515, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -103908,7 +108413,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1516 + "inGameID": 1516, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -103984,7 +108494,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1517 + "inGameID": 1517, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -104055,7 +108570,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1518 + "inGameID": 1518, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -104133,7 +108653,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1519 + "inGameID": 1519, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -104209,7 +108734,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1520 + "inGameID": 1520, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -104285,7 +108815,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1521 + "inGameID": 1521, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -104361,7 +108896,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1522 + "inGameID": 1522, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -104432,7 +108972,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1523 + "inGameID": 1523, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -104503,7 +109048,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1524 + "inGameID": 1524, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -104577,7 +109127,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1525 + "inGameID": 1525, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -104653,7 +109208,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1526 + "inGameID": 1526, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -104724,7 +109284,12 @@ "text": "18F", "value": 18 }, - "inGameID": 1527 + "inGameID": 1527, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -104777,7 +109342,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1528 + "inGameID": 1528, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -104798,7 +109368,12 @@ "text": "19C", "value": 19.4 }, - "inGameID": 1528 + "inGameID": 1528, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 19.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -104869,7 +109444,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1529 + "inGameID": 1529, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -104945,7 +109525,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1530 + "inGameID": 1530, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -105019,7 +109604,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1531 + "inGameID": 1531, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -105161,7 +109751,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1533 + "inGameID": 1533, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -105232,7 +109827,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1534 + "inGameID": 1534, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -105303,7 +109903,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1535 + "inGameID": 1535, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -105379,7 +109984,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1536 + "inGameID": 1536, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -105659,7 +110269,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1540 + "inGameID": 1540, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -105732,7 +110347,12 @@ "text": "17A+", "value": 17.8 }, - "inGameID": 1541 + "inGameID": 1541, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -105787,7 +110407,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1542 + "inGameID": 1542, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -105808,7 +110433,12 @@ "text": "19D", "value": 19.3 }, - "inGameID": 1542 + "inGameID": 1542, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 19 + } }, "difficulty": "MXM", "isPrimary": true, @@ -105879,7 +110509,12 @@ "text": "17F-", "value": 17 }, - "inGameID": 1543 + "inGameID": 1543, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -106008,7 +110643,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 1547 + "inGameID": 1547, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 17.9 + } }, "difficulty": "EXH", "isPrimary": true, @@ -106030,7 +110670,12 @@ "text": "19A+", "value": 19.9 }, - "inGameID": 1547 + "inGameID": 1547, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 19.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -106085,7 +110730,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1548 + "inGameID": 1548, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -106106,7 +110756,12 @@ "text": "19A+", "value": 19.9 }, - "inGameID": 1548 + "inGameID": 1548, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 19.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -106267,7 +110922,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1550 + "inGameID": 1550, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "VVD", "isPrimary": true, @@ -106342,7 +111002,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1551 + "inGameID": 1551, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "VVD", "isPrimary": true, @@ -106414,7 +111079,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1552 + "inGameID": 1552, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "VVD", "isPrimary": true, @@ -106487,7 +111157,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1553 + "inGameID": 1553, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "VVD", "isPrimary": true, @@ -106565,7 +111240,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1554 + "inGameID": 1554, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "VVD", "isPrimary": true, @@ -106638,7 +111318,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1555 + "inGameID": 1555, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "VVD", "isPrimary": true, @@ -106711,7 +111396,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 1556 + "inGameID": 1556, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "VVD", "isPrimary": true, @@ -106784,7 +111474,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 1557 + "inGameID": 1557, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "VVD", "isPrimary": true, @@ -106862,7 +111557,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1558 + "inGameID": 1558, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "VVD", "isPrimary": true, @@ -106935,7 +111635,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1559 + "inGameID": 1559, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "VVD", "isPrimary": true, @@ -107008,7 +111713,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1560 + "inGameID": 1560, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "VVD", "isPrimary": true, @@ -107083,7 +111793,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1561 + "inGameID": 1561, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "VVD", "isPrimary": true, @@ -107160,7 +111875,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 1562 + "inGameID": 1562, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "VVD", "isPrimary": true, @@ -107306,7 +112026,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1564 + "inGameID": 1564, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "VVD", "isPrimary": true, @@ -107376,7 +112101,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1565 + "inGameID": 1565, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "VVD", "isPrimary": true, @@ -107453,7 +112183,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1566 + "inGameID": 1566, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "VVD", "isPrimary": true, @@ -107526,7 +112261,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1567 + "inGameID": 1567, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "VVD", "isPrimary": true, @@ -107742,7 +112482,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1570 + "inGameID": 1570, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "VVD", "isPrimary": true, @@ -107819,7 +112564,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1571 + "inGameID": 1571, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "VVD", "isPrimary": true, @@ -107889,7 +112639,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1572 + "inGameID": 1572, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "VVD", "isPrimary": true, @@ -108034,7 +112789,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1574 + "inGameID": 1574, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "VVD", "isPrimary": true, @@ -108107,7 +112867,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1575 + "inGameID": 1575, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "VVD", "isPrimary": true, @@ -108180,7 +112945,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1576 + "inGameID": 1576, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "VVD", "isPrimary": true, @@ -108258,7 +113028,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1577 + "inGameID": 1577, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "VVD", "isPrimary": true, @@ -108409,7 +113184,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 1579 + "inGameID": 1579, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "VVD", "isPrimary": true, @@ -108448,7 +113228,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1580 + "inGameID": 1580, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -108470,7 +113255,12 @@ "text": "20S", "value": 20.5 }, - "inGameID": 1580 + "inGameID": 1580, + "sTier": { + "individualDifference": false, + "text": "Tier 0-", + "value": 20 + } }, "difficulty": "MXM", "isPrimary": true, @@ -108526,7 +113316,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1581 + "inGameID": 1581, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -108548,7 +113343,12 @@ "text": "19A", "value": 19.7 }, - "inGameID": 1581 + "inGameID": 1581, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 19.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -108604,7 +113404,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1582 + "inGameID": 1582, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -108626,7 +113431,12 @@ "text": "19A", "value": 19.7 }, - "inGameID": 1582 + "inGameID": 1582, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 19.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -108682,7 +113492,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1583 + "inGameID": 1583, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -108704,7 +113519,12 @@ "text": "19C", "value": 19.4 }, - "inGameID": 1583 + "inGameID": 1583, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 19.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -108760,7 +113580,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1584 + "inGameID": 1584, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -108782,7 +113607,12 @@ "text": "20A+", "value": 20.5 }, - "inGameID": 1584 + "inGameID": 1584, + "sTier": { + "individualDifference": false, + "text": "Tier 0+", + "value": 20.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -108860,7 +113690,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1585 + "inGameID": 1585, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -108938,7 +113773,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 1586 + "inGameID": 1586, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -109016,7 +113856,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1587 + "inGameID": 1587, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -109072,7 +113917,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1588 + "inGameID": 1588, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -109094,7 +113944,12 @@ "text": "19B", "value": 19.5 }, - "inGameID": 1588 + "inGameID": 1588, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 19.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -109167,7 +114022,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1589 + "inGameID": 1589, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -109245,7 +114105,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1590 + "inGameID": 1590, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -109301,7 +114166,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1591 + "inGameID": 1591, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -109323,7 +114193,12 @@ "text": "19C", "value": 19.4 }, - "inGameID": 1591 + "inGameID": 1591, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 19.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -109401,7 +114276,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1592 + "inGameID": 1592, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -109457,7 +114337,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1593 + "inGameID": 1593, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -109479,7 +114364,12 @@ "text": "19D", "value": 19.3 }, - "inGameID": 1593 + "inGameID": 1593, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 19.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -109552,7 +114442,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1594 + "inGameID": 1594, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -109625,7 +114520,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1595 + "inGameID": 1595, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -109698,7 +114598,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 1596 + "inGameID": 1596, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -109771,7 +114676,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 1597 + "inGameID": 1597, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -109849,7 +114759,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1598 + "inGameID": 1598, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -109927,7 +114842,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 1599 + "inGameID": 1599, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -110000,7 +114920,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1600 + "inGameID": 1600, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -110073,7 +114998,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1601 + "inGameID": 1601, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -110151,7 +115081,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1602 + "inGameID": 1602, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -110224,7 +115159,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1603 + "inGameID": 1603, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -110297,7 +115237,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1604 + "inGameID": 1604, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -110370,7 +115315,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1605 + "inGameID": 1605, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -110443,7 +115393,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1606 + "inGameID": 1606, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -110521,7 +115476,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1607 + "inGameID": 1607, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -110594,7 +115554,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1608 + "inGameID": 1608, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -110667,7 +115632,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1609 + "inGameID": 1609, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -110745,7 +115715,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1610 + "inGameID": 1610, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -110823,7 +115798,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1611 + "inGameID": 1611, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -110879,7 +115859,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1612 + "inGameID": 1612, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -110901,7 +115886,12 @@ "text": "19A+", "value": 19.9 }, - "inGameID": 1612 + "inGameID": 1612, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 19.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -110979,7 +115969,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1613 + "inGameID": 1613, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -111052,7 +116047,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1614 + "inGameID": 1614, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -111198,7 +116198,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 1616 + "inGameID": 1616, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -111271,7 +116276,12 @@ "text": "17A+ - 17E", "value": 17 }, - "inGameID": 1617 + "inGameID": 1617, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -111344,7 +116354,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1618 + "inGameID": 1618, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -111422,7 +116437,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 1619 + "inGameID": 1619, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -111500,7 +116520,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1620 + "inGameID": 1620, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -111573,7 +116598,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1621 + "inGameID": 1621, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -111646,7 +116676,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 1622 + "inGameID": 1622, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -111719,7 +116754,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1623 + "inGameID": 1623, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -111792,7 +116832,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1624 + "inGameID": 1624, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -111870,7 +116915,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 1625 + "inGameID": 1625, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -112079,7 +117129,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1628 + "inGameID": 1628, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -112148,7 +117203,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 1629 + "inGameID": 1629, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -112224,7 +117284,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1630 + "inGameID": 1630, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -112302,7 +117367,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1631 + "inGameID": 1631, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -112380,7 +117450,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1632 + "inGameID": 1632, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -112453,7 +117528,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1633 + "inGameID": 1633, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -112587,7 +117667,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1635 + "inGameID": 1635, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -112786,7 +117871,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1638 + "inGameID": 1638, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -112842,7 +117932,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1639 + "inGameID": 1639, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -112864,7 +117959,12 @@ "text": "19D", "value": 19.3 }, - "inGameID": 1639 + "inGameID": 1639, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 19 + } }, "difficulty": "MXM", "isPrimary": true, @@ -112937,7 +118037,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1640 + "inGameID": 1640, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -113013,7 +118118,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 1641 + "inGameID": 1641, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -113085,7 +118195,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1642 + "inGameID": 1642, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -113150,7 +118265,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1644 + "inGameID": 1644, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -113215,7 +118335,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1646 + "inGameID": 1646, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -113282,7 +118407,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1647 + "inGameID": 1647, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -113356,7 +118486,12 @@ "text": "19B", "value": 19.5 }, - "inGameID": 1648 + "inGameID": 1648, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 19.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -113425,7 +118560,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1649 + "inGameID": 1649, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -113494,7 +118634,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1650 + "inGameID": 1650, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -113563,7 +118708,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1651 + "inGameID": 1651, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -113632,7 +118782,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1652 + "inGameID": 1652, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -113701,7 +118856,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1653 + "inGameID": 1653, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -113833,7 +118993,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1655 + "inGameID": 1655, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -113898,7 +119063,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1657 + "inGameID": 1657, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -114014,7 +119184,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1659 + "inGameID": 1659, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "EXH", "isPrimary": true, @@ -114035,7 +119210,12 @@ "text": "19A", "value": 19.7 }, - "inGameID": 1659 + "inGameID": 1659, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 19.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -114089,7 +119269,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1660 + "inGameID": 1660, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -114111,7 +119296,12 @@ "text": "20B", "value": 20.1 }, - "inGameID": 1660 + "inGameID": 1660, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 19.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -114167,7 +119357,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1661 + "inGameID": 1661, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -114189,7 +119384,12 @@ "text": "19B", "value": 19.5 }, - "inGameID": 1661 + "inGameID": 1661, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 19.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -114245,7 +119445,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1662 + "inGameID": 1662, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -114267,7 +119472,12 @@ "text": "19A", "value": 19.7 }, - "inGameID": 1662 + "inGameID": 1662, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 19.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -114323,7 +119533,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1663 + "inGameID": 1663, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -114345,7 +119560,12 @@ "text": "19S - 19F", "value": 19 }, - "inGameID": 1663 + "inGameID": 1663, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 19.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -114401,7 +119621,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1664 + "inGameID": 1664, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -114423,7 +119648,12 @@ "text": "19C", "value": 19.4 }, - "inGameID": 1664 + "inGameID": 1664, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 19.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -114501,7 +119731,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1665 + "inGameID": 1665, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -114579,7 +119814,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1666 + "inGameID": 1666, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -114652,7 +119892,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1668 + "inGameID": 1668, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -114723,7 +119968,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1669 + "inGameID": 1669, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -114794,7 +120044,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1670 + "inGameID": 1670, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -114872,7 +120127,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 1671 + "inGameID": 1671, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -114946,7 +120206,12 @@ "text": "19C", "value": 19.4 }, - "inGameID": 1672 + "inGameID": 1672, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 19.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -115013,7 +120278,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1673 + "inGameID": 1673, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -115156,7 +120426,12 @@ "text": "18F", "value": 18 }, - "inGameID": 1676 + "inGameID": 1676, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -115299,7 +120574,12 @@ "text": "19B", "value": 19.5 }, - "inGameID": 1678 + "inGameID": 1678, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 19.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -115368,7 +120648,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1679 + "inGameID": 1679, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -115442,7 +120727,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1680 + "inGameID": 1680, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -115495,7 +120785,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1681 + "inGameID": 1681, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -115516,7 +120811,12 @@ "text": "19A", "value": 19.7 }, - "inGameID": 1681 + "inGameID": 1681, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 19.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -115590,7 +120890,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1682 + "inGameID": 1682, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -115664,7 +120969,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1683 + "inGameID": 1683, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -115738,7 +121048,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1684 + "inGameID": 1684, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -115876,7 +121191,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1686 + "inGameID": 1686, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -115945,7 +121265,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1687 + "inGameID": 1687, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -116019,7 +121344,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1689 + "inGameID": 1689, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -116088,7 +121418,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1690 + "inGameID": 1690, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -116157,7 +121492,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 1692 + "inGameID": 1692, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -116226,7 +121566,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 1693 + "inGameID": 1693, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -116295,7 +121640,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 1694 + "inGameID": 1694, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -116369,7 +121719,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1695 + "inGameID": 1695, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -116443,7 +121798,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1696 + "inGameID": 1696, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -116517,7 +121877,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1697 + "inGameID": 1697, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -116586,7 +121951,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1698 + "inGameID": 1698, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -116660,7 +122030,12 @@ "text": "18S", "value": 18.9 }, - "inGameID": 1699 + "inGameID": 1699, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -116729,7 +122104,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1700 + "inGameID": 1700, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -116803,7 +122183,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1701 + "inGameID": 1701, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -116856,7 +122241,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1702 + "inGameID": 1702, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -116877,7 +122267,12 @@ "text": "19C", "value": 19.4 }, - "inGameID": 1702 + "inGameID": 1702, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 19.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -116951,7 +122346,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 1703 + "inGameID": 1703, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -117025,7 +122425,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1704 + "inGameID": 1704, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -117099,7 +122504,12 @@ "text": "18F", "value": 18 }, - "inGameID": 1705 + "inGameID": 1705, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -117168,7 +122578,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1707 + "inGameID": 1707, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -117242,7 +122657,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 1708 + "inGameID": 1708, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -117316,7 +122736,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1710 + "inGameID": 1710, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -117459,7 +122884,12 @@ "text": "18F", "value": 18 }, - "inGameID": 1712 + "inGameID": 1712, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -117533,7 +122963,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1713 + "inGameID": 1713, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -117602,7 +123037,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1714 + "inGameID": 1714, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -117676,7 +123116,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1715 + "inGameID": 1715, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -117745,7 +123190,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1716 + "inGameID": 1716, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -117814,7 +123264,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1717 + "inGameID": 1717, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -117888,7 +123343,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1718 + "inGameID": 1718, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -117957,7 +123417,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1719 + "inGameID": 1719, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -118026,7 +123491,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1720 + "inGameID": 1720, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -118169,7 +123639,12 @@ "text": "18A+", "value": 18.8 }, - "inGameID": 1722 + "inGameID": 1722, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -118238,7 +123713,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1723 + "inGameID": 1723, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -118307,7 +123787,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1724 + "inGameID": 1724, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -118376,7 +123861,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 1725 + "inGameID": 1725, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -118445,7 +123935,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1726 + "inGameID": 1726, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -118519,7 +124014,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 1727 + "inGameID": 1727, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -118588,7 +124088,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1728 + "inGameID": 1728, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -118657,7 +124162,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1729 + "inGameID": 1729, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -118726,7 +124236,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1730 + "inGameID": 1730, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -118795,7 +124310,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1731 + "inGameID": 1731, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -118864,7 +124384,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1732 + "inGameID": 1732, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -118917,7 +124442,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1734 + "inGameID": 1734, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -118938,7 +124468,12 @@ "text": "19A+", "value": 19.9 }, - "inGameID": 1734 + "inGameID": 1734, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 19.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -119012,7 +124547,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1735 + "inGameID": 1735, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -119065,7 +124605,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1736 + "inGameID": 1736, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -119086,7 +124631,12 @@ "text": "19A+", "value": 19.9 }, - "inGameID": 1736 + "inGameID": 1736, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 19.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -119155,7 +124705,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 1737 + "inGameID": 1737, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -119229,7 +124784,12 @@ "text": "18S", "value": 18.9 }, - "inGameID": 1738 + "inGameID": 1738, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -119298,7 +124858,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1739 + "inGameID": 1739, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -119436,7 +125001,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1741 + "inGameID": 1741, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -119508,7 +125078,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1744 + "inGameID": 1744, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -119575,7 +125150,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1746 + "inGameID": 1746, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -119649,7 +125229,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 1747 + "inGameID": 1747, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -119787,7 +125372,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1749 + "inGameID": 1749, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -119856,7 +125446,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1750 + "inGameID": 1750, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -119941,7 +125536,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1753 + "inGameID": 1753, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -120010,7 +125610,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1754 + "inGameID": 1754, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -120286,7 +125891,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1758 + "inGameID": 1758, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -120539,7 +126149,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1762 + "inGameID": 1762, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -120560,7 +126175,12 @@ "text": "19B", "value": 19.5 }, - "inGameID": 1762 + "inGameID": 1762, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 19.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -120613,7 +126233,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1763 + "inGameID": 1763, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -120634,7 +126259,12 @@ "text": "19B", "value": 19.5 }, - "inGameID": 1763 + "inGameID": 1763, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 19.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -120687,7 +126317,12 @@ "text": "17A", "value": 17.7 }, - "inGameID": 1764 + "inGameID": 1764, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -120708,7 +126343,12 @@ "text": "19A+", "value": 19.9 }, - "inGameID": 1764 + "inGameID": 1764, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 19.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -120761,7 +126401,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1765 + "inGameID": 1765, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -120782,7 +126427,12 @@ "text": "19B", "value": 19.5 }, - "inGameID": 1765 + "inGameID": 1765, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 19.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -120835,7 +126485,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1766 + "inGameID": 1766, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -120856,7 +126511,12 @@ "text": "20B", "value": 20.1 }, - "inGameID": 1766 + "inGameID": 1766, + "sTier": { + "individualDifference": false, + "text": "Tier 0+", + "value": 20.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -120909,7 +126569,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1767 + "inGameID": 1767, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -120930,7 +126595,12 @@ "text": "20S", "value": 20.5 }, - "inGameID": 1767 + "inGameID": 1767, + "sTier": { + "individualDifference": false, + "text": "Tier 0+", + "value": 20.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -120983,7 +126653,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1768 + "inGameID": 1768, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -121004,7 +126679,12 @@ "text": "19A", "value": 19.7 }, - "inGameID": 1768 + "inGameID": 1768, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 19.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -121057,7 +126737,12 @@ "text": "17B+", "value": 17.6 }, - "inGameID": 1769 + "inGameID": 1769, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -121078,7 +126763,12 @@ "text": "19B", "value": 19.5 }, - "inGameID": 1769 + "inGameID": 1769, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 19.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -121131,7 +126821,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1770 + "inGameID": 1770, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -121152,7 +126847,12 @@ "text": "19A", "value": 19.7 }, - "inGameID": 1770 + "inGameID": 1770, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 19.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -121205,7 +126905,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1771 + "inGameID": 1771, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -121226,7 +126931,12 @@ "text": "19A+", "value": 19.9 }, - "inGameID": 1771 + "inGameID": 1771, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 19.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -121279,7 +126989,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1772 + "inGameID": 1772, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -121300,7 +127015,12 @@ "text": "19A", "value": 19.7 }, - "inGameID": 1772 + "inGameID": 1772, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 19.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -121353,7 +127073,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1773 + "inGameID": 1773, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -121374,7 +127099,12 @@ "text": "19A", "value": 19.7 }, - "inGameID": 1773 + "inGameID": 1773, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 19.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -121448,7 +127178,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1774 + "inGameID": 1774, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -121522,7 +127257,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1775 + "inGameID": 1775, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -121596,7 +127336,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1776 + "inGameID": 1776, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -121670,7 +127415,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1777 + "inGameID": 1777, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -121744,7 +127494,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1778 + "inGameID": 1778, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -121818,7 +127573,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1779 + "inGameID": 1779, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -121887,7 +127647,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 1802 + "inGameID": 1802, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -121956,7 +127721,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1803 + "inGameID": 1803, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -122025,7 +127795,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1804 + "inGameID": 1804, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -122094,7 +127869,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1805 + "inGameID": 1805, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -122163,7 +127943,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1806 + "inGameID": 1806, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -122237,7 +128022,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1807 + "inGameID": 1807, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -122311,7 +128101,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1808 + "inGameID": 1808, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -122385,7 +128180,12 @@ "text": "18E", "value": 18.1 }, - "inGameID": 1809 + "inGameID": 1809, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -122457,7 +128257,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1810 + "inGameID": 1810, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -122508,7 +128313,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1811 + "inGameID": 1811, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -122529,7 +128339,12 @@ "text": "20A+", "value": 20.5 }, - "inGameID": 1811 + "inGameID": 1811, + "sTier": { + "individualDifference": false, + "text": "Tier 0+", + "value": 20.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -122582,7 +128397,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1812 + "inGameID": 1812, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -122603,7 +128423,12 @@ "text": "19C", "value": 19.4 }, - "inGameID": 1812 + "inGameID": 1812, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 19.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -122677,7 +128502,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1813 + "inGameID": 1813, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -122746,7 +128576,12 @@ "text": "17A+", "value": 17.8 }, - "inGameID": 1814 + "inGameID": 1814, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -122815,7 +128650,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1815 + "inGameID": 1815, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -122884,7 +128724,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1816 + "inGameID": 1816, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -122953,7 +128798,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1817 + "inGameID": 1817, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -123022,7 +128872,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 1818 + "inGameID": 1818, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -123091,7 +128946,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1819 + "inGameID": 1819, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -123165,7 +129025,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1820 + "inGameID": 1820, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -123232,7 +129097,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1822 + "inGameID": 1822, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -123299,7 +129169,12 @@ "text": "17F-", "value": 17 }, - "inGameID": 1823 + "inGameID": 1823, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -123373,7 +129248,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1824 + "inGameID": 1824, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -123447,7 +129327,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1825 + "inGameID": 1825, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -123516,7 +129401,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1826 + "inGameID": 1826, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -123585,7 +129475,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1827 + "inGameID": 1827, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -123654,7 +129549,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1828 + "inGameID": 1828, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -123728,7 +129628,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1829 + "inGameID": 1829, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -123797,7 +129702,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1830 + "inGameID": 1830, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -123940,7 +129850,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1832 + "inGameID": 1832, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -124009,7 +129924,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 1838 + "inGameID": 1838, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -124078,7 +129998,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1839 + "inGameID": 1839, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -124147,7 +130072,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1840 + "inGameID": 1840, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -124221,7 +130151,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1841 + "inGameID": 1841, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -124290,7 +130225,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1842 + "inGameID": 1842, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -124359,7 +130299,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1843 + "inGameID": 1843, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -124433,7 +130378,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1844 + "inGameID": 1844, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -124486,7 +130436,12 @@ "text": "17B", "value": 17.5 }, - "inGameID": 1847 + "inGameID": 1847, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -124507,7 +130462,12 @@ "text": "19A", "value": 19.7 }, - "inGameID": 1847 + "inGameID": 1847, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 19.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -124581,7 +130541,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1848 + "inGameID": 1848, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -124634,7 +130599,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1849 + "inGameID": 1849, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 17.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -124655,7 +130625,12 @@ "text": "19A+", "value": 19.9 }, - "inGameID": 1849 + "inGameID": 1849, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 19.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -124862,7 +130837,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1858 + "inGameID": 1858, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -124931,7 +130911,12 @@ "text": "17C", "value": 17.4 }, - "inGameID": 1859 + "inGameID": 1859, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -125000,7 +130985,12 @@ "text": "17D", "value": 17.3 }, - "inGameID": 1860 + "inGameID": 1860, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -125069,7 +131059,12 @@ "text": "17F", "value": 17.1 }, - "inGameID": 1861 + "inGameID": 1861, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -125143,7 +131138,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1862 + "inGameID": 1862, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -125212,7 +131212,12 @@ "text": "18D", "value": 18.3 }, - "inGameID": 1863 + "inGameID": 1863, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -125281,7 +131286,12 @@ "text": "18C", "value": 18.5 }, - "inGameID": 1864 + "inGameID": 1864, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -125355,7 +131365,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1865 + "inGameID": 1865, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -125429,7 +131444,12 @@ "text": "18B", "value": 18.6 }, - "inGameID": 1866 + "inGameID": 1866, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -125493,7 +131513,12 @@ { "chartID": "a453eca07d495f63ed48b6ba8a7fda72b645fe5a", "data": { - "inGameID": 1883 + "inGameID": 1883, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -125557,7 +131582,12 @@ { "chartID": "33224e0f5fa6630df0bcc9332c2caed55dc6670f", "data": { - "inGameID": 1884 + "inGameID": 1884, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -125621,7 +131651,12 @@ { "chartID": "09e55bc5aaad4c6879c58d726bab74e8531f09df", "data": { - "inGameID": 1885 + "inGameID": 1885, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -125685,7 +131720,12 @@ { "chartID": "d658f7d928a83dbe5dcc36e27da9549a4098f716", "data": { - "inGameID": 1886 + "inGameID": 1886, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -125733,7 +131773,12 @@ { "chartID": "65153e9ab35685c2bc5d52910564d75aeee9bc38", "data": { - "inGameID": 1902 + "inGameID": 1902, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -125749,7 +131794,12 @@ { "chartID": "5f41fffac1e9ea008dc0bf516871cde6e76743d1", "data": { - "inGameID": 1902 + "inGameID": 1902, + "sTier": { + "individualDifference": false, + "text": "Tier 0+", + "value": 20.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -125823,7 +131873,12 @@ "text": "18A", "value": 18.7 }, - "inGameID": 1903 + "inGameID": 1903, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -125892,7 +131947,12 @@ "text": "17E", "value": 17.2 }, - "inGameID": 1904 + "inGameID": 1904, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -125940,7 +132000,12 @@ { "chartID": "94b137637f3ae21fab3436f8a4ddf9f1e0c1c42c", "data": { - "inGameID": 1963 + "inGameID": 1963, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -125956,7 +132021,12 @@ { "chartID": "4ed7ece132c39de9fed6937b3c8882f45ed8b37e", "data": { - "inGameID": 1963 + "inGameID": 1963, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 19.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -126020,7 +132090,12 @@ { "chartID": "d0af5e957885abaff758bffa0e1a197d97fdbe42", "data": { - "inGameID": 1964 + "inGameID": 1964, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -126084,7 +132159,12 @@ { "chartID": "c099d0f12b040742eeb3887f63ed0adcc7082211", "data": { - "inGameID": 1965 + "inGameID": 1965, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -126148,7 +132228,12 @@ { "chartID": "f878cb4b7f8492104de00d5039cd20ae833b45a5", "data": { - "inGameID": 1966 + "inGameID": 1966, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -126212,7 +132297,12 @@ { "chartID": "085fee45d19b03065b68d62c7032ab65f06f8366", "data": { - "inGameID": 1967 + "inGameID": 1967, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -126276,7 +132366,12 @@ { "chartID": "80106fb4a32a8ceade84b1a102b2c2838aee77d5", "data": { - "inGameID": 1968 + "inGameID": 1968, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -126324,7 +132419,12 @@ { "chartID": "98a95660217992dc96d894a3bd6469bb8a1e00f1", "data": { - "inGameID": 1674 + "inGameID": 1674, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -126340,7 +132440,12 @@ { "chartID": "c455da7447b6b1ab3994a5d3fad7b99226072ce7", "data": { - "inGameID": 1674 + "inGameID": 1674, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 19.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -126468,7 +132573,12 @@ { "chartID": "9c288ba6fcd1a7f885a9868f0d0173a5da4c59cd", "data": { - "inGameID": 1691 + "inGameID": 1691, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -126596,7 +132706,12 @@ { "chartID": "5d611a7a2d3dcc5363254ecce2cc6ef53bb4098c", "data": { - "inGameID": 1733 + "inGameID": 1733, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -126658,7 +132773,12 @@ { "chartID": "46e206bf37161accca7e94a50c9445daf569ce30", "data": { - "inGameID": 1742 + "inGameID": 1742, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -126718,7 +132838,12 @@ { "chartID": "4388ab388e128c7e69929225f730d6d599f27c55", "data": { - "inGameID": 1743 + "inGameID": 1743, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -126778,7 +132903,12 @@ { "chartID": "d9debcbed4ae9750e9813fb64bea64a4f2a22945", "data": { - "inGameID": 1745 + "inGameID": 1745, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -126840,7 +132970,12 @@ { "chartID": "29a46ba045639e73f96b1b64097814c9eba40e2b", "data": { - "inGameID": 1780 + "inGameID": 1780, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -126904,7 +133039,12 @@ { "chartID": "85f38e1266b97d1086ac8c7edeecc548636f40c2", "data": { - "inGameID": 1781 + "inGameID": 1781, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -126968,7 +133108,12 @@ { "chartID": "0b21d784b6defccd2f7a042d5415e78cb1ac066b", "data": { - "inGameID": 1782 + "inGameID": 1782, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -127032,7 +133177,12 @@ { "chartID": "d550897ce3d244c2a5cc87b296f787ec4dec112b", "data": { - "inGameID": 1783 + "inGameID": 1783, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -127096,7 +133246,12 @@ { "chartID": "ab26bb27b17817589d60e3671703879a412e767b", "data": { - "inGameID": 1784 + "inGameID": 1784, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -127160,7 +133315,12 @@ { "chartID": "17ce0bc522fd8269d756a23c0637229e037b60d4", "data": { - "inGameID": 1785 + "inGameID": 1785, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -127224,7 +133384,12 @@ { "chartID": "ad927bc7d51f53f7278a3ea57a1f29eaf9c5ad23", "data": { - "inGameID": 1786 + "inGameID": 1786, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -127288,7 +133453,12 @@ { "chartID": "fbde648661029a4b251ed9c22e79adaf9e919034", "data": { - "inGameID": 1787 + "inGameID": 1787, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -127352,7 +133522,12 @@ { "chartID": "42e8e5f3cea3e75dd0b58e255d2913bcf86613f9", "data": { - "inGameID": 1788 + "inGameID": 1788, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -127416,7 +133591,12 @@ { "chartID": "09104fd7e82ea7015c9e404e8f2fd62b9764efab", "data": { - "inGameID": 1789 + "inGameID": 1789, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -127480,7 +133660,12 @@ { "chartID": "cc913ab6bec4dfa67be7418bd8d7f6eea42f11b1", "data": { - "inGameID": 1790 + "inGameID": 1790, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -127544,7 +133729,12 @@ { "chartID": "211ff881af0876011bdf77ab03fc9dd3ec0d9f42", "data": { - "inGameID": 1791 + "inGameID": 1791, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -127608,7 +133798,12 @@ { "chartID": "0fa5e4702e3f65a0e152c9a048f0a228aa6f624c", "data": { - "inGameID": 1792 + "inGameID": 1792, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -127672,7 +133867,12 @@ { "chartID": "cc55540c1118d93de833d4aa84a65c22616959f0", "data": { - "inGameID": 1793 + "inGameID": 1793, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -127736,7 +133936,12 @@ { "chartID": "de84fea8f0aebc78554e41c213dad5bd47fbefeb", "data": { - "inGameID": 1794 + "inGameID": 1794, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -127800,7 +134005,12 @@ { "chartID": "c6ff74918f6b3fa8d66149edd117387e3517f323", "data": { - "inGameID": 1795 + "inGameID": 1795, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -127864,7 +134074,12 @@ { "chartID": "4da8ff714deba48d8de12769a8c1424551bd2ef9", "data": { - "inGameID": 1796 + "inGameID": 1796, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -127928,7 +134143,12 @@ { "chartID": "2e820ee157e4042a1b6edc797f1dd457391bd70d", "data": { - "inGameID": 1797 + "inGameID": 1797, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -127992,7 +134212,12 @@ { "chartID": "41568256a0fab97a51469e3eb071fb4f2707f6fb", "data": { - "inGameID": 1798 + "inGameID": 1798, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -128056,7 +134281,12 @@ { "chartID": "b9fb19eedf8721b2779758bee22c682f03e03e83", "data": { - "inGameID": 1799 + "inGameID": 1799, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -128120,7 +134350,12 @@ { "chartID": "0e1c627ec884d634e800ad6530d483a2fb5931c8", "data": { - "inGameID": 1800 + "inGameID": 1800, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -128184,7 +134419,12 @@ { "chartID": "bba826f6b1a6295f5d32632365fa2107b6a03ee2", "data": { - "inGameID": 1801 + "inGameID": 1801, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -128246,7 +134486,12 @@ { "chartID": "904050c5d68c6ce7e73be515d8804d9a732e4a60", "data": { - "inGameID": 1821 + "inGameID": 1821, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -128308,7 +134553,12 @@ { "chartID": "ebe25fb7642566fabc3c3eabb5bfb3e8a882130a", "data": { - "inGameID": 1833 + "inGameID": 1833, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -128372,7 +134622,12 @@ { "chartID": "e49ec0945de03ad4e0acd4d406763fb338499d69", "data": { - "inGameID": 1834 + "inGameID": 1834, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -128500,7 +134755,12 @@ { "chartID": "ebcd98dc6f3497e7d4a1edda5ac7371080aa2a22", "data": { - "inGameID": 1837 + "inGameID": 1837, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -128564,7 +134824,12 @@ { "chartID": "0315e97c49046addd79b86dceba1b09bf30af7b6", "data": { - "inGameID": 1850 + "inGameID": 1850, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -128628,7 +134893,12 @@ { "chartID": "ea3be8c3b2fcd8e1f94470e6fb5bdb085004ea36", "data": { - "inGameID": 1851 + "inGameID": 1851, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -128692,7 +134962,12 @@ { "chartID": "099276ef519ddf2c36d24d35dd52121879443d15", "data": { - "inGameID": 1852 + "inGameID": 1852, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -128756,7 +135031,12 @@ { "chartID": "c1e7a25d58eb5e41b664602b2bc398db6c2339f0", "data": { - "inGameID": 1853 + "inGameID": 1853, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -128804,7 +135084,12 @@ { "chartID": "0dad7bb56ad308df63f517bdba97a8f58b53bf95", "data": { - "inGameID": 1854 + "inGameID": 1854, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -128820,7 +135105,12 @@ { "chartID": "2a1734315c19d9638c2c5c50097318a4c10fb160", "data": { - "inGameID": 1854 + "inGameID": 1854, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 19.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -128882,7 +135172,12 @@ { "chartID": "ea38ea54ff890050806320534ccbfb3108e6b820", "data": { - "inGameID": 1855 + "inGameID": 1855, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -128942,7 +135237,12 @@ { "chartID": "8e164a79de009a5e208d400cc4296cbe03d5ae6e", "data": { - "inGameID": 1867 + "inGameID": 1867, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -129002,7 +135302,12 @@ { "chartID": "3b3c120df842c7c2bc77c94f07680a3c1aea9f6b", "data": { - "inGameID": 1868 + "inGameID": 1868, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -129062,7 +135367,12 @@ { "chartID": "9aa26703c93961abcd831d656b1ed13e8089c5a8", "data": { - "inGameID": 1869 + "inGameID": 1869, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -129122,7 +135432,12 @@ { "chartID": "ba28e1ac0a3e4a729aa9d89d754dee312c0092fc", "data": { - "inGameID": 1870 + "inGameID": 1870, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -129182,7 +135497,12 @@ { "chartID": "610a0b3e26e7dd60fd6f92c1b349087581713aae", "data": { - "inGameID": 1871 + "inGameID": 1871, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -129242,7 +135562,12 @@ { "chartID": "d7c57aa7779ba50f20f5a716e86e3d2de9ce4f30", "data": { - "inGameID": 1872 + "inGameID": 1872, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -129424,7 +135749,12 @@ { "chartID": "da6ed2b0e7163abdb7582e858f95f91ec2effedc", "data": { - "inGameID": 1875 + "inGameID": 1875, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -129488,7 +135818,12 @@ { "chartID": "e451484f2b79e536b466593090c5129bc5b501d8", "data": { - "inGameID": 1876 + "inGameID": 1876, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -129552,7 +135887,12 @@ { "chartID": "e82348d684d22c2a40f2fbad30becf2f42b9c140", "data": { - "inGameID": 1877 + "inGameID": 1877, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -129740,7 +136080,12 @@ { "chartID": "f5a9cab68bce629c8fe4e5846a7e12fb622f46a8", "data": { - "inGameID": 1880 + "inGameID": 1880, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -129851,7 +136196,12 @@ { "chartID": "a00f370bd2d447b686d0a2a2e6161afc9dde7015", "data": { - "inGameID": 1887 + "inGameID": 1887, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -129866,7 +136216,12 @@ { "chartID": "df207c6610474c079ff39254b3cb6565aa37b88a", "data": { - "inGameID": 1887 + "inGameID": 1887, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 19.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -129912,7 +136267,12 @@ { "chartID": "8aec18d656ebb4135c04f4ec9a266669d26c3b78", "data": { - "inGameID": 1888 + "inGameID": 1888, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -129928,7 +136288,12 @@ { "chartID": "de224200047a744f1fe1171b2a038dbce113bbc8", "data": { - "inGameID": 1888 + "inGameID": 1888, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 19.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -129976,7 +136341,12 @@ { "chartID": "af8acbd8a6a65c1ceae2405504d97935c0201075", "data": { - "inGameID": 1889 + "inGameID": 1889, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -129992,7 +136362,12 @@ { "chartID": "f2f1349c4e410c4e408ef846489fe6bd679ff287", "data": { - "inGameID": 1889 + "inGameID": 1889, + "sTier": { + "individualDifference": false, + "text": "Tier 0-", + "value": 20 + } }, "difficulty": "MXM", "isPrimary": true, @@ -130040,7 +136415,12 @@ { "chartID": "bf5a366492beeeeea3208ff2e573b944821a3a82", "data": { - "inGameID": 1890 + "inGameID": 1890, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -130056,7 +136436,12 @@ { "chartID": "4ac754a21858dab54c26e2522a61b4f40891b42b", "data": { - "inGameID": 1890 + "inGameID": 1890, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 19.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -130104,7 +136489,12 @@ { "chartID": "4c1176d62a7fd38d0397adef87c543b992908863", "data": { - "inGameID": 1891 + "inGameID": 1891, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -130120,7 +136510,12 @@ { "chartID": "ee37d240e1e072706d433506d8e4a3c164b71d19", "data": { - "inGameID": 1891 + "inGameID": 1891, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 19.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -130168,7 +136563,12 @@ { "chartID": "b482c1740c36af81f25d3be94b17247e9edb8129", "data": { - "inGameID": 1892 + "inGameID": 1892, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -130184,7 +136584,12 @@ { "chartID": "73c1b2154c5446f75285e96e70fd5a825a914504", "data": { - "inGameID": 1892 + "inGameID": 1892, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 19.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -130232,7 +136637,12 @@ { "chartID": "ca8589e672db6184fe23bf7159eb95b3fd468cc7", "data": { - "inGameID": 1893 + "inGameID": 1893, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -130248,7 +136658,12 @@ { "chartID": "c515f03d374fa7b065aa05c47666e3058f66f1a9", "data": { - "inGameID": 1893 + "inGameID": 1893, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 19.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -130296,7 +136711,12 @@ { "chartID": "4a3f0921687331f0edae6038259ee0a150fdfbde", "data": { - "inGameID": 1894 + "inGameID": 1894, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -130312,7 +136732,12 @@ { "chartID": "7ee3a67e9a01cebc6eb4d003ed083d4c928c7386", "data": { - "inGameID": 1894 + "inGameID": 1894, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 19.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -130360,7 +136785,12 @@ { "chartID": "fb4553bb5709ff977dfb5083cc78c49117467ad6", "data": { - "inGameID": 1895 + "inGameID": 1895, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -130376,7 +136806,12 @@ { "chartID": "03020752716d2fc30d5f28547dd5cce29a758226", "data": { - "inGameID": 1895 + "inGameID": 1895, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 19.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -130440,7 +136875,12 @@ { "chartID": "d5ad16fd12752313d35dfb8af417eea1e24de4df", "data": { - "inGameID": 1896 + "inGameID": 1896, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -130504,7 +136944,12 @@ { "chartID": "c850b33e6161833f4e258878e0a9d8612c523745", "data": { - "inGameID": 1897 + "inGameID": 1897, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -130568,7 +137013,12 @@ { "chartID": "6aa472f194f3f58f5f3141979188bea29675b618", "data": { - "inGameID": 1898 + "inGameID": 1898, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -130632,7 +137082,12 @@ { "chartID": "5637370561cef0c31f63d8779564275547118bd1", "data": { - "inGameID": 1899 + "inGameID": 1899, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -130696,7 +137151,12 @@ { "chartID": "dc48ca1349e14967671f0e8a8f805b3a2840e793", "data": { - "inGameID": 1900 + "inGameID": 1900, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -130760,7 +137220,12 @@ { "chartID": "bdaa0deed30a6455c207dc9253e402d6f2b561d8", "data": { - "inGameID": 1901 + "inGameID": 1901, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -130808,7 +137273,12 @@ { "chartID": "1567cb8cc3942d731afed1ec600701267a91e04b", "data": { - "inGameID": 1906 + "inGameID": 1906, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -130824,7 +137294,12 @@ { "chartID": "53962258c9ebc512bdbd59d0d18046692827e1c1", "data": { - "inGameID": 1906 + "inGameID": 1906, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 19.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -130888,7 +137363,12 @@ { "chartID": "0b2d5c755204850bfd7a9cedee9b82a002c695b0", "data": { - "inGameID": 1907 + "inGameID": 1907, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -130936,7 +137416,12 @@ { "chartID": "1321dbc130778f285e58c463aed977c5a8ed1ef4", "data": { - "inGameID": 1908 + "inGameID": 1908, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -130952,7 +137437,12 @@ { "chartID": "f5a058b6c8426ac1f37e476c6a7d2bab97235adb", "data": { - "inGameID": 1908 + "inGameID": 1908, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 19.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -131016,7 +137506,12 @@ { "chartID": "30f148b70f006b366582097ed0709866d43cb987", "data": { - "inGameID": 1909 + "inGameID": 1909, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -131064,7 +137559,12 @@ { "chartID": "cc4e3ca4a23808a620fd83226e4f4cdb9952bd63", "data": { - "inGameID": 1910 + "inGameID": 1910, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -131080,7 +137580,12 @@ { "chartID": "354966e14f0252ef0cb54cccfba0f97221b6297f", "data": { - "inGameID": 1910 + "inGameID": 1910, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 19.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -131142,7 +137647,12 @@ { "chartID": "de8235dd23e0c8f5822506b81713518f8170f5f9", "data": { - "inGameID": 1911 + "inGameID": 1911, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -131202,7 +137712,12 @@ { "chartID": "18878644fdc54f80c89aec50ddaf693e5197478b", "data": { - "inGameID": 1914 + "inGameID": 1914, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -131262,7 +137777,12 @@ { "chartID": "5f1f0aaf7aac9c221e53da6697ead47e1154142f", "data": { - "inGameID": 1915 + "inGameID": 1915, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -131322,7 +137842,12 @@ { "chartID": "cfb2feee842dc2131458271e66d14cc3cccb39ab", "data": { - "inGameID": 1916 + "inGameID": 1916, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -131382,7 +137907,12 @@ { "chartID": "0ebac2411d16fbc9053f026c1f0933b1b0169df6", "data": { - "inGameID": 1917 + "inGameID": 1917, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -131442,7 +137972,12 @@ { "chartID": "02722aed13461785e1c74ba06ad5b8d8f38e73ee", "data": { - "inGameID": 1918 + "inGameID": 1918, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -131504,7 +138039,12 @@ { "chartID": "1703c144fed9956656ca16ffd7216f4faf9ac342", "data": { - "inGameID": 1943 + "inGameID": 1943, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -131568,7 +138108,12 @@ { "chartID": "b3dfd39af12c23c42dc92f8f4765029cba9bf39c", "data": { - "inGameID": 1946 + "inGameID": 1946, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -131632,7 +138177,12 @@ { "chartID": "9d96db06e00c2478874078ed14d2801f0b7979a3", "data": { - "inGameID": 1947 + "inGameID": 1947, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -131696,7 +138246,12 @@ { "chartID": "ad69cb78665ba62529d841e2f142b45472dc0524", "data": { - "inGameID": 1948 + "inGameID": 1948, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -131760,7 +138315,12 @@ { "chartID": "ffb95e91fd6e330df8c970c1bf1dea37560f5253", "data": { - "inGameID": 1949 + "inGameID": 1949, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -131824,7 +138384,12 @@ { "chartID": "b0b3bcc782286c0c662c9a107a6e38d042f6cb7b", "data": { - "inGameID": 1951 + "inGameID": 1951, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -131888,7 +138453,12 @@ { "chartID": "1ed1a59aecbda2fef545fe3d4156d2c43f46f766", "data": { - "inGameID": 1952 + "inGameID": 1952, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -131952,7 +138522,12 @@ { "chartID": "bfbbd28cb01b0b2b3a6431c5b2e5de51c5cf3768", "data": { - "inGameID": 1953 + "inGameID": 1953, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -132016,7 +138591,12 @@ { "chartID": "dfc25f65bdd0373051157e455ecbd96bf9dacbac", "data": { - "inGameID": 1955 + "inGameID": 1955, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -132080,7 +138660,12 @@ { "chartID": "c0b1be4baa1bd0819c73b64ebce46c64eade60ed", "data": { - "inGameID": 1956 + "inGameID": 1956, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -132144,7 +138729,12 @@ { "chartID": "ef3c69a2c171a5ce24942be4bca9971fadc2f42c", "data": { - "inGameID": 1957 + "inGameID": 1957, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -132208,7 +138798,12 @@ { "chartID": "4385ded2b50f4482a793d15141233d1a770dd81a", "data": { - "inGameID": 1958 + "inGameID": 1958, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -132270,7 +138865,12 @@ { "chartID": "16a0f3a47b8916273dcd50c2a6d9f2a6a4fcb45c", "data": { - "inGameID": 1959 + "inGameID": 1959, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -132330,7 +138930,12 @@ { "chartID": "a614b04a0172913b156d1653055426fd6fc1066b", "data": { - "inGameID": 1846 + "inGameID": 1846, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -132376,7 +138981,12 @@ { "chartID": "edbf9a3857a1d2f38cdbfd1a900b80145f470d69", "data": { - "inGameID": 1939 + "inGameID": 1939, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -132392,7 +139002,12 @@ { "chartID": "619ba0e3f5a79833cc8a84ba5ff1e518d5dc2139", "data": { - "inGameID": 1939 + "inGameID": 1939, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 19.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -132440,7 +139055,12 @@ { "chartID": "17afe3f15273c2a4bc4c8581471e234c8fe3c093", "data": { - "inGameID": 1940 + "inGameID": 1940, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -132456,7 +139076,12 @@ { "chartID": "cb6c5e41615ec221a3e041e7dc98d75521a2882c", "data": { - "inGameID": 1940 + "inGameID": 1940, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 19.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -132504,7 +139129,12 @@ { "chartID": "601432f63457e10afa3de6a8128979aaa2213dcf", "data": { - "inGameID": 1942 + "inGameID": 1942, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -132520,7 +139150,12 @@ { "chartID": "953ff1f5929de1c1f494657453b77e57efcc9816", "data": { - "inGameID": 1942 + "inGameID": 1942, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 19.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -132584,7 +139219,12 @@ { "chartID": "2239b8be06762deee52e63d1d1cfafe126362d92", "data": { - "inGameID": 1944 + "inGameID": 1944, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -132648,7 +139288,12 @@ { "chartID": "a8bee1d4ab097f6ae908e8aa00e736040d78ec1f", "data": { - "inGameID": 1945 + "inGameID": 1945, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -132712,7 +139357,12 @@ { "chartID": "90549457aa94efae4ff56a88ab4c710b3d7425ff", "data": { - "inGameID": 1950 + "inGameID": 1950, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -132776,7 +139426,12 @@ { "chartID": "3afbaf9a830b4ebd81cc1c855cd747346c725fc8", "data": { - "inGameID": 1954 + "inGameID": 1954, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -132824,7 +139479,12 @@ { "chartID": "ac3ea1bb220630733f5202dcd7a39a332f907548", "data": { - "inGameID": 1978 + "inGameID": 1978, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -132840,7 +139500,12 @@ { "chartID": "62d4e04d9ce423bb14cc91f546e49068705c25d0", "data": { - "inGameID": 1978 + "inGameID": 1978, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 19.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -132904,7 +139569,12 @@ { "chartID": "df2746c38aa51c3a9d491d9e2c311c78cf0cffba", "data": { - "inGameID": 1979 + "inGameID": 1979, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -132968,7 +139638,12 @@ { "chartID": "d55c1132a74db345706ea98cad1ac60fcf0dce13", "data": { - "inGameID": 1980 + "inGameID": 1980, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -133016,7 +139691,12 @@ { "chartID": "fd91f27b5488601f9b94c75febaf20d2f4e4c7d7", "data": { - "inGameID": 1941 + "inGameID": 1941, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -133032,7 +139712,12 @@ { "chartID": "9740faef8b1b10733d0915aaefd41885286dd9d2", "data": { - "inGameID": 1941 + "inGameID": 1941, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 19.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -133094,7 +139779,12 @@ { "chartID": "0c61f8ac1bd776b124a5d164bcccfa020203268b", "data": { - "inGameID": 1960 + "inGameID": 1960, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -133214,7 +139904,12 @@ { "chartID": "fa9a986ecb8694e72a5282fb7fd0f42682d6c6e1", "data": { - "inGameID": 1962 + "inGameID": 1962, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -133260,7 +139955,12 @@ { "chartID": "f7dc9dc6ffdde3c01edc93e34c9a8d7b45a5f591", "data": { - "inGameID": 1919 + "inGameID": 1919, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -133276,7 +139976,12 @@ { "chartID": "0c4b43ca17f3bde4491182295e1584a765e96e67", "data": { - "inGameID": 1919 + "inGameID": 1919, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 19.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -133340,7 +140045,12 @@ { "chartID": "35a79282728371843498fef78e4f1ee4d413d8af", "data": { - "inGameID": 1920 + "inGameID": 1920, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -133388,7 +140098,12 @@ { "chartID": "2fe92242e9add6a227904a6be31e4d939d1448b5", "data": { - "inGameID": 1921 + "inGameID": 1921, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -133404,7 +140119,12 @@ { "chartID": "e02d7f5f37cad1db447530c13d66fbac6de554f9", "data": { - "inGameID": 1921 + "inGameID": 1921, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 19.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -133468,7 +140188,12 @@ { "chartID": "3becc480e3567143a05fa05bb11bb9466a9b04dd", "data": { - "inGameID": 1922 + "inGameID": 1922, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -133532,7 +140257,12 @@ { "chartID": "f5fd582b71a0984314ede880b8e2316062bccdc2", "data": { - "inGameID": 1923 + "inGameID": 1923, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -133596,7 +140326,12 @@ { "chartID": "aa81c2febcac0dd6bc8e6f679eeb9afaea1a261a", "data": { - "inGameID": 1924 + "inGameID": 1924, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -133660,7 +140395,12 @@ { "chartID": "3dfe3037d1e68f6e4a7ce1d17a6a18dc00dd7747", "data": { - "inGameID": 1925 + "inGameID": 1925, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -133724,7 +140464,12 @@ { "chartID": "88dcf34d921da6f917dbb895669800ebba296683", "data": { - "inGameID": 1926 + "inGameID": 1926, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -133772,7 +140517,12 @@ { "chartID": "db086bb0e9f6ae3d44678e7793e942a8f95a38e8", "data": { - "inGameID": 1938 + "inGameID": 1938, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -133788,7 +140538,12 @@ { "chartID": "c7251253169960affdceb8bf2a13318d7d96520d", "data": { - "inGameID": 1938 + "inGameID": 1938, + "sTier": { + "individualDifference": false, + "text": "Tier 0+", + "value": 20.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -133852,7 +140607,12 @@ { "chartID": "9bca6cf5326eda425cd34a335df2e5064a17a30c", "data": { - "inGameID": 1983 + "inGameID": 1983, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -133916,7 +140676,12 @@ { "chartID": "9efb48f28fcfef19228e90f231c068c6954727f2", "data": { - "inGameID": 1984 + "inGameID": 1984, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -133980,7 +140745,12 @@ { "chartID": "774b04bdfa1dd1b7f778a742c68d66061cf6ec70", "data": { - "inGameID": 1985 + "inGameID": 1985, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -134044,7 +140814,12 @@ { "chartID": "540af6dda40feaab6d10a579f50295eb9fd42774", "data": { - "inGameID": 1986 + "inGameID": 1986, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -134108,7 +140883,12 @@ { "chartID": "1d700e223953c8669e09a7544f0740f7648a744b", "data": { - "inGameID": 1987 + "inGameID": 1987, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -134170,7 +140950,12 @@ { "chartID": "bc52ae13779046b7856302d42fb1904c84ae44b0", "data": { - "inGameID": 1912 + "inGameID": 1912, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -134230,7 +141015,12 @@ { "chartID": "271521cbba15a012eb4dbf07a3db76c11ac7f55c", "data": { - "inGameID": 1913 + "inGameID": 1913, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -134292,7 +141082,12 @@ { "chartID": "06884b4b5e7f252ca1cc29e61c9d88ac30a6773b", "data": { - "inGameID": 1928 + "inGameID": 1928, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -134356,7 +141151,12 @@ { "chartID": "97a47858933cf864e548c202413954f13104ac6d", "data": { - "inGameID": 1931 + "inGameID": 1931, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -134420,7 +141220,12 @@ { "chartID": "f00304388c03fedb0b130739b7a27f4cd79051c3", "data": { - "inGameID": 2000 + "inGameID": 2000, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -134484,7 +141289,12 @@ { "chartID": "796d6a715aeb790208e4afb2fd0ce3eba83b0f42", "data": { - "inGameID": 2017 + "inGameID": 2017, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -134548,7 +141358,12 @@ { "chartID": "23a229c5bede974635efccbc169ed40cdc461023", "data": { - "inGameID": 2025 + "inGameID": 2025, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -134610,7 +141425,12 @@ { "chartID": "418aee5ab0531001279de4f71b19d0d68687b24d", "data": { - "inGameID": 2027 + "inGameID": 2027, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -134670,7 +141490,12 @@ { "chartID": "14b317f3b2a5a71224f038e77872e280736a7f1b", "data": { - "inGameID": 2028 + "inGameID": 2028, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -134730,7 +141555,12 @@ { "chartID": "e21db108c41efc2f6917d5b499cc44a4199bf35d", "data": { - "inGameID": 2029 + "inGameID": 2029, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -134790,7 +141620,12 @@ { "chartID": "09a16cfd0decec5d692ede7983c730c2ac46b3fb", "data": { - "inGameID": 2030 + "inGameID": 2030, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -134852,7 +141687,12 @@ { "chartID": "1790b5834fbeba25e1445f470704ded97020cea5", "data": { - "inGameID": 1905 + "inGameID": 1905, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -134916,7 +141756,12 @@ { "chartID": "b3d96b87e28463b2995d9d04d69cbd956cb1f222", "data": { - "inGameID": 1927 + "inGameID": 1927, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -134980,7 +141825,12 @@ { "chartID": "4f9285473c59835dbf1a243802a73336bc6b527f", "data": { - "inGameID": 1929 + "inGameID": 1929, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -135044,7 +141894,12 @@ { "chartID": "e20bcd12cedbfe79385d0543ce99da7cfd457be2", "data": { - "inGameID": 1930 + "inGameID": 1930, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -135108,7 +141963,12 @@ { "chartID": "e735da66c7c26c31701eff6eff861700fc98b3ca", "data": { - "inGameID": 1932 + "inGameID": 1932, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -135172,7 +142032,12 @@ { "chartID": "0e2b8daae3ddb832956d741d583c09b7c8c887cc", "data": { - "inGameID": 1933 + "inGameID": 1933, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -135236,7 +142101,12 @@ { "chartID": "c7ffcbe5b528f413c6cb3ec839c84afbdd95e438", "data": { - "inGameID": 1934 + "inGameID": 1934, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -135300,7 +142170,12 @@ { "chartID": "7e82dd0d8b17641746efddc27bbab31915ffac07", "data": { - "inGameID": 1935 + "inGameID": 1935, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -135364,7 +142239,12 @@ { "chartID": "ed99b25abba8d4c40ecb9ec24e55a03348a1fce4", "data": { - "inGameID": 1936 + "inGameID": 1936, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -135428,7 +142308,12 @@ { "chartID": "eb39e0b2334db9e11b73d2b8e04325d448006d3e", "data": { - "inGameID": 1937 + "inGameID": 1937, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -135492,7 +142377,12 @@ { "chartID": "71915f39163d4b6bae27e8c710f3a7f0ffdf2d96", "data": { - "inGameID": 1835 + "inGameID": 1835, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -135554,7 +142444,12 @@ { "chartID": "66244a9ff89149e9111b7dfab4e345bc15e1834e", "data": { - "inGameID": 1882 + "inGameID": 1882, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -135616,7 +142511,12 @@ { "chartID": "55a20320a3a7f27310847b570f6db5788d15188d", "data": { - "inGameID": 1990 + "inGameID": 1990, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -135680,7 +142580,12 @@ { "chartID": "74dd435b1af1d9d7653c4f647e468493849e02b9", "data": { - "inGameID": 1995 + "inGameID": 1995, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -135728,7 +142633,12 @@ { "chartID": "3e7933ca54245381a953dc3b73216ee5630c72ab", "data": { - "inGameID": 1997 + "inGameID": 1997, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -135744,7 +142654,12 @@ { "chartID": "c280794b1a5384a1ae5d89f2e60a4ca69c4b3938", "data": { - "inGameID": 1997 + "inGameID": 1997, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 19.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -135808,7 +142723,12 @@ { "chartID": "72ba21c824a05e99bb989e927e1a87d22079830f", "data": { - "inGameID": 2014 + "inGameID": 2014, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -135872,7 +142792,12 @@ { "chartID": "88ab5cf933fe3973e3bfaea8bbd75d9bd8cde7d8", "data": { - "inGameID": 2016 + "inGameID": 2016, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -135936,7 +142861,12 @@ { "chartID": "a9cb1a79b82c6cc39c7dd469db42c754e691a819", "data": { - "inGameID": 2021 + "inGameID": 2021, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -135998,7 +142928,12 @@ { "chartID": "62b13b5825adca8240c41b47c495e83975a84fb3", "data": { - "inGameID": 2031 + "inGameID": 2031, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -136058,7 +142993,12 @@ { "chartID": "bb88a6bae0390be659beaccb97446479865b97f8", "data": { - "inGameID": 2032 + "inGameID": 2032, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -136118,7 +143058,12 @@ { "chartID": "e8c8daa9cf6741d0392944469c6bfa27503ec89c", "data": { - "inGameID": 2033 + "inGameID": 2033, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -136178,7 +143123,12 @@ { "chartID": "6bd6ad1c62c93417ff3cc618411cbc87b9a0760a", "data": { - "inGameID": 2034 + "inGameID": 2034, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 19 + } }, "difficulty": "MXM", "isPrimary": true, @@ -136238,7 +143188,12 @@ { "chartID": "dff702d69b9ce34030b359f3918e63cdd57cfe5d", "data": { - "inGameID": 2035 + "inGameID": 2035, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -136298,7 +143253,12 @@ { "chartID": "91f7cc232faaac044950a9a844d5097fcdd40cae", "data": { - "inGameID": 2036 + "inGameID": 2036, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -136360,7 +143320,12 @@ { "chartID": "5b1398a4e3e3b227623560510ec8af170b3a56b4", "data": { - "inGameID": 2051 + "inGameID": 2051, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -136424,7 +143389,12 @@ { "chartID": "a9ba5e4cbc7600cc8dd8838245a049448915b2e3", "data": { - "inGameID": 2052 + "inGameID": 2052, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -136486,7 +143456,12 @@ { "chartID": "eda2d1a2454f601f9a6c87e1801c13710e1b72ce", "data": { - "inGameID": 2058 + "inGameID": 2058, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -136532,7 +143507,12 @@ { "chartID": "400f6307223a065558c547be2792276647a945a2", "data": { - "inGameID": 2037 + "inGameID": 2037, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -136548,7 +143528,12 @@ { "chartID": "1bdb6469278306b8e0b6a70b33603b989b5454a6", "data": { - "inGameID": 2037 + "inGameID": 2037, + "sTier": { + "individualDifference": false, + "text": "Tier 0-", + "value": 20 + } }, "difficulty": "MXM", "isPrimary": true, @@ -136596,7 +143581,12 @@ { "chartID": "e8fa13d09d4022ae87dea8975aaf376f08dcbe89", "data": { - "inGameID": 2039 + "inGameID": 2039, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -136612,7 +143602,12 @@ { "chartID": "058f444f1a27e17d3703e08779abf43d745e59de", "data": { - "inGameID": 2039 + "inGameID": 2039, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 19.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -136660,7 +143655,12 @@ { "chartID": "64b337c321dc8848a973a0b21d1ad426a1752a79", "data": { - "inGameID": 2040 + "inGameID": 2040, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "EXH", "isPrimary": true, @@ -136676,7 +143676,12 @@ { "chartID": "34d306729251aceba8e8b1288c0c41a984af9157", "data": { - "inGameID": 2040 + "inGameID": 2040, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 19.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -136740,7 +143745,12 @@ { "chartID": "65eaa15ebc71a17130d090f7d596ce421671658c", "data": { - "inGameID": 2044 + "inGameID": 2044, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -136804,7 +143814,12 @@ { "chartID": "398b216bae720406943f9d41e3b5cc69399c04a1", "data": { - "inGameID": 2046 + "inGameID": 2046, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -136868,7 +143883,12 @@ { "chartID": "00d50ec60c19bb2857f8d2e934cacc86910b91b4", "data": { - "inGameID": 2047 + "inGameID": 2047, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -136932,7 +143952,12 @@ { "chartID": "1075860690289a456965a84b2c5ad6e84f00d564", "data": { - "inGameID": 2050 + "inGameID": 2050, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -136994,7 +144019,12 @@ { "chartID": "aea6543cab8baaf92a6d3bd74d3044d8fadbde85", "data": { - "inGameID": 2059 + "inGameID": 2059, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -137056,7 +144086,12 @@ { "chartID": "c558accdb450731f73b147b186451a8296bead06", "data": { - "inGameID": 2060 + "inGameID": 2060, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -137118,7 +144153,12 @@ { "chartID": "bd963449b0aea80c9be6ebfef80f44d146464046", "data": { - "inGameID": 2063 + "inGameID": 2063, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -137178,7 +144218,12 @@ { "chartID": "e98967aeea84d46bf5a6582d1f62028859e9fc07", "data": { - "inGameID": 2064 + "inGameID": 2064, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -137238,7 +144283,12 @@ { "chartID": "65f53d387bd079de18c41e8f9978f27cd3e13d00", "data": { - "inGameID": 2065 + "inGameID": 2065, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -137300,7 +144350,12 @@ { "chartID": "62c35625ceec119e2b15c01dbcd02f59856c1af7", "data": { - "inGameID": 1992 + "inGameID": 1992, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -137364,7 +144419,12 @@ { "chartID": "61857f029bf6af451d514cd98b7650a20895796b", "data": { - "inGameID": 1998 + "inGameID": 1998, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -137428,7 +144488,12 @@ { "chartID": "d50561293bd36261508af4fd8e5cfe71a3a3b039", "data": { - "inGameID": 2006 + "inGameID": 2006, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -137492,7 +144557,12 @@ { "chartID": "37c59737fdfeab1fd564fb395eae23a4c2bbbc84", "data": { - "inGameID": 2019 + "inGameID": 2019, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -137540,7 +144610,12 @@ { "chartID": "ec0526b94988c6394a7d6ae940823b21dbe613da", "data": { - "inGameID": 2038 + "inGameID": 2038, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -137556,7 +144631,12 @@ { "chartID": "7ffc1141cc3d6cf64ddd8e2f1b02ee8999531208", "data": { - "inGameID": 2038 + "inGameID": 2038, + "sTier": { + "individualDifference": false, + "text": "Tier 0+", + "value": 20.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -137604,7 +144684,12 @@ { "chartID": "4b812b5d20612618d6014e1c9ee8813f75514254", "data": { - "inGameID": 2041 + "inGameID": 2041, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -137620,7 +144705,12 @@ { "chartID": "6a78d19a315c15f30a29e7f495a9fe47e77e23ea", "data": { - "inGameID": 2041 + "inGameID": 2041, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 19.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -137668,7 +144758,12 @@ { "chartID": "26b58c7fa5d1625638a49db1a02c420db14f04cb", "data": { - "inGameID": 2042 + "inGameID": 2042, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 17.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -137684,7 +144779,12 @@ { "chartID": "23c3796249cb73a272b434ee2ef5419a60339f5b", "data": { - "inGameID": 2042 + "inGameID": 2042, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 19.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -137748,7 +144848,12 @@ { "chartID": "0d99bf96e3e72051457af23b08159a35b5ca8e6a", "data": { - "inGameID": 2043 + "inGameID": 2043, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -137812,7 +144917,12 @@ { "chartID": "a4dec39ae262cb8d2737f0f46588e49611688293", "data": { - "inGameID": 2045 + "inGameID": 2045, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -137876,7 +144986,12 @@ { "chartID": "0118f69e6afef34d8de6801497efe9f7966e75e5", "data": { - "inGameID": 2048 + "inGameID": 2048, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -137940,7 +145055,12 @@ { "chartID": "08498df9aa935c55d2cc2f28395e3d95bd2e7915", "data": { - "inGameID": 2049 + "inGameID": 2049, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -138004,7 +145124,12 @@ { "chartID": "599ab19831e88a3b499931af7ca348996796cc74", "data": { - "inGameID": 2061 + "inGameID": 2061, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -138052,7 +145177,12 @@ { "chartID": "fc3af1b02294d71809c90940c17ed92249f04056", "data": { - "inGameID": 2062 + "inGameID": 2062, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -138068,7 +145198,12 @@ { "chartID": "0c3861871342cae8ff0f1e4ac0181ef647ad7c4a", "data": { - "inGameID": 2062 + "inGameID": 2062, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 19.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -138132,7 +145267,12 @@ { "chartID": "ecee355f812edaeb064b7989525e50f37d295f3c", "data": { - "inGameID": 2069 + "inGameID": 2069, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -138196,7 +145336,12 @@ { "chartID": "902101beffc564518dd6a913c57751c10aff3a54", "data": { - "inGameID": 2070 + "inGameID": 2070, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -138324,7 +145469,12 @@ { "chartID": "ad767661ef8bcadeb5da2907f2370d19bf18119f", "data": { - "inGameID": 2072 + "inGameID": 2072, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -138388,7 +145538,12 @@ { "chartID": "1364b55c4a72428583f4bffea9e8b2bb224271d7", "data": { - "inGameID": 2073 + "inGameID": 2073, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -138452,7 +145607,12 @@ { "chartID": "955a055be53047a0fba216003012ad31b9bafd38", "data": { - "inGameID": 2053 + "inGameID": 2053, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -138516,7 +145676,12 @@ { "chartID": "c217de682b638b9c6b85e92bbc5afc9e873e0550", "data": { - "inGameID": 2054 + "inGameID": 2054, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -138580,7 +145745,12 @@ { "chartID": "00dc188b3a47fe3fe24d5d0dee40b039e209539d", "data": { - "inGameID": 2055 + "inGameID": 2055, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -138644,7 +145814,12 @@ { "chartID": "7e4a1aa883aba1f77b2accd31982e03d20aa6ed0", "data": { - "inGameID": 2056 + "inGameID": 2056, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -138708,7 +145883,12 @@ { "chartID": "e5b2cd5fbe105ce7327bbdbb9e089a526b45673d", "data": { - "inGameID": 2057 + "inGameID": 2057, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -138772,7 +145952,12 @@ { "chartID": "f3bb1b5134db13d6597ff19993098ca404dc8f2f", "data": { - "inGameID": 1996 + "inGameID": 1996, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -138836,7 +146021,12 @@ { "chartID": "5d3bf8d591da7b8b883e7780a0a90762a38d8db0", "data": { - "inGameID": 2005 + "inGameID": 2005, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -138900,7 +146090,12 @@ { "chartID": "2754dfb626c2611c240bbd82d1ee5abe361b0a9d", "data": { - "inGameID": 2012 + "inGameID": 2012, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -138964,7 +146159,12 @@ { "chartID": "8829ebbe74fbe032ef40222ae06c2c5df8e8a1cd", "data": { - "inGameID": 2026 + "inGameID": 2026, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -139086,7 +146286,12 @@ { "chartID": "88970efce5aff3436370cfe34eefd83ff0395e3e", "data": { - "inGameID": 2074 + "inGameID": 2074, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -139146,7 +146351,12 @@ { "chartID": "be1b42e51ffc2e0b5f81441b2d3f3f25af557eb7", "data": { - "inGameID": 2075 + "inGameID": 2075, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -139206,7 +146416,12 @@ { "chartID": "1621f5ee65f866fca34e14b861623d684d3c3a9f", "data": { - "inGameID": 2076 + "inGameID": 2076, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -139266,7 +146481,12 @@ { "chartID": "741aaf4374ea35ce12b636df8f2fe756ff3eedfc", "data": { - "inGameID": 2077 + "inGameID": 2077, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -139326,7 +146546,12 @@ { "chartID": "3e0257ebb8a32ff495e9effd62843601932397be", "data": { - "inGameID": 2078 + "inGameID": 2078, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -139388,7 +146613,12 @@ { "chartID": "3c88ec60f480fe68ad9e562ed2ae572ed082800f", "data": { - "inGameID": 2079 + "inGameID": 2079, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -139452,7 +146682,12 @@ { "chartID": "5e1130d0df91b2e492530d9f88c56fda7254f92f", "data": { - "inGameID": 2080 + "inGameID": 2080, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -139516,7 +146751,12 @@ { "chartID": "d46f3d19f58d2135d715a051645c1b849d7379cd", "data": { - "inGameID": 2081 + "inGameID": 2081, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -139580,7 +146820,12 @@ { "chartID": "bf1de0d409ca968fee1e77e1e67255be5c358b62", "data": { - "inGameID": 2082 + "inGameID": 2082, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -139628,7 +146873,12 @@ { "chartID": "c19986b08338229f2b74703d582e280575fbc854", "data": { - "inGameID": 2083 + "inGameID": 2083, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -139644,7 +146894,12 @@ { "chartID": "e24fe2f99370a181626671018c7a95efaa74cc6e", "data": { - "inGameID": 2083 + "inGameID": 2083, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 19.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -139692,7 +146947,12 @@ { "chartID": "f15a8df0e2b44077f3322ee45dadad054b0560f4", "data": { - "inGameID": 2084 + "inGameID": 2084, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -139708,7 +146968,12 @@ { "chartID": "19deae28043d2fd012f06995a92e115644dd4367", "data": { - "inGameID": 2084 + "inGameID": 2084, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 19.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -139756,7 +147021,12 @@ { "chartID": "9d3b82719d12c6b345c604a9f600b9f0abcdaaf4", "data": { - "inGameID": 2085 + "inGameID": 2085, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -139772,7 +147042,12 @@ { "chartID": "4052fda03a9aa1c20afe9c76ddc676554872f34f", "data": { - "inGameID": 2085 + "inGameID": 2085, + "sTier": { + "individualDifference": false, + "text": "Tier 0-", + "value": 20 + } }, "difficulty": "MXM", "isPrimary": true, @@ -139834,7 +147109,12 @@ { "chartID": "9baf81490ec561f2a8cfc182ecd1ac133265af8b", "data": { - "inGameID": 2066 + "inGameID": 2066, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -139894,7 +147174,12 @@ { "chartID": "914ea735f0ece547ec6c375789a867a8bc1f1722", "data": { - "inGameID": 2067 + "inGameID": 2067, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -139954,7 +147239,12 @@ { "chartID": "87e330c1daf72a24d125af150b755a8e998231cd", "data": { - "inGameID": 2068 + "inGameID": 2068, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -139999,7 +147289,12 @@ { "chartID": "9c77b3a5b6dca323602fe3ee85f5d83ae3fd1c40", "data": { - "inGameID": 2119 + "inGameID": 2119, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -140014,7 +147309,12 @@ { "chartID": "f023fcae27eeb1beb90bad5a3e79fa46835f926d", "data": { - "inGameID": 2119 + "inGameID": 2119, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 19.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -140076,7 +147376,12 @@ { "chartID": "261ec571050f71d30213a2f8f0b3089cd438b6de", "data": { - "inGameID": 2129 + "inGameID": 2129, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -140140,7 +147445,12 @@ { "chartID": "e98514c0fa4fdb1164be81927b7c1e46af619cfc", "data": { - "inGameID": 2130 + "inGameID": 2130, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -140204,7 +147514,12 @@ { "chartID": "c616d15b3113529a04e27288076486823e38b450", "data": { - "inGameID": 2165 + "inGameID": 2165, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -140268,7 +147583,12 @@ { "chartID": "e70dbee898dc48dd2b5cf31638b162ee78ebe7e2", "data": { - "inGameID": 2166 + "inGameID": 2166, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -140332,7 +147652,12 @@ { "chartID": "6a8a3c1bd7e8fd2a36cb2eac6382e13a4486ede4", "data": { - "inGameID": 2167 + "inGameID": 2167, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -140396,7 +147721,12 @@ { "chartID": "52ce3fd59d44ffcdbd18c827308b3ceff116eecc", "data": { - "inGameID": 2132 + "inGameID": 2132, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -140460,7 +147790,12 @@ { "chartID": "92b559f30c4addd532d2632f6ce68eb83e221e60", "data": { - "inGameID": 2133 + "inGameID": 2133, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -140524,7 +147859,12 @@ { "chartID": "5856f8b84e0d15171f0c1b220854cfef9068544e", "data": { - "inGameID": 2134 + "inGameID": 2134, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -140588,7 +147928,12 @@ { "chartID": "a3ff5cfc30e6b865aa416b35d456aa21d06c9b81", "data": { - "inGameID": 2135 + "inGameID": 2135, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -140652,7 +147997,12 @@ { "chartID": "2c5d0db2ab04cadf6704494dbf4534a2afde99f5", "data": { - "inGameID": 2136 + "inGameID": 2136, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -140716,7 +148066,12 @@ { "chartID": "2b5c8a1e970ad8ef00d55417868f0996ce8a2259", "data": { - "inGameID": 2137 + "inGameID": 2137, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -140778,7 +148133,12 @@ { "chartID": "d2a0cb0bfae61eae08a797f4f5e356d6c226064d", "data": { - "inGameID": 2162 + "inGameID": 2162, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -140838,7 +148198,12 @@ { "chartID": "af13eb4dac93ea321b0c9d6c4414abd955a75daa", "data": { - "inGameID": 2163 + "inGameID": 2163, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -140883,7 +148248,12 @@ { "chartID": "7fec849fe95488e011cdee7cd1a109355531e1f0", "data": { - "inGameID": 2164 + "inGameID": 2164, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -140898,7 +148268,12 @@ { "chartID": "d003a874d0955479db59a4e648cb974abe06ce26", "data": { - "inGameID": 2164 + "inGameID": 2164, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 19.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -141020,7 +148395,12 @@ { "chartID": "881c819e802f819021a752cfa70a9d2c97665289", "data": { - "inGameID": 2121 + "inGameID": 2121, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -141084,7 +148464,12 @@ { "chartID": "ce397a91f529db779e160c6cf46402833905ca06", "data": { - "inGameID": 2122 + "inGameID": 2122, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -141132,7 +148517,12 @@ { "chartID": "48c27a4a1a5a551ebeddfbb7e4e0dbc60b97000c", "data": { - "inGameID": 2123 + "inGameID": 2123, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -141148,7 +148538,12 @@ { "chartID": "a5d7fd327c503089efd7937471a363504620b7e1", "data": { - "inGameID": 2123 + "inGameID": 2123, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 19.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -141196,7 +148591,12 @@ { "chartID": "a2cdf67114d808b44843d0a0b2867b6be714cb4b", "data": { - "inGameID": 2124 + "inGameID": 2124, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -141212,7 +148612,12 @@ { "chartID": "9aa5c78402d06cd64699c25fe1df07621cd221fd", "data": { - "inGameID": 2124 + "inGameID": 2124, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 19.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -141276,7 +148681,12 @@ { "chartID": "3df9665fc30d7079f7c20656d456cc034a27837d", "data": { - "inGameID": 2125 + "inGameID": 2125, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -141340,7 +148750,12 @@ { "chartID": "71e18ab58914621e4614c6ec5eebf92a1aa5ec50", "data": { - "inGameID": 2126 + "inGameID": 2126, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -141404,7 +148819,12 @@ { "chartID": "e1f2fe50b20ad77f3896957118da232ca64c5f43", "data": { - "inGameID": 2127 + "inGameID": 2127, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -141468,7 +148888,12 @@ { "chartID": "9ee373031926576203e03a2f9d19082c6b674c41", "data": { - "inGameID": 2128 + "inGameID": 2128, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -141532,7 +148957,12 @@ { "chartID": "55ec01ca1d4650877addc051189d350d21637b42", "data": { - "inGameID": 2131 + "inGameID": 2131, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -141596,7 +149026,12 @@ { "chartID": "438e9e925c0e6d7fc7e7fd27f8391682e575fa35", "data": { - "inGameID": 2138 + "inGameID": 2138, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -141660,7 +149095,12 @@ { "chartID": "8a739337910fe0ba6263834182eb42f49e2a0688", "data": { - "inGameID": 2139 + "inGameID": 2139, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -141724,7 +149164,12 @@ { "chartID": "ab2b9b23bbdabd49941c38052826b6e6fe13240c", "data": { - "inGameID": 2140 + "inGameID": 2140, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -141788,7 +149233,12 @@ { "chartID": "f6e250df9b76398f89d131fbf3b38b01f0cbef06", "data": { - "inGameID": 2141 + "inGameID": 2141, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -141852,7 +149302,12 @@ { "chartID": "013687c6bb8c88c7abbbe9b466272f199a1697f5", "data": { - "inGameID": 2142 + "inGameID": 2142, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -141916,7 +149371,12 @@ { "chartID": "dcee2c7e5aff3e194ecc7fb380fc9d4c96f019cf", "data": { - "inGameID": 2143 + "inGameID": 2143, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -141980,7 +149440,12 @@ { "chartID": "6cfd12a65da1a23b4c470b063399c04c9881e499", "data": { - "inGameID": 2144 + "inGameID": 2144, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -142044,7 +149509,12 @@ { "chartID": "4cbfbab054417b5a36145da7dcb2a51a931aff88", "data": { - "inGameID": 2145 + "inGameID": 2145, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -142108,7 +149578,12 @@ { "chartID": "2ba79108066f659cd3dc93201965fe9909120f35", "data": { - "inGameID": 2146 + "inGameID": 2146, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -142172,7 +149647,12 @@ { "chartID": "ecf6c034f67e2da35111798ea17b582c7bf22985", "data": { - "inGameID": 2147 + "inGameID": 2147, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -142236,7 +149716,12 @@ { "chartID": "214388f328d8e25b4e53626e76c8d4aff0e408dd", "data": { - "inGameID": 2148 + "inGameID": 2148, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -142300,7 +149785,12 @@ { "chartID": "2ecdf76e75923cf4ad0776ac92b2ae70526af373", "data": { - "inGameID": 2149 + "inGameID": 2149, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -142348,7 +149838,12 @@ { "chartID": "542233a2d6cdf3dec118055ded337890a5a347a6", "data": { - "inGameID": 2150 + "inGameID": 2150, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -142364,7 +149859,12 @@ { "chartID": "960b363c15ba44dfa85f69c841d9c8c356dc465d", "data": { - "inGameID": 2150 + "inGameID": 2150, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 19.8 + } }, "difficulty": "MXM", "isPrimary": true, @@ -142412,7 +149912,12 @@ { "chartID": "1a5b3ee38f6a47c519f926ee8bfabc47b981bdfb", "data": { - "inGameID": 2151 + "inGameID": 2151, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 17.6 + } }, "difficulty": "EXH", "isPrimary": true, @@ -142428,7 +149933,12 @@ { "chartID": "17da3f31b6fe80f6c54ef582f5e3f459a67cf5a2", "data": { - "inGameID": 2151 + "inGameID": 2151, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 19.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -142476,7 +149986,12 @@ { "chartID": "0bf9634e4a03265a9207c5bf2db3052f6c528c0f", "data": { - "inGameID": 2152 + "inGameID": 2152, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "EXH", "isPrimary": true, @@ -142492,7 +150007,12 @@ { "chartID": "02193665aebdd5fa1771910ff4c5eea21cbaa1d5", "data": { - "inGameID": 2152 + "inGameID": 2152, + "sTier": { + "individualDifference": false, + "text": "Tier 0+", + "value": 20.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -142556,7 +150076,12 @@ { "chartID": "166c7929b7db4c112bcea02b2eb9099b9018815f", "data": { - "inGameID": 2160 + "inGameID": 2160, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -142604,7 +150129,12 @@ { "chartID": "89cf9bba57b5b2fb7a2a1561aa7a0830e7c1646d", "data": { - "inGameID": 2161 + "inGameID": 2161, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "EXH", "isPrimary": true, @@ -142620,7 +150150,12 @@ { "chartID": "76732f57f13813fd5aab78941e87e5fcb4f555ac", "data": { - "inGameID": 2161 + "inGameID": 2161, + "sTier": { + "individualDifference": false, + "text": "Tier 0+", + "value": 20.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -142682,7 +150217,12 @@ { "chartID": "1545417cdb5f43a86d3b54700f4e99bc8ca4c675", "data": { - "inGameID": 2169 + "inGameID": 2169, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -142744,7 +150284,12 @@ { "chartID": "8708dea2eed84aaa95ff94319597399a14a38f03", "data": { - "inGameID": 2171 + "inGameID": 2171, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 19 + } }, "difficulty": "MXM", "isPrimary": true, @@ -142806,7 +150351,12 @@ { "chartID": "856b3b3591e7a306e0893d07eee5c1a010026023", "data": { - "inGameID": 1988 + "inGameID": 1988, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -142866,7 +150416,12 @@ { "chartID": "d5cf63e2a8450ffaf890ff72497ec49cf365e7d9", "data": { - "inGameID": 1993 + "inGameID": 1993, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -142926,7 +150481,12 @@ { "chartID": "a89d7cf4da4d56b71d108ba787a6070c54c83af7", "data": { - "inGameID": 1994 + "inGameID": 1994, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -142986,7 +150546,12 @@ { "chartID": "6091412c3757efc31d291ff9619434eba5c560b4", "data": { - "inGameID": 2001 + "inGameID": 2001, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -143046,7 +150611,12 @@ { "chartID": "db2221218ff0afc722c977b912b5afb214ac4ce9", "data": { - "inGameID": 2003 + "inGameID": 2003, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -143106,7 +150676,12 @@ { "chartID": "c278442b94437f409a2d92dffb521dfb5aad230b", "data": { - "inGameID": 2007 + "inGameID": 2007, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -143166,7 +150741,12 @@ { "chartID": "b38128ce8511475a0c0186c28d7abb642d8b5e26", "data": { - "inGameID": 2008 + "inGameID": 2008, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -143226,7 +150806,12 @@ { "chartID": "c022f650f1e9e72d2142893ffe980f6fdb825fd4", "data": { - "inGameID": 2020 + "inGameID": 2020, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -143286,7 +150871,12 @@ { "chartID": "27b6e0973879068cc4509887f657da07d61d8669", "data": { - "inGameID": 2022 + "inGameID": 2022, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -143346,7 +150936,12 @@ { "chartID": "d73f5ec363e18cffde00ded141835b5a07866f05", "data": { - "inGameID": 2093 + "inGameID": 2093, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -143406,7 +151001,12 @@ { "chartID": "a8a476e00dd399fbe6e066e997343957c924e703", "data": { - "inGameID": 2095 + "inGameID": 2095, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -143466,7 +151066,12 @@ { "chartID": "4b0acc14a6be4e407fd467782eb5d78e6cc8a00a", "data": { - "inGameID": 2099 + "inGameID": 2099, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -143526,7 +151131,12 @@ { "chartID": "b471f92bfd37d88c2d5d1bae26bcbfe41999db85", "data": { - "inGameID": 2103 + "inGameID": 2103, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -143588,7 +151198,12 @@ { "chartID": "95b221df079980242161f4e41d6c46206be43f3b", "data": { - "inGameID": 2153 + "inGameID": 2153, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -143716,7 +151331,12 @@ { "chartID": "cad30d095459ced3775a1b0055e165f7ffddb505", "data": { - "inGameID": 2155 + "inGameID": 2155, + "sTier": { + "individualDifference": false, + "text": "Tier 3", + "value": 18.7 + } }, "difficulty": "MXM", "isPrimary": true, @@ -143780,7 +151400,12 @@ { "chartID": "cfe4903a89a1e99a51a4525d62d4464ad6c787a8", "data": { - "inGameID": 2156 + "inGameID": 2156, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -143828,7 +151453,12 @@ { "chartID": "92849c3eec369bc74c1f9ec8e84f33fb792e9a30", "data": { - "inGameID": 2157 + "inGameID": 2157, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -143844,7 +151474,12 @@ { "chartID": "bea04204ef34b1ab6e799223c1c181445f83b78c", "data": { - "inGameID": 2157 + "inGameID": 2157, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 19.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -143892,7 +151527,12 @@ { "chartID": "b7706077b70550ddbd74b20c2a4a0a59aa17e6f0", "data": { - "inGameID": 2158 + "inGameID": 2158, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -143908,7 +151548,12 @@ { "chartID": "01660bd013fb2937b9553bd6b809ba354b107cb8", "data": { - "inGameID": 2158 + "inGameID": 2158, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 19.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -143972,7 +151617,12 @@ { "chartID": "5207dd37ce7c53418eabf4c9805dc4667ecd1973", "data": { - "inGameID": 2159 + "inGameID": 2159, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -144100,7 +151750,12 @@ { "chartID": "2bdb2f3a1f4b5d948ffba1470e5c5f261977c35f", "data": { - "inGameID": 2173 + "inGameID": 2173, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 17.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -144164,7 +151819,12 @@ { "chartID": "fcff3320e51746a60067d6f6a18b81d8df77e8a6", "data": { - "inGameID": 2174 + "inGameID": 2174, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -144228,7 +151888,12 @@ { "chartID": "ede27609f1d48ecb02ee3d708e73a66c81f8a925", "data": { - "inGameID": 2175 + "inGameID": 2175, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -144290,7 +151955,12 @@ { "chartID": "54da422868b9e0d821c06f2b94fc8d68df482fb2", "data": { - "inGameID": 2096 + "inGameID": 2096, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -144350,7 +152020,12 @@ { "chartID": "3f826e0f3e349fda4c104ff9f914a2c24fdf2736", "data": { - "inGameID": 2101 + "inGameID": 2101, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -144410,7 +152085,12 @@ { "chartID": "762323966e6b9fa6fdeb6068ce10445de7f0e7c5", "data": { - "inGameID": 2104 + "inGameID": 2104, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -144470,7 +152150,12 @@ { "chartID": "9d5a27cda25486ae2a5360985cea8531ce72b6ec", "data": { - "inGameID": 2114 + "inGameID": 2114, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -144532,7 +152217,12 @@ { "chartID": "e1df0a57e3c18e1abbb5640ade89cf9e1310d5d7", "data": { - "inGameID": 2183 + "inGameID": 2183, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -144596,7 +152286,12 @@ { "chartID": "eb6b436f7928da1734c19c872d925b7429b3f7ad", "data": { - "inGameID": 2184 + "inGameID": 2184, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -144660,7 +152355,12 @@ { "chartID": "b2c387f94492d051eab188609bbe44adbc599196", "data": { - "inGameID": 2185 + "inGameID": 2185, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -144724,7 +152424,12 @@ { "chartID": "e9034ece765911dc1addc3d7f6c1bfe67e7ba818", "data": { - "inGameID": 2186 + "inGameID": 2186, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -144906,7 +152611,12 @@ { "chartID": "e2fbf711661438972e6f2ac4a9125df0f3720f4e", "data": { - "inGameID": 2102 + "inGameID": 2102, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -144966,7 +152676,12 @@ { "chartID": "087213b56ee961712d9856daa27e53743c495b82", "data": { - "inGameID": 2105 + "inGameID": 2105, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -145026,7 +152741,12 @@ { "chartID": "46515ee294a26d560a7534fcb1a420f81ecd88a9", "data": { - "inGameID": 2111 + "inGameID": 2111, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 18.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -145086,7 +152806,12 @@ { "chartID": "8f50952bf3c97cca960ef33aef20d4032400fba5", "data": { - "inGameID": 2118 + "inGameID": 2118, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -145131,7 +152856,12 @@ { "chartID": "837ca0824437849d28106fb02e04e2e5c10f3d8c", "data": { - "inGameID": 2177 + "inGameID": 2177, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -145146,7 +152876,12 @@ { "chartID": "528936baa16bd0f25d5e85444a201c913df5c0f8", "data": { - "inGameID": 2177 + "inGameID": 2177, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 19.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -145206,7 +152941,12 @@ { "chartID": "bd6cd7fb0c32f78a94d56867df0a90141a079906", "data": { - "inGameID": 2178 + "inGameID": 2178, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -145266,7 +153006,12 @@ { "chartID": "254537ad170526b305ffeedd5b5fb27392497ba2", "data": { - "inGameID": 2179 + "inGameID": 2179, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -145311,7 +153056,12 @@ { "chartID": "e806d1c506d3f91821cadcbf4d034b25d72500fa", "data": { - "inGameID": 2180 + "inGameID": 2180, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -145326,7 +153076,12 @@ { "chartID": "fae59c598dca2947ceb807bf4b224357e321c16d", "data": { - "inGameID": 2180 + "inGameID": 2180, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 19.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -145386,7 +153141,12 @@ { "chartID": "c02c85d832a3649a05762ae780687de7d959e918", "data": { - "inGameID": 2181 + "inGameID": 2181, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 18.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -145446,7 +153206,12 @@ { "chartID": "1c8b031602ad386b8a03249344e19bc1436aef54", "data": { - "inGameID": 1989 + "inGameID": 1989, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -145506,7 +153271,12 @@ { "chartID": "6f0e2b871ceec07866069714d95d56afc2ca7527", "data": { - "inGameID": 1991 + "inGameID": 1991, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -145566,7 +153336,12 @@ { "chartID": "ca44d1cfc0191bc55d300ab81974c9e8e9323980", "data": { - "inGameID": 2009 + "inGameID": 2009, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 18.1 + } }, "difficulty": "MXM", "isPrimary": true, @@ -145626,7 +153401,12 @@ { "chartID": "81c5f50828c176a587d599ba379fe02e0cc0a881", "data": { - "inGameID": 2015 + "inGameID": 2015, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -145686,7 +153466,12 @@ { "chartID": "35c55b5b8c30a884f6977a494877db1e1072bec9", "data": { - "inGameID": 2193 + "inGameID": 2193, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 17 + } }, "difficulty": "MXM", "isPrimary": true, @@ -145731,7 +153516,12 @@ { "chartID": "6c0c6d21b9d9ca33e9cdfa490b6fa5c35f5c3148", "data": { - "inGameID": 2086 + "inGameID": 2086, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 17.4 + } }, "difficulty": "EXH", "isPrimary": true, @@ -145746,7 +153536,12 @@ { "chartID": "103bba7d97027858633d92ca768839c719ef3405", "data": { - "inGameID": 2086 + "inGameID": 2086, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 19.3 + } }, "difficulty": "MXM", "isPrimary": true, @@ -145791,7 +153586,12 @@ { "chartID": "3d9be7a23eaf5fa04539173cfcb12777edf3514c", "data": { - "inGameID": 2087 + "inGameID": 2087, + "sTier": { + "individualDifference": false, + "text": "Tier 2", + "value": 18.8 + } }, "difficulty": "EXH", "isPrimary": true, @@ -145806,7 +153606,12 @@ { "chartID": "cfa27a30dee2e927d26fc324b41dd7427d15dfd2", "data": { - "inGameID": 2087 + "inGameID": 2087, + "sTier": { + "individualDifference": false, + "text": "Tier 0-", + "value": 20 + } }, "difficulty": "MXM", "isPrimary": true, @@ -145851,7 +153656,12 @@ { "chartID": "f10b6128b8fbccc233de4e99c2e757557335774b", "data": { - "inGameID": 2088 + "inGameID": 2088, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 17.5 + } }, "difficulty": "EXH", "isPrimary": true, @@ -145866,7 +153676,12 @@ { "chartID": "9b5b9f1baf1bd2f618dbd630b320ad0d29afc59d", "data": { - "inGameID": 2088 + "inGameID": 2088, + "sTier": { + "individualDifference": false, + "text": "Tier 8", + "value": 19.2 + } }, "difficulty": "MXM", "isPrimary": true, @@ -145926,7 +153741,12 @@ { "chartID": "e2b334a1e859ee8279e9e2f3947a3d3f8649bd82", "data": { - "inGameID": 2089 + "inGameID": 2089, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 18.4 + } }, "difficulty": "MXM", "isPrimary": true, @@ -145986,7 +153806,12 @@ { "chartID": "cfa9e306277ae7ea5dc5358a0df757aa103e3575", "data": { - "inGameID": 2090 + "inGameID": 2090, + "sTier": { + "individualDifference": false, + "text": "Tier 4", + "value": 18.6 + } }, "difficulty": "MXM", "isPrimary": true, @@ -146046,7 +153871,12 @@ { "chartID": "84c739ddfd0ee10a1bb8259dcd536507d7a8677f", "data": { - "inGameID": 2091 + "inGameID": 2091, + "sTier": { + "individualDifference": false, + "text": "Tier 5", + "value": 18.5 + } }, "difficulty": "MXM", "isPrimary": true, @@ -146106,7 +153936,12 @@ { "chartID": "72b95ebff89ddf82745fd0b9ff504c232d7c69cb", "data": { - "inGameID": 2092 + "inGameID": 2092, + "sTier": { + "individualDifference": false, + "text": "Tier 1", + "value": 18.9 + } }, "difficulty": "MXM", "isPrimary": true, @@ -146166,7 +154001,12 @@ { "chartID": "29c5e540c97542a84381e6e3064fbd693aff7d4a", "data": { - "inGameID": 2189 + "inGameID": 2189, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 18 + } }, "difficulty": "MXM", "isPrimary": true, @@ -146211,7 +154051,12 @@ { "chartID": "b5d17b68bbc1581fc895aa5eb05664580b6be593", "data": { - "inGameID": 2190 + "inGameID": 2190, + "sTier": { + "individualDifference": false, + "text": "Tier 9", + "value": 17.1 + } }, "difficulty": "EXH", "isPrimary": true, @@ -146226,7 +154071,12 @@ { "chartID": "c31a3102a43bdf169fa0cf403b7ca9970dbabae1", "data": { - "inGameID": 2190 + "inGameID": 2190, + "sTier": { + "individualDifference": false, + "text": "Tier 10", + "value": 19 + } }, "difficulty": "MXM", "isPrimary": true, @@ -146271,7 +154121,12 @@ { "chartID": "92a684c5a837e5d7e7febf5bc234462df54f00e7", "data": { - "inGameID": 2191 + "inGameID": 2191, + "sTier": { + "individualDifference": false, + "text": "Tier 7", + "value": 17.3 + } }, "difficulty": "EXH", "isPrimary": true, @@ -146286,7 +154141,12 @@ { "chartID": "cd047831c1d648c7229d2a8d43014a360d7c142f", "data": { - "inGameID": 2191 + "inGameID": 2191, + "sTier": { + "individualDifference": false, + "text": "Tier 6", + "value": 19.4 + } }, "difficulty": "MXM", "isPrimary": true, diff --git a/seeds/scripts/rerunners/sdvx/add-sdvx-s-tierlist.ts b/seeds/scripts/rerunners/sdvx/add-sdvx-s-tierlist.ts new file mode 100644 index 000000000..13e402d0a --- /dev/null +++ b/seeds/scripts/rerunners/sdvx/add-sdvx-s-tierlist.ts @@ -0,0 +1,101 @@ +import { Command } from "commander"; +import { ReadCollection, MutateCollection } from "../../util"; +import { ChartDocument, SongDocument } from "tachi-common"; +import { readFileSync } from "fs"; + +type Tierlist = { + level: number; + data: TierlistTier[]; +}; + +type TierlistTier = { + name: string; + songs: { + title: string; + artist: string; + diff: string; + }[]; +}; + +// Tier 0+ and Tier 0- for the Lvl 19/20 tierlist are internally named -1 and 0 +// respectively, so map them back to the display names +const MANUAL_TIERS = { + 19: { + "-1": "0+", + 0: "0-", + }, +}; + +const program = new Command(); + +program.option("-f, --file "); +program.parse(process.argv); + +const options = program.opts(); +const songSeeds: SongDocument<"sdvx">[] = ReadCollection("songs-sdvx.json"); +const tierlists: Tierlist[] = JSON.parse(readFileSync(options.file, "utf-8")); + +function normalizeString(s: string) { + return s.toLowerCase().replace(/ /gu, "").replace(/(/gu, "(").replace(/)/gu, ")"); +} + +function match(s1: string, s2: string, strictMatch = true) { + const n1 = normalizeString(s1); + const n2 = normalizeString(s2); + + return strictMatch ? n1 === n2 : n1.startsWith(n2) || n2.startsWith(n1); +} + +function matchSong(artist: string, title: string) { + let song = songSeeds.find((s) => match(s.artist, artist) && match(s.title, title)); + + if (!song) { + song = songSeeds.find( + (s) => match(s.artist, artist, false) && match(s.title, title, false) + ); + } + + return song; +} + +for (const tierlist of tierlists) { + const { data, level } = tierlist; + + MutateCollection("charts-sdvx.json", (charts: ChartDocument<"sdvx:Single">[]) => { + for (const tier of data) { + const { name, songs } = tier; + + // Songs under this tier are not yet rated + if (name === "999") { + continue; + } + + for (const entry of songs) { + const { artist, title, diff } = entry; + const song = matchSong(artist, title); + + if (!song) { + console.log(`No song match for: ${artist} - ${title}`); + + continue; + } + + const chart = charts.find((c) => c.songID === song.id && c.difficulty === diff); + + if (!chart) { + console.log(`No chart match for: ${artist} - ${title} [${diff} ${level}]`); + continue; + } + + chart.data.sTier = { + individualDifference: false, + text: `Tier ${MANUAL_TIERS[level]?.[tier.name] ?? tier.name}`, + // e.g. Level 17 Tier 9 -> 17 + 1 - 9 / 10 = 17.1 + value: level + 1 - parseInt(tier.name, 10) / 10, + }; + } + } + + return charts; + }); +}