mirror of
https://github.com/mon/BemaniPatcher.git
synced 2026-08-01 14:10:40 -07:00
Add patches for older versions of chunithm (#163)
* Add files via upload * Add files via upload * Add files via upload * Delete chunithm.png * Delete chunithm.html * Add files via upload * Update index.html * Add files via upload
This commit is contained in:
+155
@@ -0,0 +1,155 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>CHUNITHM AIR Modder</title>
|
||||||
|
<link rel="stylesheet" href="css/style.css">
|
||||||
|
<!-- don't hate -->
|
||||||
|
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
|
||||||
|
<script type="text/javascript" src="js/FileSaver.min.js"></script>
|
||||||
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
window.addEventListener("load", function () {
|
||||||
|
new PatchContainer([
|
||||||
|
|
||||||
|
//AIR
|
||||||
|
new Patcher("chuniApp.exe", "(1.10.00) AIR", [
|
||||||
|
{
|
||||||
|
// mon AIR
|
||||||
|
name: "Allow 127.0.0.1 as the network server",
|
||||||
|
patches: [
|
||||||
|
{offset: 0x7EBFA0, off: [0x55, 0x8B, 0xEC], on: [0x31, 0xC0, 0xC3]},
|
||||||
|
{offset: 0x14C1C5C, off: [0x31, 0x32, 0x37, 0x2F], on: [0x30, 0x2F, 0x38, 0x00]}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// mon AIR
|
||||||
|
name: "Disable shop close lockout",
|
||||||
|
tooltip: "Disables ~12-8am lockout. Does not disable maint lockout from 6:30-7am JST",
|
||||||
|
patches: [
|
||||||
|
{offset: 0x813BB3, off: [0x74], on: [0xEB]},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// somewhatlurker AIR
|
||||||
|
name: "Force shared audio mode, system audio samplerate must be 48000",
|
||||||
|
tooltip: "Improves compatibility but may increase latency",
|
||||||
|
patches: [
|
||||||
|
{offset: 0xC02FFA, off: [0x01], on: [0x00]},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// somewhatlurker AIR
|
||||||
|
name: "Force 2 channel audio output",
|
||||||
|
patches: [
|
||||||
|
{offset: 0xC030D1, off: [0x75, 0x3F], on: [0x90, 0x90]},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// lybxlpsv AIR
|
||||||
|
name: "Disable Song Select Timer",
|
||||||
|
tooltip: "May only work when playing with card.",
|
||||||
|
patches: [
|
||||||
|
{offset: 0x639AF2, off: [0x74], on: [0xEB]},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// esterTion AIR
|
||||||
|
name: "Set All Timers to 999",
|
||||||
|
patches: [
|
||||||
|
{offset: 0x531130, off: [0x8B, 0x44, 0x24, 0x04, 0x69, 0xC0, 0xE8, 0x03, 0x00, 0x00], on: [0xB8, 0x58, 0x3E, 0x0F, 0x00, 0x90, 0x90, 0x90, 0x90, 0x90]},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// lin714093880 & esterTion AIR
|
||||||
|
name: "Better patch for head-to-head play",
|
||||||
|
tooltip: "Fix infinite sync while trying to connect to head to head play.",
|
||||||
|
patches: [
|
||||||
|
{offset: 0x410293, off: [0x01], on: [0x00]},
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]),
|
||||||
|
|
||||||
|
//AIR PLUS
|
||||||
|
new Patcher("chuniApp.exe", "(1.15.00) AIR PLUS", [
|
||||||
|
{
|
||||||
|
// mon AIRPLUS
|
||||||
|
name: "Allow 127.0.0.1 as the network server",
|
||||||
|
patches: [
|
||||||
|
{offset: 0x81BFD0, off: [0x55, 0x8B, 0xEC], on: [0x31, 0xC0, 0xC3]},
|
||||||
|
{offset: 0x1546034, off: [0x31, 0x32, 0x37, 0x2F], on: [0x30, 0x2F, 0x38, 0x00]}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// mon AIRPLUS
|
||||||
|
name: "Disable shop close lockout",
|
||||||
|
tooltip: "Disables ~12-8am lockout. Does not disable maint lockout from 6:30-7am JST",
|
||||||
|
patches: [
|
||||||
|
{offset: 0x843C03, off: [0x74], on: [0xEB]},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// somewhatlurker AIRPLUS
|
||||||
|
name: "Force shared audio mode, system audio samplerate must be 48000",
|
||||||
|
tooltip: "Improves compatibility but may increase latency",
|
||||||
|
patches: [
|
||||||
|
{offset: 0xC5FC7A, off: [0x01], on: [0x00]},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// somewhatlurker AIRPLUS
|
||||||
|
name: "Force 2 channel audio output",
|
||||||
|
patches: [
|
||||||
|
{offset: 0xC5FD51, off: [0x75, 0x3F], on: [0x90, 0x90]},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// lybxlpsv AIRPLUS
|
||||||
|
name: "Disable Song Select Timer",
|
||||||
|
tooltip: "May only work when playing with card.",
|
||||||
|
patches: [
|
||||||
|
{offset: 0x664602, off: [0x74], on: [0xEB]},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// esterTion AIRPLUS
|
||||||
|
name: "Set All Timers to 999",
|
||||||
|
patches: [
|
||||||
|
{offset: 0x548960, off: [0x8B, 0x44, 0x24, 0x04, 0x69, 0xC0, 0xE8, 0x03, 0x00, 0x00], on: [0xB8, 0x58, 0x3E, 0x0F, 0x00, 0x90, 0x90, 0x90, 0x90, 0x90]},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// lin714093880 & esterTion AIRPLUS
|
||||||
|
name: "Better patch for head-to-head play",
|
||||||
|
tooltip: "Fix infinite sync while trying to connect to head to head play.",
|
||||||
|
patches: [
|
||||||
|
{offset: 0x41F843, off: [0x01], on: [0x00]},
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]),
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
window.addEventListener("load", function () {
|
||||||
|
new PatchContainer([
|
||||||
|
|
||||||
|
//AIR&AIRPLUS
|
||||||
|
new Patcher("aimeReaderHost.exe", "(1.10.00) AIR & (1.15.00) AIR PLUS", [
|
||||||
|
{
|
||||||
|
name: "Change domain obfuscation to be compatible with segatools",
|
||||||
|
tooltip: "(Scene Release Only) Patches 'aime.anbzvarg.wc' to 'nvzr.anbzvarg.wc' for Aime server check to work correctly.",
|
||||||
|
patches: [
|
||||||
|
{offset: 0xA83C4, off: [0x61, 0x69, 0x6D, 0x65, 0x2E, 0x61, 0x6E, 0x62, 0x7A, 0x76, 0x61, 0x72, 0x67, 0x2E, 0x77, 0x63], on: [0x6E, 0x76, 0x7A, 0x72, 0x2E, 0x61, 0x6E, 0x62, 0x7A, 0x76, 0x61, 0x72, 0x67, 0x2E, 0x77, 0x63]},
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]),
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>CHUNITHM AIR Modder</h1>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,93 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>CHUNITHM PLUS Modder</title>
|
||||||
|
<link rel="stylesheet" href="css/style.css">
|
||||||
|
<!-- don't hate -->
|
||||||
|
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
|
||||||
|
<script type="text/javascript" src="js/FileSaver.min.js"></script>
|
||||||
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
window.addEventListener("load", function () {
|
||||||
|
new PatchContainer([
|
||||||
|
new Patcher("chuniApp.exe", "(1.05.00) PLUS", [
|
||||||
|
{
|
||||||
|
// mon PLUS
|
||||||
|
name: "Allow 127.0.0.1 as the network server",
|
||||||
|
patches: [
|
||||||
|
{offset: 0x798720, off: [0x55, 0x8B, 0xEC], on: [0x31, 0xC0, 0xC3]},
|
||||||
|
{offset: 0x141EF58, off: [0x31, 0x32, 0x37, 0x2F], on: [0x30, 0x2F, 0x38, 0x00]}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// mon PLUS
|
||||||
|
name: "Disable shop close lockout",
|
||||||
|
tooltip: "Disables ~12-8am lockout. Does not disable maint lockout from 6:30-7am JST",
|
||||||
|
patches: [
|
||||||
|
{offset: 0x7C02C3, off: [0x74], on: [0xEB]},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// somewhatlurker PLUS
|
||||||
|
name: "Force shared audio mode, system audio samplerate must be 48000",
|
||||||
|
tooltip: "Improves compatibility but may increase latency",
|
||||||
|
patches: [
|
||||||
|
{offset: 0xB928FA, off: [0x01], on: [0x00]},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// somewhatlurker PLUS
|
||||||
|
name: "Force 2 channel audio output",
|
||||||
|
patches: [
|
||||||
|
{offset: 0xB929D1, off: [0x75, 0x3F], on: [0x90, 0x90]},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// lybxlpsv PLUS
|
||||||
|
name: "Disable Song Select Timer",
|
||||||
|
tooltip: "May only work when playing with card.",
|
||||||
|
patches: [
|
||||||
|
{offset: 0x5E1172, off: [0x74], on: [0xEB]},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// esterTion PLUS
|
||||||
|
name: "Set All Timers to 999",
|
||||||
|
patches: [
|
||||||
|
{offset: 0x505510, off: [0x8B, 0x44, 0x24, 0x04, 0x69, 0xC0, 0xE8, 0x03, 0x00, 0x00], on: [0xB8, 0x58, 0x3E, 0x0F, 0x00, 0x90, 0x90, 0x90, 0x90, 0x90]},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// lin714093880 & esterTion PLUS
|
||||||
|
name: "Better patch for head-to-head play",
|
||||||
|
tooltip: "Fix infinite sync while trying to connect to head to head play.",
|
||||||
|
patches: [
|
||||||
|
{offset: 0x3F9A83, off: [0x01], on: [0x00]},
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]),
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
window.addEventListener("load", function () {
|
||||||
|
new PatchContainer([
|
||||||
|
new Patcher("aimeReaderHost.exe", "(1.05.00) PLUS", [
|
||||||
|
{
|
||||||
|
name: "Change obfuscation to be compatible with segatools",
|
||||||
|
tooltip: "Patches 'aime.anbzvarg.wc' to 'nvzr.anbzvarg.wc' for Aime server check to work correctly.",
|
||||||
|
patches: [
|
||||||
|
{offset: 0xA36A8, off: [0x61, 0x69, 0x6D, 0x65, 0x2E, 0x61, 0x6E, 0x62, 0x7A, 0x76, 0x61, 0x72, 0x67, 0x2E, 0x77, 0x63], on: [0x6E, 0x76, 0x7A, 0x72, 0x2E, 0x61, 0x6E, 0x62, 0x7A, 0x76, 0x61, 0x72, 0x67, 0x2E, 0x77, 0x63]},
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]),
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>CHUNITHM PLUS Modder</h1>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
+168
@@ -0,0 +1,168 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>CHUNITHM STAR Modder</title>
|
||||||
|
<link rel="stylesheet" href="css/style.css">
|
||||||
|
<!-- don't hate -->
|
||||||
|
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
|
||||||
|
<script type="text/javascript" src="js/FileSaver.min.js"></script>
|
||||||
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
window.addEventListener("load", function () {
|
||||||
|
new PatchContainer([
|
||||||
|
|
||||||
|
//STAR
|
||||||
|
new Patcher("chuniApp.exe", "(1.20.00) STAR", [
|
||||||
|
{
|
||||||
|
// mon STAR
|
||||||
|
name: "Allow 127.0.0.1 as the network server",
|
||||||
|
patches: [
|
||||||
|
{offset: 0x834630, off: [0x55, 0x8B, 0xEC], on: [0x31, 0xC0, 0xC3]},
|
||||||
|
{offset: 0x1577C84, off: [0x31, 0x32, 0x37, 0x2F], on: [0x30, 0x2F, 0x38, 0x00]}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// mon STAR
|
||||||
|
name: "Disable shop close lockout",
|
||||||
|
tooltip: "Disables ~12-8am lockout. Does not disable maint lockout from 6:30-7am JST",
|
||||||
|
patches: [
|
||||||
|
{offset: 0x85C263, off: [0x74], on: [0xEB]},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// somewhatlurker STAR
|
||||||
|
name: "Force shared audio mode, system audio samplerate must be 48000",
|
||||||
|
tooltip: "Improves compatibility but may increase latency",
|
||||||
|
patches: [
|
||||||
|
{offset: 0xBDFA2A, off: [0x01], on: [0x00]},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// somewhatlurker STAR
|
||||||
|
name: "Force 2 channel audio output",
|
||||||
|
patches: [
|
||||||
|
{offset: 0xBDFB01, off: [0x75, 0x3F], on: [0x90, 0x90]},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// lybxlpsv STAR
|
||||||
|
name: "Disable Song Select Timer",
|
||||||
|
tooltip: "May only work when playing with card.",
|
||||||
|
patches: [
|
||||||
|
{offset: 0x67CA22, off: [0x74], on: [0xEB]},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// esterTion STAR
|
||||||
|
name: "Set All Timers to 999",
|
||||||
|
patches: [
|
||||||
|
{offset: 0x555FF0, off: [0x8B, 0x44, 0x24, 0x04, 0x69, 0xC0, 0xE8, 0x03, 0x00, 0x00], on: [0xB8, 0x58, 0x3E, 0x0F, 0x00, 0x90, 0x90, 0x90, 0x90, 0x90]},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// lin714093880 & esterTion STAR
|
||||||
|
name: "Better patch for head-to-head play",
|
||||||
|
tooltip: "Fix infinite sync while trying to connect to head to head play.",
|
||||||
|
patches: [
|
||||||
|
{offset: 0x3D9D33, off: [0x01], on: [0x00]},
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]),
|
||||||
|
|
||||||
|
//STAR PLUS
|
||||||
|
new Patcher("chuniApp.exe", "(1.25.00) STAR PLUS", [
|
||||||
|
{
|
||||||
|
// mon STARPLUS
|
||||||
|
name: "Allow 127.0.0.1 as the network server",
|
||||||
|
patches: [
|
||||||
|
{offset: 0x83C8A0, off: [0x55, 0x8B, 0xEC], on: [0x31, 0xC0, 0xC3]},
|
||||||
|
{offset: 0x1595478, off: [0x31, 0x32, 0x37, 0x2F], on: [0x30, 0x2F, 0x38, 0x00]}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// mon STARPLUS
|
||||||
|
name: "Disable shop close lockout",
|
||||||
|
tooltip: "Disables ~12-8am lockout. Does not disable maint lockout from 6:30-7am JST",
|
||||||
|
patches: [
|
||||||
|
{offset: 0x8644F3, off: [0x74], on: [0xEB]},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// somewhatlurker STARPLUS
|
||||||
|
name: "Force shared audio mode, system audio samplerate must be 48000",
|
||||||
|
tooltip: "Improves compatibility but may increase latency",
|
||||||
|
patches: [
|
||||||
|
{offset: 0xBF4BFA, off: [0x01], on: [0x00]},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// somewhatlurker STARPLUS
|
||||||
|
name: "Force 2 channel audio output",
|
||||||
|
patches: [
|
||||||
|
{offset: 0xBF4CD1, off: [0x75, 0x3F], on: [0x90, 0x90]},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// lybxlpsv STARPLUS
|
||||||
|
name: "Disable Song Select Timer",
|
||||||
|
tooltip: "May only work when playing with card.",
|
||||||
|
patches: [
|
||||||
|
{offset: 0x680652, off: [0x74], on: [0xEB]},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// esterTion STARPLUS
|
||||||
|
name: "Set All Timers to 999",
|
||||||
|
patches: [
|
||||||
|
{offset: 0x5567E0, off: [0x8B, 0x44, 0x24, 0x04, 0x69, 0xC0, 0xE8, 0x03, 0x00, 0x00], on: [0xB8, 0x58, 0x3E, 0x0F, 0x00, 0x90, 0x90, 0x90, 0x90, 0x90]},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// lin714093880 & esterTion STARPLUS
|
||||||
|
name: "Better patch for head-to-head play",
|
||||||
|
tooltip: "Fix infinite sync while trying to connect to head to head play.",
|
||||||
|
patches: [
|
||||||
|
{offset: 0x3D8C43, off: [0x01], on: [0x00]},
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]),
|
||||||
|
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
window.addEventListener("load", function () {
|
||||||
|
new PatchContainer([
|
||||||
|
|
||||||
|
//STAR
|
||||||
|
new Patcher("aimeReaderHost.exe", "(1.20.00) STAR", [
|
||||||
|
{
|
||||||
|
name: "Change obfuscation to be compatible with segatools",
|
||||||
|
tooltip: "(Scene Release Only) Patches 'aime.anbzvarg.wc' to 'nvzr.anbzvarg.wc' for Aime server check to work correctly.",
|
||||||
|
patches: [
|
||||||
|
{offset: 0xA83C4, off: [0x61, 0x69, 0x6D, 0x65, 0x2E, 0x61, 0x6E, 0x62, 0x7A, 0x76, 0x61, 0x72, 0x67, 0x2E, 0x77, 0x63], on: [0x6E, 0x76, 0x7A, 0x72, 0x2E, 0x61, 0x6E, 0x62, 0x7A, 0x76, 0x61, 0x72, 0x67, 0x2E, 0x77, 0x63]},
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]),
|
||||||
|
|
||||||
|
//STAR PLUS
|
||||||
|
new Patcher("aimeReaderHost.exe", "(1.25.00) STAR PLUS", [
|
||||||
|
{
|
||||||
|
name: "Change obfuscation to be compatible with segatools",
|
||||||
|
tooltip: "(Scene Release Only) Patches 'aime.anbzvarg.wc' to 'nvzr.anbzvarg.wc' for Aime server check to work correctly.",
|
||||||
|
patches: [
|
||||||
|
{offset: 0xAF43C, off: [0x61, 0x69, 0x6D, 0x65, 0x2E, 0x61, 0x6E, 0x62, 0x7A, 0x76, 0x61, 0x72, 0x67, 0x2E, 0x77, 0x63], on: [0x6E, 0x76, 0x7A, 0x72, 0x2E, 0x61, 0x6E, 0x62, 0x7A, 0x76, 0x61, 0x72, 0x67, 0x2E, 0x77, 0x63]},
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]),
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>CHUNITHM STAR Modder</h1>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 24 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 7.3 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 26 KiB |
+18
@@ -20,6 +20,24 @@
|
|||||||
<div>BeatStream<br>アニムトライヴ</div>
|
<div>BeatStream<br>アニムトライヴ</div>
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
|
<a href="chuniplus.html" class="gameicon">
|
||||||
|
<div>
|
||||||
|
<img src="img/chuniplus.png">
|
||||||
|
<div>CHUNITHM PLUS</div>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
<a href="chuniair.html" class="gameicon">
|
||||||
|
<div>
|
||||||
|
<img src="img/chuniair.png">
|
||||||
|
<div>CHUNITHM AIR</div>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
<a href="chunistar.html" class="gameicon">
|
||||||
|
<div>
|
||||||
|
<img src="img/chunistar.png">
|
||||||
|
<div>CHUNITHM STAR</div>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
<a href="chuniamazon.html" class="gameicon">
|
<a href="chuniamazon.html" class="gameicon">
|
||||||
<div>
|
<div>
|
||||||
<img src="img/chuniamazon.png">
|
<img src="img/chuniamazon.png">
|
||||||
|
|||||||
Reference in New Issue
Block a user