diff --git a/.vs/MHPDLCSite/v15/Server/sqlite3/storage.ide b/.vs/MHPDLCSite/v15/Server/sqlite3/storage.ide
index 56758a8..4ed7c25 100644
Binary files a/.vs/MHPDLCSite/v15/Server/sqlite3/storage.ide and b/.vs/MHPDLCSite/v15/Server/sqlite3/storage.ide differ
diff --git a/.vs/MHPDLCSite/v15/Server/sqlite3/storage.ide-shm b/.vs/MHPDLCSite/v15/Server/sqlite3/storage.ide-shm
index 253544f..8f9f784 100644
Binary files a/.vs/MHPDLCSite/v15/Server/sqlite3/storage.ide-shm and b/.vs/MHPDLCSite/v15/Server/sqlite3/storage.ide-shm differ
diff --git a/.vs/MHPDLCSite/v15/Server/sqlite3/storage.ide-wal b/.vs/MHPDLCSite/v15/Server/sqlite3/storage.ide-wal
index 4065e97..f781813 100644
Binary files a/.vs/MHPDLCSite/v15/Server/sqlite3/storage.ide-wal and b/.vs/MHPDLCSite/v15/Server/sqlite3/storage.ide-wal differ
diff --git a/ServiceSite/MHHandler.cs b/ServiceSite/MHHandler.cs
new file mode 100644
index 0000000..8a4f1ab
--- /dev/null
+++ b/ServiceSite/MHHandler.cs
@@ -0,0 +1,64 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+
+namespace ServiceSite
+{
+ public class MHHandler : IHttpModule
+ {
+ public void Init(HttpApplication application)
+ {
+ application.BeginRequest +=
+ (new EventHandler(this.Application_BeginRequest));
+ application.EndRequest +=
+ (new EventHandler(this.Application_EndRequest));
+ }
+
+ /*
+ * 对直接请求比如http://w.com/12.html .aspx等处理直接转html页面
+ * 对资源.ico等不处理
+ * 对http://w.com/act/login.do等走cshtml分发处理 act调用方法
+ * 对http://w.com/actAj/login.aj走loginService ajax请求 actAj调用方法
+ * 注意/Views/Home/Login.html 和Views/Home/Login.html区别
+ */
+ ///
+ /// 页面处理,
+ ///
+ ///
+ ///
+ private void Application_BeginRequest(Object source,EventArgs e)
+ {
+ HttpApplication application = (HttpApplication)source;
+ HttpContext context = application.Context;
+ int p = context.Request.RawUrl.LastIndexOf('?');
+ String baseUrl = (p > 0) ? context.Request.RawUrl.Substring(0, p) : context.Request.RawUrl;
+ string filePath = context.Request.FilePath;
+ string fileExtension = VirtualPathUtility.GetExtension(filePath);
+ switch (fileExtension.ToLower())
+ {
+ case ".PHP":
+ case ".php":
+ baseUrl = baseUrl.Replace(".php", ".aspx");
+ baseUrl = baseUrl.Replace(".PHP", ".aspx");
+ context.RewritePath(baseUrl);
+ break;
+ }
+ }
+
+ private void Application_EndRequest(Object source, EventArgs e)
+ {
+ HttpApplication application = (HttpApplication)source;
+ HttpContext context = application.Context;
+ string filePath = context.Request.FilePath;
+ string fileExtension =
+ VirtualPathUtility.GetExtension(filePath);
+ if(fileExtension.Equals(".html"))
+ {
+ context.Response.Write("
" +
+ "HelloWorldModule: End of Request
");
+ }
+ }
+ public void Dispose() { }
+ }
+}
\ No newline at end of file
diff --git a/ServiceSite/Properties/PublishProfiles/FolderProfile.pubxml b/ServiceSite/Properties/PublishProfiles/FolderProfile.pubxml
new file mode 100644
index 0000000..3dd3b02
--- /dev/null
+++ b/ServiceSite/Properties/PublishProfiles/FolderProfile.pubxml
@@ -0,0 +1,18 @@
+
+
+
+
+ FileSystem
+ FileSystem
+ Release
+ Any CPU
+
+ True
+ False
+ bin\Release\Publish
+ False
+
+
\ No newline at end of file
diff --git a/ServiceSite/ServiceSite.csproj b/ServiceSite/ServiceSite.csproj
index 44a7223..5ce5355 100644
--- a/ServiceSite/ServiceSite.csproj
+++ b/ServiceSite/ServiceSite.csproj
@@ -69,35 +69,216 @@
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Global.asax
-
+
+ DL_SELECT.aspx
+ ASPXCodeBehind
+
+
+ DL_SELECT.aspx
+
+
DL_TOP.aspx
ASPXCodeBehind
-
+
+ DL_TOP.aspx
+
+
+ DL_BONUS.aspx
+ ASPXCodeBehind
+
+
+ DL_BONUS.aspx
+
+
+ DL_TOP.aspx
+ ASPXCodeBehind
+
+
DL_TOP.aspx
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Web.config
@@ -108,7 +289,6 @@
-
10.0
diff --git a/ServiceSite/Web.config b/ServiceSite/Web.config
index 868d4c9..16b2cc6 100644
--- a/ServiceSite/Web.config
+++ b/ServiceSite/Web.config
@@ -9,6 +9,15 @@
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ServiceSite/php/MHPSP/DL_TOP.aspx.designer.cs b/ServiceSite/php/MHPSP/DL_TOP.aspx.designer.cs
deleted file mode 100644
index 6138afc..0000000
--- a/ServiceSite/php/MHPSP/DL_TOP.aspx.designer.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// 此代码由工具生成。
-//
-// 对此文件的更改可能会导致不正确的行为,并且如果
-// 重新生成代码,这些更改将会丢失。
-//
-//------------------------------------------------------------------------------
-
-namespace ServiceSite.php.MHPSP
-{
-
-
- public partial class DL_TOP
- {
-
- ///
- /// form1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::System.Web.UI.HtmlControls.HtmlForm form1;
- }
-}
diff --git a/ServiceSite/php/MHPSP/PNG/y20070222.png b/ServiceSite/php/MHPSP/PNG/y20070222.png
deleted file mode 100644
index 7bcfaa2..0000000
Binary files a/ServiceSite/php/MHPSP/PNG/y20070222.png and /dev/null differ
diff --git a/ServiceSite/psp/MHP2G/BONUS/bonus.mib b/ServiceSite/psp/MHP2G/BONUS/bonus.mib
new file mode 100644
index 0000000..534347d
--- /dev/null
+++ b/ServiceSite/psp/MHP2G/BONUS/bonus.mib
@@ -0,0 +1 @@
+MHP2G BONUSXvӬ=Lj'96Ҕ:gj?Tu2ڳgqϽg
\ No newline at end of file
diff --git a/ServiceSite/psp/MHP2G/DL_SELECT.aspx b/ServiceSite/psp/MHP2G/DL_SELECT.aspx
new file mode 100644
index 0000000..d7920ef
--- /dev/null
+++ b/ServiceSite/psp/MHP2G/DL_SELECT.aspx
@@ -0,0 +1,42 @@
+<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DL_SELECT.aspx.cs" Inherits="ServiceSite.psp.MHP2G.DL_SELECT" %>
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ServiceSite/psp/MHP2G/DL_SELECT.aspx.cs b/ServiceSite/psp/MHP2G/DL_SELECT.aspx.cs
new file mode 100644
index 0000000..a9b4665
--- /dev/null
+++ b/ServiceSite/psp/MHP2G/DL_SELECT.aspx.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using System.Web.UI;
+using System.Web.UI.WebControls;
+
+namespace ServiceSite.psp.MHP2G
+{
+ public partial class DL_SELECT : System.Web.UI.Page
+ {
+ protected void Page_Load(object sender, EventArgs e)
+ {
+
+ }
+ }
+}
\ No newline at end of file
diff --git a/ServiceSite/psp/MHP2G/DL_SELECT.aspx.designer.cs b/ServiceSite/psp/MHP2G/DL_SELECT.aspx.designer.cs
new file mode 100644
index 0000000..ce33838
--- /dev/null
+++ b/ServiceSite/psp/MHP2G/DL_SELECT.aspx.designer.cs
@@ -0,0 +1,15 @@
+//------------------------------------------------------------------------------
+// <自动生成>
+// 此代码由工具生成。
+//
+// 对此文件的更改可能导致不正确的行为,如果
+// 重新生成代码,则所做更改将丢失。
+// 自动生成>
+//------------------------------------------------------------------------------
+
+namespace ServiceSite.psp.MHP2G {
+
+
+ public partial class DL_SELECT {
+ }
+}
diff --git a/ServiceSite/psp/MHP2G/DL_TOP.aspx b/ServiceSite/psp/MHP2G/DL_TOP.aspx
new file mode 100644
index 0000000..4008e27
--- /dev/null
+++ b/ServiceSite/psp/MHP2G/DL_TOP.aspx
@@ -0,0 +1,64 @@
+<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DL_TOP.aspx.cs" Inherits="ServiceSite.psp.MHP2G.DL_TOP" %>
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+
+
+ |
+
+
+
+
+ 最新更新情報
+ |
+
+
+
+≪12/19≫ 特典を1つ 追加したのニャ!
+ |
+
+
+ |
+
+
+
+
+
diff --git a/ServiceSite/php/MHPSP/DL_TOP.aspx.cs b/ServiceSite/psp/MHP2G/DL_TOP.aspx.cs
similarity index 89%
rename from ServiceSite/php/MHPSP/DL_TOP.aspx.cs
rename to ServiceSite/psp/MHP2G/DL_TOP.aspx.cs
index d1e4c08..0b09950 100644
--- a/ServiceSite/php/MHPSP/DL_TOP.aspx.cs
+++ b/ServiceSite/psp/MHP2G/DL_TOP.aspx.cs
@@ -5,7 +5,7 @@ using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
-namespace ServiceSite.php.MHPSP
+namespace ServiceSite.psp.MHP2G
{
public partial class DL_TOP : System.Web.UI.Page
{
diff --git a/ServiceSite/psp/MHP2G/DL_TOP.aspx.designer.cs b/ServiceSite/psp/MHP2G/DL_TOP.aspx.designer.cs
new file mode 100644
index 0000000..f8e6f29
--- /dev/null
+++ b/ServiceSite/psp/MHP2G/DL_TOP.aspx.designer.cs
@@ -0,0 +1,15 @@
+//------------------------------------------------------------------------------
+// <自动生成>
+// 此代码由工具生成。
+//
+// 对此文件的更改可能导致不正确的行为,如果
+// 重新生成代码,则所做更改将丢失。
+// 自动生成>
+//------------------------------------------------------------------------------
+
+namespace ServiceSite.psp.MHP2G {
+
+
+ public partial class DL_TOP {
+ }
+}
diff --git a/ServiceSite/psp/MHP2G/GIF/BDL.gif b/ServiceSite/psp/MHP2G/GIF/BDL.gif
new file mode 100644
index 0000000..8e3fce9
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/BDL.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/BG.gif b/ServiceSite/psp/MHP2G/GIF/BG.gif
new file mode 100644
index 0000000..094b8ed
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/BG.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/BONUS.gif b/ServiceSite/psp/MHP2G/GIF/BONUS.gif
new file mode 100644
index 0000000..147dd6c
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/BONUS.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/BUTTON1.gif b/ServiceSite/psp/MHP2G/GIF/BUTTON1.gif
new file mode 100644
index 0000000..c0df0ef
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/BUTTON1.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/BUTTON2.gif b/ServiceSite/psp/MHP2G/GIF/BUTTON2.gif
new file mode 100644
index 0000000..2ed6467
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/BUTTON2.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/BUTTON3.gif b/ServiceSite/psp/MHP2G/GIF/BUTTON3.gif
new file mode 100644
index 0000000..4cda316
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/BUTTON3.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/BUTTON4.gif b/ServiceSite/psp/MHP2G/GIF/BUTTON4.gif
new file mode 100644
index 0000000..507ddb5
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/BUTTON4.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/BUTTON5.gif b/ServiceSite/psp/MHP2G/GIF/BUTTON5.gif
new file mode 100644
index 0000000..299fbba
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/BUTTON5.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/DOWNLOAD.gif b/ServiceSite/psp/MHP2G/GIF/DOWNLOAD.gif
new file mode 100644
index 0000000..e1c0174
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/DOWNLOAD.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/HUKIDASI.gif b/ServiceSite/psp/MHP2G/GIF/HUKIDASI.gif
new file mode 100644
index 0000000..2002e6b
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/HUKIDASI.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/INFORMATION.gif b/ServiceSite/psp/MHP2G/GIF/INFORMATION.gif
new file mode 100644
index 0000000..3dcb4da
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/INFORMATION.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/KANBAN.gif b/ServiceSite/psp/MHP2G/GIF/KANBAN.gif
new file mode 100644
index 0000000..9b3279e
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/KANBAN.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/LIST.gif b/ServiceSite/psp/MHP2G/GIF/LIST.gif
new file mode 100644
index 0000000..20db780
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/LIST.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/LOGO1.gif b/ServiceSite/psp/MHP2G/GIF/LOGO1.gif
new file mode 100644
index 0000000..15253a8
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/LOGO1.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/LOGO10.gif b/ServiceSite/psp/MHP2G/GIF/LOGO10.gif
new file mode 100644
index 0000000..ccead0c
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/LOGO10.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/LOGO11.gif b/ServiceSite/psp/MHP2G/GIF/LOGO11.gif
new file mode 100644
index 0000000..2449066
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/LOGO11.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/LOGO13.gif b/ServiceSite/psp/MHP2G/GIF/LOGO13.gif
new file mode 100644
index 0000000..5df2722
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/LOGO13.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/LOGO14.gif b/ServiceSite/psp/MHP2G/GIF/LOGO14.gif
new file mode 100644
index 0000000..14df48a
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/LOGO14.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/LOGO15.gif b/ServiceSite/psp/MHP2G/GIF/LOGO15.gif
new file mode 100644
index 0000000..58fc092
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/LOGO15.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/LOGO2.gif b/ServiceSite/psp/MHP2G/GIF/LOGO2.gif
new file mode 100644
index 0000000..80f76a0
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/LOGO2.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/LR.gif b/ServiceSite/psp/MHP2G/GIF/LR.gif
new file mode 100644
index 0000000..0d22f88
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/LR.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/NEKO_NEW.gif b/ServiceSite/psp/MHP2G/GIF/NEKO_NEW.gif
new file mode 100644
index 0000000..3dc2f0a
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/NEKO_NEW.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/PIG.gif b/ServiceSite/psp/MHP2G/GIF/PIG.gif
new file mode 100644
index 0000000..51548b2
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/PIG.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/QBOARD.gif b/ServiceSite/psp/MHP2G/GIF/QBOARD.gif
new file mode 100644
index 0000000..4085536
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/QBOARD.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/QBOARD2.gif b/ServiceSite/psp/MHP2G/GIF/QBOARD2.gif
new file mode 100644
index 0000000..49b2d77
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/QBOARD2.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/SELECT1.gif b/ServiceSite/psp/MHP2G/GIF/SELECT1.gif
new file mode 100644
index 0000000..78e9166
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/SELECT1.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/SELECT2.gif b/ServiceSite/psp/MHP2G/GIF/SELECT2.gif
new file mode 100644
index 0000000..a331ca9
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/SELECT2.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/T_PNK2.gif b/ServiceSite/psp/MHP2G/GIF/T_PNK2.gif
new file mode 100644
index 0000000..3f5f461
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/T_PNK2.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/T_PPL.gif b/ServiceSite/psp/MHP2G/GIF/T_PPL.gif
new file mode 100644
index 0000000..535bb0b
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/T_PPL.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/T_PPL2.gif b/ServiceSite/psp/MHP2G/GIF/T_PPL2.gif
new file mode 100644
index 0000000..8584781
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/T_PPL2.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/T_RED.gif b/ServiceSite/psp/MHP2G/GIF/T_RED.gif
new file mode 100644
index 0000000..cdd9aa2
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/T_RED.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/T_RED2.gif b/ServiceSite/psp/MHP2G/GIF/T_RED2.gif
new file mode 100644
index 0000000..9faab20
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/T_RED2.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/T_WHT.gif b/ServiceSite/psp/MHP2G/GIF/T_WHT.gif
new file mode 100644
index 0000000..d8c9625
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/T_WHT.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/T_WHT2.gif b/ServiceSite/psp/MHP2G/GIF/T_WHT2.gif
new file mode 100644
index 0000000..a878671
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/T_WHT2.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/chacha.gif b/ServiceSite/psp/MHP2G/GIF/chacha.gif
new file mode 100644
index 0000000..6ddb9cb
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/chacha.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/conga.gif b/ServiceSite/psp/MHP2G/GIF/conga.gif
new file mode 100644
index 0000000..ad4590b
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/conga.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/ro-dos.gif b/ServiceSite/psp/MHP2G/GIF/ro-dos.gif
new file mode 100644
index 0000000..c09a549
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/ro-dos.gif differ
diff --git a/ServiceSite/psp/MHP2G/GIF/taru.gif b/ServiceSite/psp/MHP2G/GIF/taru.gif
new file mode 100644
index 0000000..c7b8d8a
Binary files /dev/null and b/ServiceSite/psp/MHP2G/GIF/taru.gif differ
diff --git a/ServiceSite/psp/MHP2G/PNG/b00000.png b/ServiceSite/psp/MHP2G/PNG/b00000.png
new file mode 100644
index 0000000..d1525b5
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/b00000.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/b00000[1].png b/ServiceSite/psp/MHP2G/PNG/b00000[1].png
new file mode 100644
index 0000000..d1525b5
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/b00000[1].png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/b00001.png b/ServiceSite/psp/MHP2G/PNG/b00001.png
new file mode 100644
index 0000000..5e846b9
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/b00001.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/b00002.png b/ServiceSite/psp/MHP2G/PNG/b00002.png
new file mode 100644
index 0000000..adae8c2
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/b00002.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/b00003.png b/ServiceSite/psp/MHP2G/PNG/b00003.png
new file mode 100644
index 0000000..8de1c6a
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/b00003.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/b00004.png b/ServiceSite/psp/MHP2G/PNG/b00004.png
new file mode 100644
index 0000000..df81fba
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/b00004.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/b00005.png b/ServiceSite/psp/MHP2G/PNG/b00005.png
new file mode 100644
index 0000000..e731199
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/b00005.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/b00011.png b/ServiceSite/psp/MHP2G/PNG/b00011.png
new file mode 100644
index 0000000..bc84fa4
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/b00011.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/bonus03.png b/ServiceSite/psp/MHP2G/PNG/bonus03.png
new file mode 100644
index 0000000..8de1c6a
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/bonus03.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/bonus11.png b/ServiceSite/psp/MHP2G/PNG/bonus11.png
new file mode 100644
index 0000000..71196f5
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/bonus11.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/bonus12.png b/ServiceSite/psp/MHP2G/PNG/bonus12.png
new file mode 100644
index 0000000..eb1187e
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/bonus12.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/bonus13.png b/ServiceSite/psp/MHP2G/PNG/bonus13.png
new file mode 100644
index 0000000..e731199
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/bonus13.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/bonus14.png b/ServiceSite/psp/MHP2G/PNG/bonus14.png
new file mode 100644
index 0000000..bc84fa4
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/bonus14.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/bonus15.png b/ServiceSite/psp/MHP2G/PNG/bonus15.png
new file mode 100644
index 0000000..3082057
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/bonus15.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/bonus19.png b/ServiceSite/psp/MHP2G/PNG/bonus19.png
new file mode 100644
index 0000000..5e846b9
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/bonus19.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/c61002.png b/ServiceSite/psp/MHP2G/PNG/c61002.png
new file mode 100644
index 0000000..babff4c
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/c61002.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/c61003.png b/ServiceSite/psp/MHP2G/PNG/c61003.png
new file mode 100644
index 0000000..2b57794
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/c61003.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/c61004.png b/ServiceSite/psp/MHP2G/PNG/c61004.png
new file mode 100644
index 0000000..4053e2c
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/c61004.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/c61005.png b/ServiceSite/psp/MHP2G/PNG/c61005.png
new file mode 100644
index 0000000..e678593
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/c61005.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/c61006.png b/ServiceSite/psp/MHP2G/PNG/c61006.png
new file mode 100644
index 0000000..770be08
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/c61006.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/c61007.png b/ServiceSite/psp/MHP2G/PNG/c61007.png
new file mode 100644
index 0000000..2c04ab2
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/c61007.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/c61008.png b/ServiceSite/psp/MHP2G/PNG/c61008.png
new file mode 100644
index 0000000..3d13710
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/c61008.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/c61009.png b/ServiceSite/psp/MHP2G/PNG/c61009.png
new file mode 100644
index 0000000..ad0fac6
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/c61009.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/c61010.png b/ServiceSite/psp/MHP2G/PNG/c61010.png
new file mode 100644
index 0000000..205f084
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/c61010.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60001.png b/ServiceSite/psp/MHP2G/PNG/e60001.png
new file mode 100644
index 0000000..0951eb3
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60001.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60002.png b/ServiceSite/psp/MHP2G/PNG/e60002.png
new file mode 100644
index 0000000..3146e03
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60002.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60003.png b/ServiceSite/psp/MHP2G/PNG/e60003.png
new file mode 100644
index 0000000..58c3ef3
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60003.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60004.png b/ServiceSite/psp/MHP2G/PNG/e60004.png
new file mode 100644
index 0000000..1902593
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60004.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60005.png b/ServiceSite/psp/MHP2G/PNG/e60005.png
new file mode 100644
index 0000000..7c6dee4
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60005.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60006.png b/ServiceSite/psp/MHP2G/PNG/e60006.png
new file mode 100644
index 0000000..e8b8620
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60006.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60007.png b/ServiceSite/psp/MHP2G/PNG/e60007.png
new file mode 100644
index 0000000..98d6d09
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60007.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60008.png b/ServiceSite/psp/MHP2G/PNG/e60008.png
new file mode 100644
index 0000000..9ebac48
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60008.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60009.png b/ServiceSite/psp/MHP2G/PNG/e60009.png
new file mode 100644
index 0000000..e3820f3
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60009.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60010.png b/ServiceSite/psp/MHP2G/PNG/e60010.png
new file mode 100644
index 0000000..064dad4
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60010.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60011.png b/ServiceSite/psp/MHP2G/PNG/e60011.png
new file mode 100644
index 0000000..26a2958
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60011.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60012.png b/ServiceSite/psp/MHP2G/PNG/e60012.png
new file mode 100644
index 0000000..1b05f46
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60012.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60014.png b/ServiceSite/psp/MHP2G/PNG/e60014.png
new file mode 100644
index 0000000..80a3a58
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60014.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60015.png b/ServiceSite/psp/MHP2G/PNG/e60015.png
new file mode 100644
index 0000000..5b34b8d
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60015.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60016.png b/ServiceSite/psp/MHP2G/PNG/e60016.png
new file mode 100644
index 0000000..ef0cffc
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60016.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60017.png b/ServiceSite/psp/MHP2G/PNG/e60017.png
new file mode 100644
index 0000000..afa49d4
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60017.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60018.png b/ServiceSite/psp/MHP2G/PNG/e60018.png
new file mode 100644
index 0000000..d8f3178
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60018.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60019.png b/ServiceSite/psp/MHP2G/PNG/e60019.png
new file mode 100644
index 0000000..fbf4b5e
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60019.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60020.png b/ServiceSite/psp/MHP2G/PNG/e60020.png
new file mode 100644
index 0000000..39c9b39
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60020.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60021.png b/ServiceSite/psp/MHP2G/PNG/e60021.png
new file mode 100644
index 0000000..2be9c8d
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60021.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60022.png b/ServiceSite/psp/MHP2G/PNG/e60022.png
new file mode 100644
index 0000000..2927daa
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60022.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60023.png b/ServiceSite/psp/MHP2G/PNG/e60023.png
new file mode 100644
index 0000000..67bed82
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60023.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60024.png b/ServiceSite/psp/MHP2G/PNG/e60024.png
new file mode 100644
index 0000000..dd8c5cf
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60024.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60025.png b/ServiceSite/psp/MHP2G/PNG/e60025.png
new file mode 100644
index 0000000..084a1ad
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60025.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60026.png b/ServiceSite/psp/MHP2G/PNG/e60026.png
new file mode 100644
index 0000000..dd81287
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60026.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60027.png b/ServiceSite/psp/MHP2G/PNG/e60027.png
new file mode 100644
index 0000000..b7d0010
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60027.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60028.png b/ServiceSite/psp/MHP2G/PNG/e60028.png
new file mode 100644
index 0000000..e59e624
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60028.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60029.png b/ServiceSite/psp/MHP2G/PNG/e60029.png
new file mode 100644
index 0000000..349100d
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60029.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60030.png b/ServiceSite/psp/MHP2G/PNG/e60030.png
new file mode 100644
index 0000000..627273a
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60030.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60031.png b/ServiceSite/psp/MHP2G/PNG/e60031.png
new file mode 100644
index 0000000..52792b6
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60031.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60032.png b/ServiceSite/psp/MHP2G/PNG/e60032.png
new file mode 100644
index 0000000..3715ddf
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60032.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60033.png b/ServiceSite/psp/MHP2G/PNG/e60033.png
new file mode 100644
index 0000000..1f98f9d
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60033.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60034.png b/ServiceSite/psp/MHP2G/PNG/e60034.png
new file mode 100644
index 0000000..cafae45
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60034.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60035.png b/ServiceSite/psp/MHP2G/PNG/e60035.png
new file mode 100644
index 0000000..9782c21
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60035.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60037.png b/ServiceSite/psp/MHP2G/PNG/e60037.png
new file mode 100644
index 0000000..4aecd78
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60037.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/e60038.png b/ServiceSite/psp/MHP2G/PNG/e60038.png
new file mode 100644
index 0000000..1097f66
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/e60038.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/f00001.png b/ServiceSite/psp/MHP2G/PNG/f00001.png
new file mode 100644
index 0000000..b4371ef
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/f00001.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/f00002.png b/ServiceSite/psp/MHP2G/PNG/f00002.png
new file mode 100644
index 0000000..345d3fa
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/f00002.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/f00003.png b/ServiceSite/psp/MHP2G/PNG/f00003.png
new file mode 100644
index 0000000..fe4634a
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/f00003.png differ
diff --git a/ServiceSite/psp/MHP2G/PNG/f00004.png b/ServiceSite/psp/MHP2G/PNG/f00004.png
new file mode 100644
index 0000000..6807c9f
Binary files /dev/null and b/ServiceSite/psp/MHP2G/PNG/f00004.png differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60001.mib b/ServiceSite/psp/MHP2G/QUEST/m60001.mib
new file mode 100644
index 0000000..2ea9476
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60001.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60002.mib b/ServiceSite/psp/MHP2G/QUEST/m60002.mib
new file mode 100644
index 0000000..14baeea
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60002.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60003.mib b/ServiceSite/psp/MHP2G/QUEST/m60003.mib
new file mode 100644
index 0000000..138c960
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60003.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60004.mib b/ServiceSite/psp/MHP2G/QUEST/m60004.mib
new file mode 100644
index 0000000..88020d4
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60004.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60005.mib b/ServiceSite/psp/MHP2G/QUEST/m60005.mib
new file mode 100644
index 0000000..732bd3f
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60005.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60006.mib b/ServiceSite/psp/MHP2G/QUEST/m60006.mib
new file mode 100644
index 0000000..2287354
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60006.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60007.mib b/ServiceSite/psp/MHP2G/QUEST/m60007.mib
new file mode 100644
index 0000000..282bd14
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60007.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60008.mib b/ServiceSite/psp/MHP2G/QUEST/m60008.mib
new file mode 100644
index 0000000..e403e70
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60008.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60009.mib b/ServiceSite/psp/MHP2G/QUEST/m60009.mib
new file mode 100644
index 0000000..84956ae
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60009.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60010.mib b/ServiceSite/psp/MHP2G/QUEST/m60010.mib
new file mode 100644
index 0000000..fbb314c
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60010.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60011.mib b/ServiceSite/psp/MHP2G/QUEST/m60011.mib
new file mode 100644
index 0000000..c74330c
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60011.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60012.mib b/ServiceSite/psp/MHP2G/QUEST/m60012.mib
new file mode 100644
index 0000000..d177262
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60012.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60013.mib b/ServiceSite/psp/MHP2G/QUEST/m60013.mib
new file mode 100644
index 0000000..37ea3b7
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60013.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60014.mib b/ServiceSite/psp/MHP2G/QUEST/m60014.mib
new file mode 100644
index 0000000..01cedb1
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60014.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60015.mib b/ServiceSite/psp/MHP2G/QUEST/m60015.mib
new file mode 100644
index 0000000..39de7dc
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60015.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60016.mib b/ServiceSite/psp/MHP2G/QUEST/m60016.mib
new file mode 100644
index 0000000..365b02f
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60016.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60017.mib b/ServiceSite/psp/MHP2G/QUEST/m60017.mib
new file mode 100644
index 0000000..6c39999
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60017.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60018.mib b/ServiceSite/psp/MHP2G/QUEST/m60018.mib
new file mode 100644
index 0000000..ccff2d0
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60018.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60019.mib b/ServiceSite/psp/MHP2G/QUEST/m60019.mib
new file mode 100644
index 0000000..2f739eb
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60019.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60020.mib b/ServiceSite/psp/MHP2G/QUEST/m60020.mib
new file mode 100644
index 0000000..0ce4993
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60020.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60021.mib b/ServiceSite/psp/MHP2G/QUEST/m60021.mib
new file mode 100644
index 0000000..0ee78ba
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60021.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60022.mib b/ServiceSite/psp/MHP2G/QUEST/m60022.mib
new file mode 100644
index 0000000..e83615c
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60022.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60023.mib b/ServiceSite/psp/MHP2G/QUEST/m60023.mib
new file mode 100644
index 0000000..678969d
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60023.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60024.mib b/ServiceSite/psp/MHP2G/QUEST/m60024.mib
new file mode 100644
index 0000000..35a7958
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60024.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60025.mib b/ServiceSite/psp/MHP2G/QUEST/m60025.mib
new file mode 100644
index 0000000..c5db0eb
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60025.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60026.mib b/ServiceSite/psp/MHP2G/QUEST/m60026.mib
new file mode 100644
index 0000000..129ef37
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60026.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60027.mib b/ServiceSite/psp/MHP2G/QUEST/m60027.mib
new file mode 100644
index 0000000..10d3b43
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60027.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60028.mib b/ServiceSite/psp/MHP2G/QUEST/m60028.mib
new file mode 100644
index 0000000..9d48c06
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60028.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60029.mib b/ServiceSite/psp/MHP2G/QUEST/m60029.mib
new file mode 100644
index 0000000..93f4dc0
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60029.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60030.mib b/ServiceSite/psp/MHP2G/QUEST/m60030.mib
new file mode 100644
index 0000000..1d41d93
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60030.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60031.mib b/ServiceSite/psp/MHP2G/QUEST/m60031.mib
new file mode 100644
index 0000000..48977e2
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60031.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60032.mib b/ServiceSite/psp/MHP2G/QUEST/m60032.mib
new file mode 100644
index 0000000..d27f681
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60032.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60033.mib b/ServiceSite/psp/MHP2G/QUEST/m60033.mib
new file mode 100644
index 0000000..2b9b117
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60033.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60034.mib b/ServiceSite/psp/MHP2G/QUEST/m60034.mib
new file mode 100644
index 0000000..1e0b04d
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60034.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60035.mib b/ServiceSite/psp/MHP2G/QUEST/m60035.mib
new file mode 100644
index 0000000..f55632a
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60035.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60036.mib b/ServiceSite/psp/MHP2G/QUEST/m60036.mib
new file mode 100644
index 0000000..0dae680
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60036.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60037.mib b/ServiceSite/psp/MHP2G/QUEST/m60037.mib
new file mode 100644
index 0000000..f831a0c
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60037.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m60038.mib b/ServiceSite/psp/MHP2G/QUEST/m60038.mib
new file mode 100644
index 0000000..f516a94
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m60038.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m61001.mib b/ServiceSite/psp/MHP2G/QUEST/m61001.mib
new file mode 100644
index 0000000..724b587
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m61001.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m61002.mib b/ServiceSite/psp/MHP2G/QUEST/m61002.mib
new file mode 100644
index 0000000..b7c22e0
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m61002.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m61003.mib b/ServiceSite/psp/MHP2G/QUEST/m61003.mib
new file mode 100644
index 0000000..1271fa9
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m61003.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m61004.mib b/ServiceSite/psp/MHP2G/QUEST/m61004.mib
new file mode 100644
index 0000000..891f14f
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m61004.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m61005.mib b/ServiceSite/psp/MHP2G/QUEST/m61005.mib
new file mode 100644
index 0000000..b9e3549
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m61005.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m61006.mib b/ServiceSite/psp/MHP2G/QUEST/m61006.mib
new file mode 100644
index 0000000..91dbea1
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m61006.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m61007.mib b/ServiceSite/psp/MHP2G/QUEST/m61007.mib
new file mode 100644
index 0000000..ec3ba00
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m61007.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m61008.mib b/ServiceSite/psp/MHP2G/QUEST/m61008.mib
new file mode 100644
index 0000000..5683a6c
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m61008.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m61009.mib b/ServiceSite/psp/MHP2G/QUEST/m61009.mib
new file mode 100644
index 0000000..ce3b7e4
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m61009.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m61010.mib b/ServiceSite/psp/MHP2G/QUEST/m61010.mib
new file mode 100644
index 0000000..ac1e6c9
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m61010.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m61011.mib b/ServiceSite/psp/MHP2G/QUEST/m61011.mib
new file mode 100644
index 0000000..3f9487c
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m61011.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m61012.mib b/ServiceSite/psp/MHP2G/QUEST/m61012.mib
new file mode 100644
index 0000000..5ab9c18
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m61012.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m61013.mib b/ServiceSite/psp/MHP2G/QUEST/m61013.mib
new file mode 100644
index 0000000..738d4e7
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m61013.mib differ
diff --git a/ServiceSite/psp/MHP2G/QUEST/m61014.mib b/ServiceSite/psp/MHP2G/QUEST/m61014.mib
new file mode 100644
index 0000000..4c5fa16
Binary files /dev/null and b/ServiceSite/psp/MHP2G/QUEST/m61014.mib differ
diff --git a/ServiceSite/psp/MHPSP/DL_BONUS.aspx b/ServiceSite/psp/MHPSP/DL_BONUS.aspx
new file mode 100644
index 0000000..e04f755
--- /dev/null
+++ b/ServiceSite/psp/MHPSP/DL_BONUS.aspx
@@ -0,0 +1,398 @@
+<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DL_BONUS.aspx.cs" Inherits="ServiceSite.psp.MHPSP.DL_BONUS" %>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+
+
+
+まだ獲得していない特典は黄色で表示されるニャ!
+【さすらいの料理ネコ】 この毛並みのアイルーが村を訪れるようになる…かもニャ。
+ |
+
+
+
+・赤虎
+・オレンジ
+・漆黒
+ |
+
+
+ |
+
+
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+
+
+
+まだ獲得していない特典は黄色で表示されるニャ!
+【オトモアイルー防具】 オトモアイルーの着せ替え用の防具が追加されるニャ。
+ |
+
+
+
+・ネコ武者鎧
+ |
+
+
+ |
+
+
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+
+
+
+まだ獲得していない特典は黄色で表示されるニャ!
+【オトモスキル】 修得できるオトモスキルが追加されるニャ。
+ |
+
+
+
+・属性攻撃【龍】
+ |
+
+
+ |
+
+
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+
+
+
+まだ獲得していない特典は黄色で表示されるニャ!
+【ポッケポイント】 ポッケポイントが3000ポイント貰えるニャ。
+ |
+
+
+
+・3000ポイント入手
+ |
+
+
+ |
+
+
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+
+
+
+まだ獲得していない特典は黄色で表示されるニャ!
+【農場施設】 トレニャーの船が建造可能になるニャ。
+ |
+
+
+
+・トレニャーの船
+ |
+
+
+ |
+
+
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+
+
+
+まだ獲得していない特典は黄色で表示されるニャ!
+【行商ばあちゃんの品揃え】 いつもよりずっと良い品を仕入れてくれる…かもニャ。
+ |
+
+
+
+・特別な品揃え
+ |
+
+
+ |
+
+
+ |
+
+
+
+
+
diff --git a/ServiceSite/psp/MHPSP/DL_BONUS.aspx.cs b/ServiceSite/psp/MHPSP/DL_BONUS.aspx.cs
new file mode 100644
index 0000000..4ffd567
--- /dev/null
+++ b/ServiceSite/psp/MHPSP/DL_BONUS.aspx.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using System.Web.UI;
+using System.Web.UI.WebControls;
+
+namespace ServiceSite.psp.MHPSP
+{
+ public partial class DL_BONUS : System.Web.UI.Page
+ {
+ protected void Page_Load(object sender, EventArgs e)
+ {
+
+ }
+ }
+}
\ No newline at end of file
diff --git a/ServiceSite/psp/MHPSP/DL_BONUS.aspx.designer.cs b/ServiceSite/psp/MHPSP/DL_BONUS.aspx.designer.cs
new file mode 100644
index 0000000..2e822b0
--- /dev/null
+++ b/ServiceSite/psp/MHPSP/DL_BONUS.aspx.designer.cs
@@ -0,0 +1,15 @@
+//------------------------------------------------------------------------------
+// <自动生成>
+// 此代码由工具生成。
+//
+// 对此文件的更改可能导致不正确的行为,如果
+// 重新生成代码,则所做更改将丢失。
+// 自动生成>
+//------------------------------------------------------------------------------
+
+namespace ServiceSite.psp.MHPSP {
+
+
+ public partial class DL_BONUS {
+ }
+}
diff --git a/ServiceSite/psp/MHPSP/DL_TOP.aspx b/ServiceSite/psp/MHPSP/DL_TOP.aspx
new file mode 100644
index 0000000..191243a
--- /dev/null
+++ b/ServiceSite/psp/MHPSP/DL_TOP.aspx
@@ -0,0 +1,175 @@
+<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DL_TOP.aspx.cs" Inherits="ServiceSite.psp.MHPSP.DL_TOP" %>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+
+
+ |
+
+
+
+
+
+
+
+ ■配信服務繼續■
+
+
+卡普空官方於2014年9月30日停止了配信服務
+由皓月雲繼續提供配信服務
+不忘初心、我愛MH
+
+Powered
+By axibug.com
+
+
+ |
+
+
+ |
+
+
+ |
+
+
+
+
+
+:退出配信服務