IIDX: Added Experimental WebUI / Plugin Settings

IIDX: Removed pugFile that no longer being used
This commit is contained in:
duel0213 2024-02-16 10:00:04 +09:00
parent 05a500f6c2
commit 6902182a8d
27 changed files with 630 additions and 5688 deletions

View File

@ -1,6 +1,6 @@
# beatmaniaIIDX
Plugin Version: **v0.1.11**
Plugin Version: **v0.1.12**
---
@ -93,3 +93,7 @@ Changelogs
- Added Shop Ranking support
- Changed pc.common/gameSystem.systemInfo response not to use pugFile.
- IIDX_CPUS on models/arena.ts came from asphyxia_route_public
**v0.1.12**
- Exposed some of pc.common attributes to plugin settings (WIP)
- Added Experimental WebUI (WIP)

View File

@ -19,29 +19,31 @@ export const pccommon: EPR = async (info, data, send) => {
}),
}
// have no idea what some of attribute or value does //
// exposing these to plugin setting or use static value //
switch (version) {
case 18:
result = {
...result,
cmd: K.ATTR({
gmbl: String(1),
gmbla: String(1),
regl: String(1),
rndp: String(1),
hrnd: String(1),
alls: String(1),
gmbl: String(Number(U.GetConfig("ra_cmd_gmbl"))),
gmbla: String(Number(U.GetConfig("ra_cmd_gmbla"))),
regl: String(Number(U.GetConfig("ra_cmd_regl"))),
rndp: String(Number(U.GetConfig("ra_cmd_rndp"))),
hrnd: String(Number(U.GetConfig("ra_cmd_hrnd"))),
alls: String(Number(U.GetConfig("ra_cmd_alls"))),
}),
lg: K.ATTR({ lea: String(0) }),
lf: K.ATTR({ life: String(0) }),
ev: K.ATTR({ pha: String(3) }),
lincle: K.ATTR({ phase: String(1) })
lg: K.ATTR({ lea: String(U.GetConfig("ra_league")) }),
lf: K.ATTR({ life: String(U.GetConfig("ra_story")) }),
ev: K.ATTR({ pha: String(U.GetConfig("ra_event")) }),
lincle: K.ATTR({ phase: String(U.GetConfig("ra_lincle")) })
}
break;
case 19:
result = {
...result,
lincle: K.ATTR({ phase: String(2) }),
boss: K.ATTR({ phase: String(2) }),
lincle: K.ATTR({ phase: String(U.GetConfig("lc_lincle")) }),
boss: K.ATTR({ phase: String(U.GetConfig("lc_boss")) }),
mr_secret: K.ATTR({ flg: String(-1) }),
travel: K.ATTR({ flg: String(-1) }),
}
@ -49,13 +51,13 @@ export const pccommon: EPR = async (info, data, send) => {
case 20:
result = {
...result,
limit: K.ATTR({ phase: String(4) }),
boss: K.ATTR({ phase: String(3) }),
red: K.ATTR({ phase: String(3) }),
yellow: K.ATTR({ phase: String(3) }),
medal: K.ATTR({ phase: String(3) }),
cafe: K.ATTR({ open: String(1) }),
tricolettepark: K.ATTR({ open: String(1) }),
limit: K.ATTR({ phase: String(U.GetConfig("tr_limit")) }),
boss: K.ATTR({ phase: String(U.GetConfig("tr_boss")) }),
red: K.ATTR({ phase: String(U.GetConfig("tr_red")) }),
yellow: K.ATTR({ phase: String(U.GetConfig("tr_yellow")) }),
medal: K.ATTR({ phase: String(U.GetConfig("tr_medal")) }),
cafe: K.ATTR({ open: String(Number(U.GetConfig("tr_cafe"))) }),
tricolettepark: K.ATTR({ open: String(Number(U.GetConfig("tr_tripark"))) }),
}
break;
case 21:
@ -119,7 +121,7 @@ export const pccommon: EPR = async (info, data, send) => {
bemani_summer2016: K.ATTR({ phase: String(2) }),
}
break;
case 24: // asphyix_route_public //
case 24: // asphyxia_route_public //
case 25:
case 26:
result = {
@ -153,7 +155,7 @@ export const pccommon: EPR = async (info, data, send) => {
result = {
...result,
movie_agreement: K.ATTR({ version: String(1) }),
movie_upload: K.ATTR({ url: String(U.GetConfig("MovieUpload")) }),
movie_upload: K.ATTR({ url: String(U.GetConfig("bo_movieupload")) }),
expert: K.ATTR({ phase: String(1) }),
expert_random_secret: K.ATTR({ phase: String(1) }),
boss: K.ATTR({ phase: String(1) }),
@ -177,7 +179,7 @@ export const pccommon: EPR = async (info, data, send) => {
result = {
...result,
movie_agreement: K.ATTR({ version: String(1) }),
movie_upload: K.ATTR({ url: String(U.GetConfig("MovieUpload")) }),
movie_upload: K.ATTR({ url: String(U.GetConfig("bo_movieupload")) }),
expert: K.ATTR({ phase: String(1) }),
expert_random_secret: K.ATTR({ phase: String(1) }),
boss: K.ATTR({ phase: String(1) }),
@ -202,7 +204,7 @@ export const pccommon: EPR = async (info, data, send) => {
result = {
...result,
movie_agreement: K.ATTR({ version: String(1) }),
movie_upload: K.ATTR({ url: String(U.GetConfig("MovieUpload")) }),
movie_upload: K.ATTR({ url: String(U.GetConfig("bo_movieupload")) }),
vip_pass_black: {},
deller_bonus: K.ATTR({ open: String(1) }),
newsong_another: K.ATTR({ open: String(1) }),

View File

@ -1,26 +1,8 @@
import { profile } from "../models/profile";
import { rival } from "../models/rival";
import { custom } from "../models/custom";
export const updateRivalSettings = async (data: {
// All of data sent as string
iidxid: string;
sp_rival1?: string;
sp_rival2?: string;
sp_rival3?: string;
sp_rival4?: string;
sp_rival5?: string;
dp_rival1?: string;
dp_rival2?: string;
dp_rival3?: string;
dp_rival4?: string;
dp_rival5?: string;
}) => {
const profile = await DB.FindOne<profile>(null, {
collection: "profile",
idstr: data.iidxid,
});
export const updateRivalSettings = async (data) => {
let update_array = [];
if (!(_.isEmpty(data.sp_rival1))) {
@ -32,9 +14,9 @@ export const updateRivalSettings = async (data: {
update_array.push(update_data);
} else {
await DB.Remove<rival>(profile.refid,
await DB.Remove<rival>(data.refid,
{
collection: 'rival',
collection: "rival",
play_style: 1,
index: 0,
}
@ -50,9 +32,9 @@ export const updateRivalSettings = async (data: {
update_array.push(update_data);
} else {
await DB.Remove<rival>(profile.refid,
await DB.Remove<rival>(data.refid,
{
collection: 'rival',
collection: "rival",
play_style: 1,
index: 1,
}
@ -68,9 +50,9 @@ export const updateRivalSettings = async (data: {
update_array.push(update_data);
} else {
await DB.Remove<rival>(profile.refid,
await DB.Remove<rival>(data.refid,
{
collection: 'rival',
collection: "rival",
play_style: 1,
index: 2,
}
@ -86,9 +68,9 @@ export const updateRivalSettings = async (data: {
update_array.push(update_data);
} else {
await DB.Remove<rival>(profile.refid,
await DB.Remove<rival>(data.refid,
{
collection: 'rival',
collection: "rival",
play_style: 1,
index: 3,
}
@ -104,9 +86,9 @@ export const updateRivalSettings = async (data: {
update_array.push(update_data);
} else {
await DB.Remove<rival>(profile.refid,
await DB.Remove<rival>(data.refid,
{
collection: 'rival',
collection: "rival",
play_style: 1,
index: 4,
}
@ -122,9 +104,9 @@ export const updateRivalSettings = async (data: {
update_array.push(update_data);
} else {
await DB.Remove<rival>(profile.refid,
await DB.Remove<rival>(data.refid,
{
collection: 'rival',
collection: "rival",
play_style: 2,
index: 0,
}
@ -140,9 +122,9 @@ export const updateRivalSettings = async (data: {
update_array.push(update_data);
} else {
await DB.Remove<rival>(profile.refid,
await DB.Remove<rival>(data.refid,
{
collection: 'rival',
collection: "rival",
play_style: 2,
index: 1,
}
@ -158,9 +140,9 @@ export const updateRivalSettings = async (data: {
update_array.push(update_data);
} else {
await DB.Remove<rival>(profile.refid,
await DB.Remove<rival>(data.refid,
{
collection: 'rival',
collection: "rival",
play_style: 2,
index: 2,
}
@ -176,9 +158,9 @@ export const updateRivalSettings = async (data: {
update_array.push(update_data);
} else {
await DB.Remove<rival>(profile.refid,
await DB.Remove<rival>(data.refid,
{
collection: 'rival',
collection: "rival",
play_style: 2,
index: 3,
}
@ -194,9 +176,9 @@ export const updateRivalSettings = async (data: {
update_array.push(update_data);
} else {
await DB.Remove<rival>(profile.refid,
await DB.Remove<rival>(data.refid,
{
collection: 'rival',
collection: "rival",
play_style: 2,
index: 4,
}
@ -204,7 +186,7 @@ export const updateRivalSettings = async (data: {
}
for (let i = 0; i < update_array.length; i++) {
await DB.Upsert<rival>(profile.refid, {
await DB.Upsert<rival>(data.refid, {
collection: "rival",
play_style: update_array[i].play_style,
index: update_array[i].index,
@ -216,3 +198,65 @@ export const updateRivalSettings = async (data: {
)
}
};
export const updateCustomSettings = async (data) => {
const profile = await DB.FindOne<profile>(data.refid, {
collection: "profile",
});
let customize = {
frame: parseInt(data.frame),
turntable: parseInt(data.turntable),
note_burst: parseInt(data.note_burst),
menu_music: parseInt(data.menu_music),
lane_cover: parseInt(data.lane_cover),
category_vox: parseInt(data.category_vox),
note_skin: parseInt(data.note_skin),
full_combo_splash: parseInt(data.full_combo_splash),
disable_musicpreview: StoB(data.disable_musicpreview),
note_beam: parseInt(data.note_beam),
judge_font: parseInt(data.judge_font),
pacemaker_cover: parseInt(data.pacemaker_cover),
vefx_lock: StoB(data.vefx_lock),
effect: parseInt(data.effect),
bomb_size: parseInt(data.bomb_size),
disable_hcn_color: StoB(data.disable_hcn_color),
first_note_preview: parseInt(data.first_note_preview),
rank_folder: StoB(data.rank_folder),
clear_folder: StoB(data.clear_folder),
diff_folder: StoB(data.diff_folder),
alpha_folder: StoB(data.alpha_folder),
rival_folder: StoB(data.rival_folder),
rival_battle_folder: StoB(data.rival_battle_folder),
rival_info: StoB(data.rival_info),
hide_playcount: StoB(data.hide_playcount),
disable_graph_cutin: StoB(data.disable_graph_cutin),
classic_hispeed: StoB(data.classic_hispeed),
rival_played_folder: StoB(data.rival_played_folder),
hide_iidxid: StoB(data.hide_iidxid),
}
await DB.Upsert<custom>(data.refid, {
collection: "custom",
version: parseInt(data.version)
}, {
$set: customize
});
if (!_.isEmpty(data.name) && data.name != profile.name) {
// TODO:: check name is in valid format //
await DB.Upsert<profile>(data.refid, {
collection: "profile",
}, {
$set: {
name: data.name
}
});
}
};
function StoB(value: string) {
return value == "on" ? true : false;
};

View File

@ -1,9 +1,9 @@
import { pccommon, pcreg, pcget, pcgetname, pctakeover, pcvisit, pcsave, pcoldget, pcgetlanegacha, pcdrawlanegacha, pcshopregister } from "./handlers/pc";
import { pccommon, pcreg, pcget, pcgetname, pctakeover, pcvisit, pcsave, pcoldget, pcgetlanegacha, pcdrawlanegacha, pcshopregister } from "./handlers/pc";
import { shopgetname, shopsavename, shopgetconvention, shopsetconvention } from "./handlers/shop";
import { musicreg, musicgetrank, musicappoint, musicarenacpu } from "./handlers/music";
import { graderaised } from "./handlers/grade";
import { gssysteminfo } from "./handlers/gamesystem";
import { updateRivalSettings } from "./handlers/webui";
import { updateRivalSettings, updateCustomSettings } from "./handlers/webui";
import { GetVersion } from "./util";
export function register() {
@ -18,19 +18,135 @@ export function register() {
R.GameCode("KDZ");
R.GameCode("LDJ");
// common //
R.Config("BeatPhase", {
name: "Beat #",
type: "integer",
default: 3,
});
R.Config("MovieUpload", {
// Resort Anthem //
R.Config("ra_cmd_gmbl", {
name: "G.JUDGE",
desc: "Enable G.JUDGE Command (Resort Anthem)",
type: "boolean",
default: true,
});
R.Config("ra_cmd_gmbla", {
name: "G.JUDGE-A",
desc: "Enable G.JUDGE-A Command (Resort Anthem)",
type: "boolean",
default: true,
});
R.Config("ra_cmd_regl", {
name: "REGUL-SPEED",
desc: "Enable REGUL-SPEED Command (Resort Anthem)",
type: "boolean",
default: true,
});
R.Config("ra_cmd_rndp", {
name: "RANDOM+",
desc: "Enable RANDOM+ Command (Resort Anthem)",
type: "boolean",
default: true,
});
R.Config("ra_cmd_hrnd", {
name: "H-RANDOM",
desc: "Enable H-RANDOM Command (Resort Anthem)",
type: "boolean",
default: true,
});
R.Config("ra_cmd_alls", {
name: "ALL-SCRATCH",
desc: "Enable ALL-SCRATCH Command (Resort Anthem)",
type: "boolean",
default: true,
});
R.Config("ra_league", {
name: "League Phase (RA)",
type: "integer",
default: 0,
});
R.Config("ra_story", {
name: "Story Phase (RA)",
type: "integer",
default: 0,
});
R.Config("ra_event", {
name: "Tour Phase (RA)",
type: "integer",
default: 3,
});
R.Config("ra_lincle", {
name: "Lincle LINK Phase (RA)",
type: "integer",
default: 1,
});
// Lincle //
R.Config("lc_lincle", {
name: "Lincle LINK Phase (LC)",
type: "integer",
default: 2,
});
R.Config("lc_boss", {
name: "Lincle Kingdom Phase",
type: "integer",
default: 2,
});
// tricoro //
R.Config("tr_limit", {
name: "Limit Burst Phase",
type: "integer",
default: 4,
});
R.Config("tr_boss", {
name: "Event Phase (TR)",
desc: "RED/BLUE/YELLOW",
type: "integer",
default: 3,
});
R.Config("tr_red", {
name: "RED Phase",
desc: "LEGEND CROSS Phase",
type: "integer",
default: 3,
});
R.Config("tr_yellow", {
name: "YELLOW Phase",
desc: "ぼくらの宇宙戦争 Phase",
type: "integer",
default: 3,
});
R.Config("tr_medal", {
name: "Medal Phase (TR)",
type: "integer",
default: 3,
});
R.Config("tr_cafe", {
name: "Café de Tran",
desc: "Enable Café de Tran Event (tricoro)",
type: "boolean",
default: true,
});
R.Config("tr_tripark", {
name: "Everyone's SPACEWAR!!",
desc: "Enable クプロ・ミミニャミ・パステルくんのみんなで宇宙戦争!! Event (tricoro)",
type: "boolean",
default: true,
});
// BISTROVER ~ (common) //
R.Config("bo_movieupload", {
name: "Movie Upload URL",
type: "string",
default: "http://localhost/"
});
R.WebUIEvent("updateIIDXRivalSettings", updateRivalSettings);
// TODO:: Reflect data when version dropdown menu has been changed
R.WebUIEvent("updateIIDXRival", updateRivalSettings);
R.WebUIEvent("updateIIDXCustom", updateCustomSettings);
const MultiRoute = (method: string, handler: EPR | boolean) => {
R.Route(`${method}`, handler);

View File

@ -21,7 +21,7 @@ export interface custom {
effect: number;
bomb_size: number;
disable_hcn_color: boolean;
first_note_preview: boolean;
first_note_preview: number;
// appendsettings
rank_folder: boolean;
@ -70,7 +70,7 @@ export const default_custom = {
effect: 0,
bomb_size: 0,
disable_hcn_color: false,
first_note_preview: false,
first_note_preview: 0,
rank_folder: true,
clear_folder: true,

View File

@ -1,14 +0,0 @@
IIDX21pc(status="0" expire="600")
ir(beat=beat)
limit(phase="4")
boss(phase="3")
boss1(phase="4")
medal(phase="1")
vip_pass_black
cafe(open="1")
tricolettepark(open="1")
tricolettepark_skip(phase="2")
deller_bonus(open="1")
gumi_event
newsong_another(open="1")
superstar(phase="2")

View File

@ -1,21 +0,0 @@
IIDX22pc(status="0" expire="600")
ir(beat=beat)
//-
cm(id="" folder="" compo="")
pre_play(phase="2")
expert(phase="2")
toho_remix(phase="2")
expert_random_secret(phase="2")
limit(phase="9")
boss(phase="3")
chrono_diver(phase="4")
qpronicle_chord(phase="3")
vip_pass_black
cc_collabo_event(phase="3")
cc_collabo_license
deller_bonus(open="1")
newsong_another(open="1")
common_timeshift_phase(phase="1")
expert_secret_full_open
eaappli_expert
eaorder

View File

@ -1,21 +0,0 @@
IIDX23pc(status="0" expire="600")
ir(beat=beat)
//-
cm(id="" folder="" compo="")
expert(phase="1")
expert_random_secret(phase="2")
boss(phase="3")
event1_phase(phase="1")
event2_phase(phase="2")
extra_boss_event(phase="30")
vip_pass_black
event1_rainbow_ticket
deller_bonus(open="1")
newsong_another(open="1")
expert_secret_full_open
remocon_collabo
ravemania_collabo
djlevel_result
virtual_coin(phase="1")
reflec_volzza_collabo
bemani_summer2016(phase="2")

View File

@ -1,6 +0,0 @@
IIDX24pc(status="0" expire="600")
ir(beat=beat)
newsong_another(open="1")
expert_secret_full_open
system_voice_phase(phase=system_voice_phase)
expert(phase="1")

View File

@ -1,765 +0,0 @@
IIDX24gameSystem(status="0")
arena_schedule
phase(__type="u8") 2
start(__type="u32") 1605784800
end(__type="u32") 4102326000
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 0
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 1
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 2
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 3
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 4
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 5
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 6
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 7
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 8
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 9
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 10
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 11
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 12
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 13
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 14
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 15
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 16
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 17
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 18
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 19
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 0
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 1
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 2
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 3
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 4
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 5
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 6
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 7
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 8
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 9
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 10
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 11
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 12
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 13
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 14
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 15
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 16
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 17
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 18
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 19
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 0
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 1
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 2
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 3
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 4
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 5
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 6
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 7
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 8
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 9
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 10
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 11
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 12
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 13
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 14
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 15
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 16
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 17
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 18
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 19
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 0
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 1
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 2
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 3
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 4
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 5
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 6
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 7
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 8
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 9
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 10
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 11
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 12
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 13
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 14
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 15
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 16
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 17
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 18
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 19
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 0
grade_id(__type="s32") 6
low_music_difficult(__type="s32") 4
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 1
grade_id(__type="s32") 7
low_music_difficult(__type="s32") 5
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 2
grade_id(__type="s32") 8
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 3
grade_id(__type="s32") 9
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 4
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 5
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 6
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 7
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 8
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 9
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 10
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 11
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 12
grade_id(__type="s32") 14
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 13
grade_id(__type="s32") 14
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 14
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 15
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 16
grade_id(__type="s32") 16
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 17
grade_id(__type="s32") 16
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 18
grade_id(__type="s32") 17
low_music_difficult(__type="s32") 12
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 19
grade_id(__type="s32") 18
low_music_difficult(__type="s32") 12
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 0
grade_id(__type="s32") 6
low_music_difficult(__type="s32") 3
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 1
grade_id(__type="s32") 7
low_music_difficult(__type="s32") 3
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 2
grade_id(__type="s32") 8
low_music_difficult(__type="s32") 4
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 3
grade_id(__type="s32") 8
low_music_difficult(__type="s32") 4
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 4
grade_id(__type="s32") 9
low_music_difficult(__type="s32") 5
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 5
grade_id(__type="s32") 9
low_music_difficult(__type="s32") 5
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 6
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 7
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 8
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 9
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 10
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 11
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 12
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 13
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 14
grade_id(__type="s32") 14
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 15
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 16
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 17
grade_id(__type="s32") 16
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 18
grade_id(__type="s32") 17
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 19
grade_id(__type="s32") 18
low_music_difficult(__type="s32") 12
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1

View File

@ -1,6 +0,0 @@
IIDX25pc(status="0" expire="600")
ir(beat=beat)
newsong_another(open="1")
expert_secret_full_open
system_voice_phase(phase=system_voice_phase)
expert(phase="1")

View File

@ -1,765 +0,0 @@
IIDX25gameSystem(status="0")
arena_schedule
phase(__type="u8") 2
start(__type="u32") 1605784800
end(__type="u32") 4102326000
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 0
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 1
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 2
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 3
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 4
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 5
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 6
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 7
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 8
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 9
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 10
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 11
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 12
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 13
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 14
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 15
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 16
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 17
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 18
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 19
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 0
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 1
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 2
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 3
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 4
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 5
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 6
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 7
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 8
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 9
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 10
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 11
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 12
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 13
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 14
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 15
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 16
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 17
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 18
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 19
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 0
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 1
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 2
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 3
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 4
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 5
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 6
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 7
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 8
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 9
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 10
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 11
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 12
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 13
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 14
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 15
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 16
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 17
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 18
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 19
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 0
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 1
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 2
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 3
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 4
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 5
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 6
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 7
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 8
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 9
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 10
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 11
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 12
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 13
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 14
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 15
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 16
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 17
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 18
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 19
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 0
grade_id(__type="s32") 6
low_music_difficult(__type="s32") 4
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 1
grade_id(__type="s32") 7
low_music_difficult(__type="s32") 5
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 2
grade_id(__type="s32") 8
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 3
grade_id(__type="s32") 9
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 4
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 5
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 6
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 7
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 8
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 9
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 10
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 11
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 12
grade_id(__type="s32") 14
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 13
grade_id(__type="s32") 14
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 14
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 15
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 16
grade_id(__type="s32") 16
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 17
grade_id(__type="s32") 16
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 18
grade_id(__type="s32") 17
low_music_difficult(__type="s32") 12
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 19
grade_id(__type="s32") 18
low_music_difficult(__type="s32") 12
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 0
grade_id(__type="s32") 6
low_music_difficult(__type="s32") 3
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 1
grade_id(__type="s32") 7
low_music_difficult(__type="s32") 3
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 2
grade_id(__type="s32") 8
low_music_difficult(__type="s32") 4
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 3
grade_id(__type="s32") 8
low_music_difficult(__type="s32") 4
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 4
grade_id(__type="s32") 9
low_music_difficult(__type="s32") 5
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 5
grade_id(__type="s32") 9
low_music_difficult(__type="s32") 5
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 6
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 7
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 8
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 9
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 10
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 11
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 12
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 13
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 14
grade_id(__type="s32") 14
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 15
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 16
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 17
grade_id(__type="s32") 16
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 18
grade_id(__type="s32") 17
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 19
grade_id(__type="s32") 18
low_music_difficult(__type="s32") 12
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1

View File

@ -1,6 +0,0 @@
IIDX26pc(status="0" expire="600")
ir(beat=beat)
newsong_another(open="1")
expert_secret_full_open
system_voice_phase(phase=system_voice_phase)
expert(phase="1")

View File

@ -1,765 +0,0 @@
IIDX26gameSystem(status="0")
arena_schedule
phase(__type="u8") 2
start(__type="u32") 1605784800
end(__type="u32") 4102326000
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 0
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 1
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 2
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 3
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 4
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 5
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 6
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 7
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 8
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 9
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 10
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 11
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 12
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 13
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 14
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 15
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 16
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 17
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 18
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 19
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 0
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 1
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 2
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 3
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 4
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 5
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 6
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 7
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 8
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 9
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 10
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 11
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 12
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 13
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 14
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 15
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 16
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 17
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 18
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 19
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 0
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 1
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 2
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 3
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 4
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 5
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 6
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 7
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 8
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 9
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 10
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 11
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 12
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 13
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 14
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 15
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 16
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 17
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 18
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 19
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 0
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 1
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 2
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 3
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 4
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 5
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 6
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 7
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 8
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 9
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 10
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 11
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 12
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 13
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 14
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 15
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 16
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 17
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 18
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 19
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 0
grade_id(__type="s32") 6
low_music_difficult(__type="s32") 4
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 1
grade_id(__type="s32") 7
low_music_difficult(__type="s32") 5
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 2
grade_id(__type="s32") 8
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 3
grade_id(__type="s32") 9
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 4
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 5
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 6
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 7
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 8
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 9
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 10
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 11
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 12
grade_id(__type="s32") 14
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 13
grade_id(__type="s32") 14
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 14
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 15
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 16
grade_id(__type="s32") 16
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 17
grade_id(__type="s32") 16
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 18
grade_id(__type="s32") 17
low_music_difficult(__type="s32") 12
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 19
grade_id(__type="s32") 18
low_music_difficult(__type="s32") 12
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 0
grade_id(__type="s32") 6
low_music_difficult(__type="s32") 3
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 1
grade_id(__type="s32") 7
low_music_difficult(__type="s32") 3
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 2
grade_id(__type="s32") 8
low_music_difficult(__type="s32") 4
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 3
grade_id(__type="s32") 8
low_music_difficult(__type="s32") 4
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 4
grade_id(__type="s32") 9
low_music_difficult(__type="s32") 5
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 5
grade_id(__type="s32") 9
low_music_difficult(__type="s32") 5
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 6
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 7
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 8
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 9
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 10
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 11
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 12
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 13
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 14
grade_id(__type="s32") 14
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 15
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 16
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 17
grade_id(__type="s32") 16
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 18
grade_id(__type="s32") 17
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 19
grade_id(__type="s32") 18
low_music_difficult(__type="s32") 12
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1

View File

@ -1,20 +0,0 @@
IIDX27pc(status="0" expire="600")
ir(beat=beat)
//-
cm(id="" folder="" compo="")
tdj_cm
cm(id="" filename="")
expert(phase="1")
expert_random_secert(phase="1")
boss(phase="1")
vip_pass_black
deller_bonus(open="1")
newsong_another(open="1")
secret_full_open
system_voice_phase(phase=system_voice_phase)
extra_boss_event(phase="1")
event1_phase(phase="4")
premium_area_news(open="1")
premium_area_qpro(open="1")
play_video
display_asio_logo

View File

@ -1,765 +0,0 @@
IIDX27gameSystem(status="0")
arena_schedule
phase(__type="u8") 2
start(__type="u32") 1605784800
end(__type="u32") 4102326000
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 0
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 1
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 2
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 3
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 4
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 5
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 6
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 7
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 8
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 9
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 10
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 11
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 12
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 13
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 14
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 15
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 16
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 17
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 18
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 19
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 0
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 1
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 2
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 3
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 4
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 5
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 6
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 7
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 8
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 9
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 10
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 11
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 12
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 13
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 14
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 15
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 16
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 17
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 18
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 19
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 0
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 1
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 2
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 3
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 4
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 5
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 6
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 7
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 8
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 9
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 10
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 11
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 12
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 13
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 14
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 15
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 16
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 17
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 18
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 19
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 0
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 1
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 2
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 3
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 4
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 5
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 6
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 7
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 8
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 9
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 10
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 11
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 12
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 13
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 14
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 15
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 16
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 17
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 18
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 19
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 0
grade_id(__type="s32") 6
low_music_difficult(__type="s32") 4
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 1
grade_id(__type="s32") 7
low_music_difficult(__type="s32") 5
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 2
grade_id(__type="s32") 8
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 3
grade_id(__type="s32") 9
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 4
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 5
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 6
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 7
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 8
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 9
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 10
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 11
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 12
grade_id(__type="s32") 14
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 13
grade_id(__type="s32") 14
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 14
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 15
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 16
grade_id(__type="s32") 16
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 17
grade_id(__type="s32") 16
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 18
grade_id(__type="s32") 17
low_music_difficult(__type="s32") 12
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 19
grade_id(__type="s32") 18
low_music_difficult(__type="s32") 12
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 0
grade_id(__type="s32") 6
low_music_difficult(__type="s32") 3
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 1
grade_id(__type="s32") 7
low_music_difficult(__type="s32") 3
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 2
grade_id(__type="s32") 8
low_music_difficult(__type="s32") 4
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 3
grade_id(__type="s32") 8
low_music_difficult(__type="s32") 4
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 4
grade_id(__type="s32") 9
low_music_difficult(__type="s32") 5
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 5
grade_id(__type="s32") 9
low_music_difficult(__type="s32") 5
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 6
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 7
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 8
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 9
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 10
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 11
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 12
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 13
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 14
grade_id(__type="s32") 14
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 15
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 16
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 17
grade_id(__type="s32") 16
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 18
grade_id(__type="s32") 17
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 19
grade_id(__type="s32") 18
low_music_difficult(__type="s32") 12
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1

View File

@ -1,25 +0,0 @@
IIDX28pc(status="0" expire="600")
ir(beat=beat)
//-
cm(id="" folder="" compo="")
tdj_cm
cm(id="" filename="")
movie_agreement(version="1")
movie_upload(url=movie_upload)
expert(phase="1")
expert_random_secert(phase="1")
boss(phase="1")
vip_pass_black
eisei(open="1")
deller_bonus(open="1")
newsong_another(open="1")
expert_secret_full_open
system_voice_phase(phase=system_voice_phase)
extra_boss_event(phase="1")
event1_phase(phase="4")
premium_area_news(open="1")
premium_area_qpro(open="1")
play_video
world_tourism(open_list="-1")
bpl_battle(phase="1")
display_asio_logo

View File

@ -1,765 +0,0 @@
IIDX28gameSystem(status="0")
arena_schedule
phase(__type="u8") 2
start(__type="u32") 1605784800
end(__type="u32") 4102326000
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 0
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 1
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 2
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 3
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 4
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 5
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 6
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 7
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 8
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 9
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 10
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 11
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 12
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 13
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 14
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 15
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 16
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 17
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 18
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 19
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 0
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 1
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 2
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 3
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 4
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 5
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 6
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 7
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 8
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 9
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 10
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 11
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 12
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 13
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 14
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 15
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 16
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 17
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 18
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 19
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 0
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 1
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 2
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 3
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 4
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 5
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 6
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 7
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 8
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 9
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 10
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 11
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 12
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 13
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 14
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 15
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 16
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 17
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 18
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 19
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 0
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 1
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 2
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 3
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 4
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 5
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 6
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 7
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 8
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 9
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 10
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 11
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 12
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 13
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 14
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 15
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 16
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 17
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 18
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 19
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 0
grade_id(__type="s32") 6
low_music_difficult(__type="s32") 4
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 1
grade_id(__type="s32") 7
low_music_difficult(__type="s32") 5
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 2
grade_id(__type="s32") 8
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 3
grade_id(__type="s32") 9
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 4
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 5
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 6
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 7
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 8
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 9
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 10
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 11
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 12
grade_id(__type="s32") 14
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 13
grade_id(__type="s32") 14
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 14
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 15
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 16
grade_id(__type="s32") 16
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 17
grade_id(__type="s32") 16
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 18
grade_id(__type="s32") 17
low_music_difficult(__type="s32") 12
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 19
grade_id(__type="s32") 18
low_music_difficult(__type="s32") 12
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 0
grade_id(__type="s32") 6
low_music_difficult(__type="s32") 3
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 1
grade_id(__type="s32") 7
low_music_difficult(__type="s32") 3
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 2
grade_id(__type="s32") 8
low_music_difficult(__type="s32") 4
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 3
grade_id(__type="s32") 8
low_music_difficult(__type="s32") 4
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 4
grade_id(__type="s32") 9
low_music_difficult(__type="s32") 5
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 5
grade_id(__type="s32") 9
low_music_difficult(__type="s32") 5
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 6
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 7
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 8
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 9
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 10
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 11
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 12
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 13
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 14
grade_id(__type="s32") 14
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 15
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 16
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 17
grade_id(__type="s32") 16
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 18
grade_id(__type="s32") 17
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 19
grade_id(__type="s32") 18
low_music_difficult(__type="s32") 12
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1

View File

@ -1,26 +0,0 @@
IIDX29pc(status="0" expire="600")
ir(beat=beat)
//-
cm(id="" folder="" compo="")
tdj_cm
cm(id="" filename="")
movie_agreement(version="1")
movie_upload(url=movie_upload)
expert(phase="1")
expert_random_secert(phase="1")
boss(phase="1")
vip_pass_black
eisei(open="1")
deller_bonus(open="1")
newsong_another(open="1")
expert_secret_full_open
system_voice_phase(phase=system_voice_phase)
extra_boss_event(phase="1")
event1_phase(phase="4")
premium_area_news(open="1")
premium_area_qpro(open="1")
play_video
world_tourism(open_list="-1")
bpl_battle(phase="1")
display_asio_logo
lane_gacha

View File

@ -1,773 +0,0 @@
IIDX29gameSystem(status="0")
arena_schedule
phase(__type="u8") 2
start(__type="u32") 1605784800
end(__type="u32") 4102326000
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 0
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 1
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 2
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 3
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 4
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 5
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 6
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 7
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 8
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 9
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 10
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 11
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 12
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 13
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 14
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 15
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 16
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 17
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 18
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 19
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 0
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 1
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 2
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 3
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 4
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 5
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 6
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 7
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 8
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 9
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 10
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 11
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 12
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 13
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 14
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 15
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 16
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 17
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 18
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 19
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 0
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 1
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 2
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 3
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 4
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 5
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 6
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 7
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 8
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 9
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 10
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 11
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 12
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 13
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 14
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 15
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 16
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 17
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 18
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 19
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 0
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 1
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 2
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 3
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 4
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 5
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 6
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 7
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 8
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 9
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 10
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 11
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 12
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 13
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 14
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 15
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 16
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 17
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 18
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 19
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 0
grade_id(__type="s32") 6
low_music_difficult(__type="s32") 4
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 1
grade_id(__type="s32") 7
low_music_difficult(__type="s32") 5
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 2
grade_id(__type="s32") 8
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 3
grade_id(__type="s32") 9
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 4
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 5
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 6
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 7
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 8
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 9
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 10
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 11
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 12
grade_id(__type="s32") 14
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 13
grade_id(__type="s32") 14
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 14
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 15
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 16
grade_id(__type="s32") 16
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 17
grade_id(__type="s32") 16
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 18
grade_id(__type="s32") 17
low_music_difficult(__type="s32") 12
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 19
grade_id(__type="s32") 18
low_music_difficult(__type="s32") 12
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 0
grade_id(__type="s32") 6
low_music_difficult(__type="s32") 3
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 1
grade_id(__type="s32") 7
low_music_difficult(__type="s32") 3
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 2
grade_id(__type="s32") 8
low_music_difficult(__type="s32") 4
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 3
grade_id(__type="s32") 8
low_music_difficult(__type="s32") 4
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 4
grade_id(__type="s32") 9
low_music_difficult(__type="s32") 5
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 5
grade_id(__type="s32") 9
low_music_difficult(__type="s32") 5
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 6
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 7
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 8
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 9
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 10
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 11
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 12
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 13
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 14
grade_id(__type="s32") 14
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 15
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 16
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 17
grade_id(__type="s32") 16
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 18
grade_id(__type="s32") 17
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 19
grade_id(__type="s32") 18
low_music_difficult(__type="s32") 12
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
CommonBossPhase(val="1")
Event1InternalPhase(val="4")
ExtraBossEventPhase(val="1")
isNewSongAnother12OpenFlg(val="1")
gradeOpenPhase(val="2")
isEiseiOpenFlg(val="1")
WorldTourismOpenList(val="-1")
BPLBattleOpenPhase(val="1")

View File

@ -1,19 +0,0 @@
IIDX30pc(status="0" expire="600")
ir(beat=beat)
//-
cm(id="" folder="" compo="")
tdj_cm
cm(id="" filename="")
movie_agreement(version="1")
movie_upload(url=movie_upload)
vip_pass_black
deller_bonus(open="1")
newsong_another(open="1")
system_voice_phase(phase=system_voice_phase)
premium_area_news(open="1")
premium_area_qpro(open="1")
play_video
display_asio_logo
lane_gacha
tourism_booster
ameto_event

View File

@ -1,773 +0,0 @@
IIDX30gameSystem(status="0")
arena_schedule
phase(__type="u8") 2
start(__type="u32") 1605784800
end(__type="u32") 4102326000
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 0
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 1
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 2
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 3
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 4
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 5
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 6
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 7
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 8
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 9
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 10
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 11
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 12
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 13
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 14
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 15
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 16
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 17
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 18
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 0
arena_class(__type="s32") 19
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 0
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 1
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 2
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 3
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 4
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 5
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 6
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 7
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 8
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 9
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 10
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 11
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 12
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 13
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 14
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 15
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 16
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 17
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 18
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
arena_music_difficult
play_style(__type="s32") 1
arena_class(__type="s32") 19
low_difficult(__type="s32") 1
high_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
force_music_list_id(__type="s32") -1
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 0
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 1
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 2
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 3
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 4
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 5
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 6
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 7
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 8
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 9
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 10
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 11
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 12
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 13
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 14
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 15
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 16
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 17
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 18
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 0
matching_class(__type="s32") 19
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 0
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 1
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 2
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 3
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 4
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 5
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 6
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 7
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 8
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 9
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 10
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 11
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 12
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 13
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 14
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 15
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 16
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 17
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 18
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
maching_class_range
play_style(__type="s32") 1
matching_class(__type="s32") 19
low_arena_class(__type="s32") 1
high_arena_class(__type="s32") 20
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 0
grade_id(__type="s32") 6
low_music_difficult(__type="s32") 4
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 1
grade_id(__type="s32") 7
low_music_difficult(__type="s32") 5
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 2
grade_id(__type="s32") 8
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 3
grade_id(__type="s32") 9
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 4
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 5
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 6
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 7
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 8
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 9
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 10
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 11
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 12
grade_id(__type="s32") 14
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 13
grade_id(__type="s32") 14
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 14
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 15
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 16
grade_id(__type="s32") 16
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 17
grade_id(__type="s32") 16
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 18
grade_id(__type="s32") 17
low_music_difficult(__type="s32") 12
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 0
arena_class(__type="s32") 19
grade_id(__type="s32") 18
low_music_difficult(__type="s32") 12
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 0
grade_id(__type="s32") 6
low_music_difficult(__type="s32") 3
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 1
grade_id(__type="s32") 7
low_music_difficult(__type="s32") 3
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 2
grade_id(__type="s32") 8
low_music_difficult(__type="s32") 4
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 3
grade_id(__type="s32") 8
low_music_difficult(__type="s32") 4
high_music_difficult(__type="s32") 5
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 4
grade_id(__type="s32") 9
low_music_difficult(__type="s32") 5
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 5
grade_id(__type="s32") 9
low_music_difficult(__type="s32") 5
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 6
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 6
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 7
grade_id(__type="s32") 10
low_music_difficult(__type="s32") 6
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 8
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 7
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 9
grade_id(__type="s32") 11
low_music_difficult(__type="s32") 7
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 10
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 8
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 11
grade_id(__type="s32") 12
low_music_difficult(__type="s32") 8
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 12
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 9
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 13
grade_id(__type="s32") 13
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 14
grade_id(__type="s32") 14
low_music_difficult(__type="s32") 9
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 15
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 10
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 16
grade_id(__type="s32") 15
low_music_difficult(__type="s32") 10
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 0
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 17
grade_id(__type="s32") 16
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 11
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 18
grade_id(__type="s32") 17
low_music_difficult(__type="s32") 11
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
arena_cpu_define
play_style(__type="s32") 1
arena_class(__type="s32") 19
grade_id(__type="s32") 18
low_music_difficult(__type="s32") 12
high_music_difficult(__type="s32") 12
is_leggendaria(__type="bool") 1
CommonBossPhase(val="1")
Event1InternalPhase(val="4")
ExtraBossEventPhase(val="1")
isNewSongAnother12OpenFlg(val="1")
gradeOpenPhase(val="2")
isEiseiOpenFlg(val="1")
WorldTourismOpenList(val="-1")
BPLBattleOpenPhase(val="1")

View File

@ -0,0 +1,60 @@
//DATA//
profile: DB.FindOne(refid, { collection: 'profile' })
pcdata: DB.FindOne(refid, { collection: 'pcdata' })
-
const version = [
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30
];
div
.card
.card-header
p.card-header-title
span.icon
i.mdi.mdi-account-edit
| Profile
.card-content
.field
label.label Version
.ver-select
.control
.select
select(name="version")
each i in version
option(selected=(i==pcdata.version)) #{i}
.field
label.label Name
.body
body #{profile.name}
.field
label.label IIDX ID
.body
body #{profile.idstr}
.field
label.label SP Grade
.body
- const a = pcdata.sgid
if a==-1
body ----
else
body #{pcdata.sgid}
.field
label.label DP Grade
.body
- const b = pcdata.dgid
if b==-1
body ----
else
body #{pcdata.dgid}

View File

@ -0,0 +1,190 @@
//DATA//
profile: DB.FindOne(refid, { collection: "profile" })
pcdata: DB.FindOne(refid, { collection: "pcdata" })
custom: DB.FindOne(refid, { collection: "custom" })
-
const version = [
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30
];
div
.card
.card-header
p.card-header-title
span.icon
i.mdi.mdi-account-edit
| Settings
.card-content
form(method="post" action="/emit/updateIIDXCustom")
.field
input(type="text" name="refid", value=refid readonly hidden)
label.label IIDX ID
.control
input.input(type="text" name="iidxid", value=profile.idstr readonly)
.field
label.label Version
.control
.select
select(name="version")
each i in version
option(selected=(i==pcdata.version)) #{i}
.field
label.label Name
.control
input.input(type="text" name="name", value=profile.name)
//- SKIN
.field
label.label Frame
.control
input.input(type="number" name="frame", value=custom.frame)
.field
label.label Turntable
.control
input.input(type="number" name="turntable", value=custom.turntable)
.field
label.label Note Burst
.control
input.input(type="number" name="note_burst", value=custom.note_burst)
.field
label.label Menu Music
.control
input.input(type="number" name="menu_music", value=custom.menu_music)
.field
label.label Lane Cover
.control
input.input(type="number" name="lane_cover", value=custom.lane_cover)
.field
label.label Category Voice
.control
input.input(type="number" name="category_vox", value=custom.category_vox)
.field
label.label Note Skin
.control
input.input(type="number" name="note_skin", value=custom.note_skin)
.field
label.label Full Combo Splash
.control
input.input(type="number" name="full_combo_splash", value=custom.full_combo_splash)
.field
label.label Note Beam
.control
input.input(type="number" name="note_beam", value=custom.note_beam)
.field
label.label Judgement Font
.control
input.input(type="number" name="judge_font", value=custom.judge_font)
.field
label.label Disable Music Preview
.control
input(type="checkbox" name="disable_musicpreview", checked=Boolean(custom.disable_musicpreview))
.field
label.label Pacemaker Cover
.control
input.input(type="number" name="pacemaker_cover", value=custom.pacemaker_cover)
.field
label.label VEFX Lock
.control
input(type="checkbox" name="vefx_lock", checked=Boolean(custom.vefx_lock))
.field
label.label VEFX Lock (Effector)
.control
input.input(type="number" name="effect", value=custom.effect)
.field
label.label Note Burst Size
.control
input.input(type="number" name="bomb_size", value=custom.bomb_size)
.field
label.label Disable HCN Color
.control
input(type="checkbox" name="disable_hcn_color", checked=Boolean(custom.disable_hcn_color))
.field
label.label First Note Preview
.control
input.input(type="number" name="first_note_preview", value=custom.first_note_preview)
//- APPEND SETTINGS
.field
label.label Rank Folder
.control
input(type="checkbox" name="rank_folder", checked=Boolean(custom.rank_folder))
.field
label.label Clear State Folder
.control
input(type="checkbox" name="clear_folder", checked=Boolean(custom.clear_folder))
.field
label.label Difficulty Folder
.control
input(type="checkbox" name="diff_folder", checked=Boolean(custom.diff_folder))
.field
label.label Alphabet Folder
.control
input(type="checkbox" name="alpha_folder", checked=Boolean(custom.alpha_folder))
.field
label.label Rival Folder
.control
input(type="checkbox" name="rival_folder", checked=Boolean(custom.rival_folder))
.field
label.label Rival WIN/LOSE Folder
.control
input(type="checkbox" name="rival_battle_folder", checked=Boolean(custom.rival_battle_folder))
.field
label.label Rival Info / Venue Top Display
.control
input(type="checkbox" name="rival_info", checked=Boolean(custom.rival_info))
.field
label.label Hide Playcount
.control
input(type="checkbox" name="hide_playcount", checked=Boolean(custom.hide_playcount))
.field
label.label Disable Pacemaker Cut-In
.control
input(type="checkbox" name="disable_graph_cutin", checked=Boolean(custom.disable_graph_cutin))
.field
label.label Classic Hi-SPEED
.control
input(type="checkbox" name="class_hispeed", checked=Boolean(custom.class_hispeed))
.field
label.label Rival Played Folder
.control
input(type="checkbox" name="rival_played_folder", checked=Boolean(custom.rival_played_folder))
.field
label.label Hide IIDX ID
.control
input(type="checkbox" name="hide_iidxid", checked=Boolean(custom.hide_iidxid))
//- QPRO
.field
label.label QPRO Head
.control
input.input(type="number" name="qpro_head", value=custom.qpro_head)
.field
label.label QPRO Hair
.control
input.input(type="number" name="qpro_hair", value=custom.qpro_hair)
.field
label.label QPRO Hand
.control
input.input(type="number" name="qpro_hand", value=custom.qpro_hand)
.field
label.label QPRO Face
.control
input.input(type="number" name="qpro_face", value=custom.qpro_face)
.field
label.label QPRO Body
.control
input.input(type="number" name="qpro_body", value=custom.qpro_body)
.field
button.button.is-primary(type="submit")
span.icon
i.mdi.mdi-check
span Submit

View File

@ -0,0 +1,118 @@
//DATA//
profile: DB.FindOne(refid, { collection: "profile" })
profiles: DB.Find(null, { collection: "profile" })
rival: DB.Find(refid, { collection: "rival" })
-
const rival_list=[["", "None", "0000-0000"]];
profiles.forEach((res) => {
rival_list.push([res.refid, res.name, res.idstr])
});
const my_sp_rival = [], my_dp_rival = [];
rival.forEach((res) => {
if (res.play_style == 1) my_sp_rival[res.index] = res.rival_refid;
else if (res.play_style == 2) my_dp_rival[res.index] = res.rival_refid;
});
div
.card
.card-header
p.card-header-title
span.icon
i.mdi.mdi-account-edit
| Rivals
.card-content
form(method="post" action="/emit/updateIIDXRival")
.field
input(type="text" name="refid", value=refid readonly hidden)
label.label SP Rivals
.body
.control
.select
select(name="sp_rival1")
each i in rival_list
if my_sp_rival[0] != null
option(selected=(i[0]==my_sp_rival[0]) value=i[0]) #{i[1]} [#{i[2]}]
else
option(value=i[0]) #{i[1]} [#{i[2]}]
.control
.select
select(name="sp_rival2")
each i in rival_list
if my_sp_rival[1] != null
option(selected=(i[0]==my_sp_rival[1]) value=i[0]) #{i[1]} [#{i[2]}]
else
option(value=i[0]) #{i[1]} [#{i[2]}]
.control
.select
select(name="sp_rival3")
each i in rival_list
if my_sp_rival[2] != null
option(selected=(i[0]==my_sp_rival[2]) value=i[0]) #{i[1]} [#{i[2]}]
else
option(value=i[0]) #{i[1]} [#{i[2]}]
.control
.select
select(name="sp_rival4")
each i in rival_list
if my_sp_rival[3] != null
option(selected=(i[0]==my_sp_rival[3]) value=i[0]) #{i[1]} [#{i[2]}]
else
option(value=i[0]) #{i[1]} [#{i[2]}]
.control
.select
select(name="sp_rival5")
each i in rival_list
if my_sp_rival[4] != null
option(selected=(i[0]==my_sp_rival[4]) value=i[0]) #{i[1]} [#{i[2]}]
else
option(value=i[0]) #{i[1]} [#{i[2]}]
.field
label.label DP Rivals
.body
.control
.select
select(name="dp_rival1")
each i in rival_list
if my_dp_rival[0] != null
option(selected=(i[0]==my_dp_rival[0]) value=i[0]) #{i[1]} [#{i[2]}]
else
option(value=i[0]) #{i[1]} [#{i[2]}]
.control
.select
select(name="dp_rival2")
each i in rival_list
if my_dp_rival[1] != null
option(selected=(i[0]==my_dp_rival[1]) value=i[0]) #{i[1]} [#{i[2]}]
else
option(value=i[0]) #{i[1]} [#{i[2]}]
.control
.select
select(name="dp_rival3")
each i in rival_list
if my_dp_rival[2] != null
option(selected=(i[0]==my_dp_rival[2]) value=i[0]) #{i[1]} [#{i[2]}]
else
option(value=i[0]) #{i[1]} [#{i[2]}]
.control
.select
select(name="dp_rival4")
each i in rival_list
if my_dp_rival[3] != null
option(selected=(i[0]==my_dp_rival[3]) value=i[0]) #{i[1]} [#{i[2]}]
else
option(value=i[0]) #{i[1]} [#{i[2]}]
.control
.select
select(name="dp_rival5")
each i in rival_list
if my_dp_rival[4] != null
option(selected=(i[0]==my_dp_rival[4]) value=i[0]) #{i[1]} [#{i[2]}]
else
option(value=i[0]) #{i[1]} [#{i[2]}]
.field
button.button.is-primary(type="submit")
span.icon
i.mdi.mdi-check
span Submit

View File

@ -0,0 +1,25 @@
//DATA//
score: DB.Find(refid, { collection: 'score' })
div
.card
.card-header
p.card-header-title
span.icon
i.mdi.mdi-account-edit
| Score
.card-content
table.table
thead
tr
th Music ID
th EXSCORE [SPB~DPL]
th Miss Count [SPB~DPL]
th Clear Lamp [SPB~DPL]
tbody
each i in score
tr
td #{i.mid}
td #{i.esArray}
td #{i.mArray}
td #{i.cArray}

View File

@ -1,82 +0,0 @@
//DATA//
profile: DB.FindOne(refid, { collection: "profile" })
profiles: DB.Find(null, { collection: "profile" })
rival: DB.Find(refid, { collection: "rival" })
-
const rival_list=[["", "None", "0000-0000"]]
profiles.forEach((res) => {
rival_list.push([res.refid, res.name, res.idstr])
})
div
.card
.card-header
p.card-header-title
span.icon
i.mdi.mdi-account-edit
| Rivals
.card-content
form(method="post" action="/emit/updateIIDXRivalSettings")
.field
input(type="text" name="iidxid", value=profile.idstr readonly hidden)
label.label SP Rivals
.body
.control
.select
select(name="sp_rival1")
each i in rival_list
option(value=i[0]) #{i[1]} [#{i[2]}]
.control
.select
select(name="sp_rival2")
each i in rival_list
option(value=i[0]) #{i[1]} [#{i[2]}]
.control
.select
select(name="sp_rival3")
each i in rival_list
option(value=i[0]) #{i[1]} [#{i[2]}]
.control
.select
select(name="sp_rival4")
each i in rival_list
option(value=i[0]) #{i[1]} [#{i[2]}]
.control
.select
select(name="sp_rival5")
each i in rival_list
option(value=i[0]) #{i[1]} [#{i[2]}]
.field
label.label DP Rivals
.body
.control
.select
select(name="dp_rival1")
each i in rival_list
option(value=i[0]) #{i[1]} [#{i[2]}]
.control
.select
select(name="dp_rival2")
each i in rival_list
option(value=i[0]) #{i[1]} [#{i[2]}]
.control
.select
select(name="dp_rival3")
each i in rival_list
option(value=i[0]) #{i[1]} [#{i[2]}]
.control
.select
select(name="dp_rival4")
each i in rival_list
option(value=i[0]) #{i[1]} [#{i[2]}]
.control
.select
select(name="dp_rival5")
each i in rival_list
option(value=i[0]) #{i[1]} [#{i[2]}]
.field
button.button.is-primary(type="submit")
span.icon
i.mdi.mdi-check
span Submit