diff --git a/TJAPlayer3/Helpers/HGaugeMethods.cs b/TJAPlayer3/Helpers/HGaugeMethods.cs index 115d60d1..77b18b51 100644 --- a/TJAPlayer3/Helpers/HGaugeMethods.cs +++ b/TJAPlayer3/Helpers/HGaugeMethods.cs @@ -212,7 +212,9 @@ namespace TJAPlayer3 CTexture yellowTexture, CTexture rainbowTexture, int x, - int y, + int y, + int rainbow_x, + int rainbow_y, Difficulty diff, int level, float currentPercent, @@ -282,13 +284,7 @@ namespace TJAPlayer3 rainbowTexture.vc拡大縮小倍率.X = scale_x; rainbowTexture.vc拡大縮小倍率.Y = scale_y; - rainbowTexture.t2D描画(TJAPlayer3.app.Device, x, y, - new Rectangle( - GaugeBox[0], - GaugeBox[1], - GaugeBox[2], - GaugeBox[3]) - ); + rainbowTexture.t2D描画(TJAPlayer3.app.Device, rainbow_x, rainbow_y); } } @@ -408,8 +404,10 @@ namespace TJAPlayer3 CTexture clearIcon, CTexture soulLetter, CTexture soulFire, - int x, - int y, + int x, + int y, + int rainbow_x, + int rainbow_y, int Opacity, int RainbowTextureIndex, int SoulFireIndex, @@ -434,7 +432,7 @@ namespace TJAPlayer3 // Layers : Base - Base clear - Fill - Flash - Killzone - Clear logo - Soul fire - Soul text tDrawGaugeBase(baseTexture, x, y, scale_x, scale_y); tDrawGaugeBaseClear(baseNormaTexture, x, y, diff, level, gaugeType, scale_x, scale_y); - tDrawGaugeFill(fillTexture, yellowTexture, (rainbowTextureArr != null && RainbowTextureIndex < rainbowTextureArr.Length) ? rainbowTextureArr[RainbowTextureIndex] : null, x, y, diff, level, currentPercent, gaugeType, scale_x, scale_y, Opacity, perfectHits, totalNotes); + tDrawGaugeFill(fillTexture, yellowTexture, (rainbowTextureArr != null && RainbowTextureIndex < rainbowTextureArr.Length) ? rainbowTextureArr[RainbowTextureIndex] : null, x, y, rainbow_x, rainbow_y, diff, level, currentPercent, gaugeType, scale_x, scale_y, Opacity, perfectHits, totalNotes); tDrawGaugeFlash(flashTexture, x, y, Opacity, diff, level, currentPercent, gaugeType, scale_x, scale_y); tDrawKillZone(killzoneTexture, x, y, diff, level, gaugeType, scale_x, scale_y, perfectHits, totalNotes); tDrawClearIcon(clearIcon, diff, level, currentPercent, text_x, text_y, gaugeType, perfectHits, totalNotes, clearRect, clearRectHighlight); @@ -664,7 +662,7 @@ namespace TJAPlayer3 TJAPlayer3.Skin.Game_Gauge_ClearText_Clear_Rect[3] ); - tDrawCompleteGauge(baseTexture, baseNormaTexture, flashTexture, fillTexture, yellowTexture, rainbowTextureArr, killzoneTexture, clearIcon, soulLetter, soulFlame, gauge_x, gauge_y, opacity, rainbowTextureIndex, soulFlameIndex, difficulty, level, currentPercent, gaugeType, scale, scale, text_x, text_y, perfectHits, totalHits, soul_x, soul_y, fire_x, fire_y, clearRect, clearRectHighlight); + tDrawCompleteGauge(baseTexture, baseNormaTexture, flashTexture, fillTexture, yellowTexture, rainbowTextureArr, killzoneTexture, clearIcon, soulLetter, soulFlame, gauge_x, gauge_y, gauge_x, gauge_y, opacity, rainbowTextureIndex, soulFlameIndex, difficulty, level, currentPercent, gaugeType, scale, scale, text_x, text_y, perfectHits, totalHits, soul_x, soul_y, fire_x, fire_y, clearRect, clearRectHighlight); } public static void UNSAFE_DrawResultGaugeFast(int player, int shiftPos, int pos, int segmentsDisplayed, int rainbowTextureIndex, int soulFlameIndex) @@ -722,6 +720,24 @@ namespace TJAPlayer3 gauge_y = TJAPlayer3.Skin.Result_Gauge_Y[pos]; } + int gauge_rainbow_x; + int gauge_rainbow_y; + if (TJAPlayer3.ConfigIni.nPlayerCount == 5) + { + gauge_rainbow_x = TJAPlayer3.Skin.Result_Gauge_Rainbow_5P[0] + TJAPlayer3.Skin.Result_UIMove_5P_X[pos]; + gauge_rainbow_y = TJAPlayer3.Skin.Result_Gauge_Rainbow_5P[1] + TJAPlayer3.Skin.Result_UIMove_5P_Y[pos]; + } + else if (TJAPlayer3.ConfigIni.nPlayerCount == 4 || TJAPlayer3.ConfigIni.nPlayerCount == 3) + { + gauge_rainbow_x = TJAPlayer3.Skin.Result_Gauge_Rainbow_4P[0] + TJAPlayer3.Skin.Result_UIMove_4P_X[pos]; + gauge_rainbow_y = TJAPlayer3.Skin.Result_Gauge_Rainbow_4P[1] + TJAPlayer3.Skin.Result_UIMove_4P_Y[pos]; + } + else + { + gauge_rainbow_x = TJAPlayer3.Skin.Result_Gauge_Rainbow_X[pos]; + gauge_rainbow_y = TJAPlayer3.Skin.Result_Gauge_Rainbow_Y[pos]; + } + // Flame and soul int soulText_x; int soulText_y; @@ -813,7 +829,7 @@ namespace TJAPlayer3 soulFire_x -= (int)((soulFlame.szテクスチャサイズ.Width / 16)); } - tDrawCompleteGauge(baseTexture, baseNormaTexture, flashTexture, fillTexture, yellowTexture, rainbowTextureArr, killzoneTexture, clearIcon, null, null, gauge_x, gauge_y, 0, rainbowTextureIndex, soulFlameIndex, difficulty, level, currentPercent, gaugeType, scale_x, 1f, clearText_x, clearText_y, perfectHits, totalHits, soulText_x, soulText_y, soulFire_x, soulFire_y, clearRect, clearRectHighlight); + tDrawCompleteGauge(baseTexture, baseNormaTexture, flashTexture, fillTexture, yellowTexture, rainbowTextureArr, killzoneTexture, clearIcon, null, null, gauge_x, gauge_y, gauge_rainbow_x, gauge_rainbow_y, 0, rainbowTextureIndex, soulFlameIndex, difficulty, level, currentPercent, gaugeType, scale_x, 1f, clearText_x, clearText_y, perfectHits, totalHits, soulText_x, soulText_y, soulFire_x, soulFire_y, clearRect, clearRectHighlight); tDrawSoulFire(soulFlame, difficulty, level, currentPercent, gaugeType, 1f, 1f, soulFire_x, soulFire_y, soulFlameIndex); tDrawSoulLetter(soulLetter, difficulty, level, currentPercent, gaugeType, 1f, 1f, soulText_x, soulText_y); } diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P.png index 70ddf643..230c84f1 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_4PGauge.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_4PGauge.png index fc9f7e9d..ee4cdc3c 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_4PGauge.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_4PGauge.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Base.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Base.png index 18e80f90..31e1926f 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Base.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Base.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Base_4PGauge.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Base_4PGauge.png index ee0051fa..25aeca6e 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Base_4PGauge.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Base_4PGauge.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Base_Right.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Base_Right.png index 0e3ea2f2..a1d318b5 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Base_Right.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Base_Right.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Dan.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Dan.png index fc9f7e9d..626efbbf 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Dan.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Dan.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Dan_Base.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Dan_Base.png index ee0051fa..c2b8062a 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Dan_Base.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Dan_Base.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Dan_Base_Right.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Dan_Base_Right.png index 0b79058e..924d91a2 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Dan_Base_Right.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Dan_Base_Right.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Dan_Clear.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Dan_Clear.png index d4d2390a..1829ba68 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Dan_Clear.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Dan_Clear.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Dan_Clear_Base.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Dan_Clear_Base.png index 5a0e35c1..e874a1b6 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Dan_Clear_Base.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Dan_Clear_Base.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Dan_Right.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Dan_Right.png index e1970e33..7530e9b6 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Dan_Right.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Dan_Right.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Right.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Right.png index 66fb4465..7fc7415c 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Right.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/1P_Right.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/2P.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/2P.png index 5a6b6447..1a51f3e8 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/2P.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/2P.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/2P_4PGauge.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/2P_4PGauge.png index e1970e33..f336f5ca 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/2P_4PGauge.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/2P_4PGauge.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/2P_Base.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/2P_Base.png index 4d8b17e4..1084365e 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/2P_Base.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/2P_Base.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/2P_Base_4PGauge.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/2P_Base_4PGauge.png index 0b79058e..2d1329f5 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/2P_Base_4PGauge.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/2P_Base_4PGauge.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/3P_4PGauge.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/3P_4PGauge.png index 8b8fa1c4..c997837c 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/3P_4PGauge.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/3P_4PGauge.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/3P_Base_4PGauge.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/3P_Base_4PGauge.png index 0feadeb3..e7e55cdc 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/3P_Base_4PGauge.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/3P_Base_4PGauge.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/4P_4PGauge.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/4P_4PGauge.png index 6ab8b9e2..36914bd1 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/4P_4PGauge.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/4P_4PGauge.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/4P_Base_4PGauge.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/4P_Base_4PGauge.png index 244bdeef..ea08981b 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/4P_Base_4PGauge.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/4P_Base_4PGauge.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/5P_4PGauge.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/5P_4PGauge.png index d2ccf4c9..743845ca 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/5P_4PGauge.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/5P_4PGauge.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/5P_Base_4PGauge.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/5P_Base_4PGauge.png index ccee8a4e..e7e97a25 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/5P_Base_4PGauge.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/5P_Base_4PGauge.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Clear.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Clear.png index 1b9e2bed..4364f8e1 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Clear.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Clear.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Clear_2PGauge.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Clear_2PGauge.png index c772a961..b1a34680 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Clear_2PGauge.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Clear_2PGauge.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Clear_4PGauge.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Clear_4PGauge.png index d4d2390a..1829ba68 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Clear_4PGauge.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Clear_4PGauge.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Flash.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Flash.png index 1eadbe83..a7b67dca 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Flash.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Flash.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Killzone.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Killzone.png index cffc407f..a872e6cb 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Killzone.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Killzone.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Killzone_2PGauge.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Killzone_2PGauge.png index 2d131dfd..0f043176 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Killzone_2PGauge.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Killzone_2PGauge.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Killzone_4PGauge.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Killzone_4PGauge.png index eefb5bab..f6bd8ac9 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Killzone_4PGauge.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Killzone_4PGauge.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Norma_Base.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Norma_Base.png index 68e2d318..6dba0fe6 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Norma_Base.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Norma_Base.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Norma_Base_2PGauge.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Norma_Base_2PGauge.png index 981cf59b..2d3bfbd7 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Norma_Base_2PGauge.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Norma_Base_2PGauge.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Norma_Base_4PGauge.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Norma_Base_4PGauge.png index 5a0e35c1..e874a1b6 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Norma_Base_4PGauge.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Norma_Base_4PGauge.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/0.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/0.png index 348c80d0..8081f6f3 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/0.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/0.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/1.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/1.png index 175c13b7..4564eed8 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/1.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/1.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/10.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/10.png index 395ef126..0817fc5f 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/10.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/10.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/11.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/11.png index 1a3f2d91..fe497d42 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/11.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/11.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/2.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/2.png index 1c428f31..bbac59cd 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/2.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/2.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/3.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/3.png index dd61d211..cc8c36af 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/3.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/3.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/4.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/4.png index 48e16082..5d95cff6 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/4.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/4.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/5.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/5.png index cf980287..5cabff01 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/5.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/5.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/6.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/6.png index 52292958..00549ea7 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/6.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/6.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/7.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/7.png index 6a14a3c6..3c208026 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/7.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/7.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/8.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/8.png index 262704dc..eea8fc39 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/8.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/8.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/9.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/9.png index e5de4be5..e93625c3 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/9.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow/9.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/0.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/0.png index 752760cf..dbe4f963 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/0.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/0.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/1.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/1.png index f024541b..e8689fb7 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/1.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/1.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/10.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/10.png index bbca207f..8b81e4ad 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/10.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/10.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/11.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/11.png index fd08c0be..434abd7d 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/11.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/11.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/2.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/2.png index dc9fbcb9..a91a1778 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/2.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/2.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/3.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/3.png index 5265c45a..56e2e9a5 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/3.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/3.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/4.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/4.png index 80eff045..1f1e2f0b 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/4.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/4.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/5.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/5.png index 12d31f89..acb45f57 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/5.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/5.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/6.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/6.png index 02c219fc..7cf6663f 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/6.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/6.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/7.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/7.png index e4aa65ad..20acb430 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/7.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/7.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/8.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/8.png index b4bb7f2e..de9fb1ff 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/8.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/8.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/9.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/9.png index 40a6c2d6..0b632371 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/9.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/9.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/0.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/0.png index 2bbb0f54..04c5900e 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/0.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/0.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/1.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/1.png index abba653a..1bb4bd94 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/1.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/1.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/10.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/10.png index 356fc3e0..e84e7303 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/10.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/10.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/11.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/11.png index 8bad2b11..a7756c86 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/11.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/11.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/2.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/2.png index 43d57bcc..400a8d54 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/2.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/2.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/3.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/3.png index 5e517c3a..e60b81de 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/3.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/3.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/4.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/4.png index 2607c017..8ab5c5b3 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/4.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/4.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/5.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/5.png index 8e49062f..fa2e4c67 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/5.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/5.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/6.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/6.png index 224759e8..2e94a66d 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/6.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/6.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/7.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/7.png index 694619a1..fac961a8 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/7.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/7.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/8.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/8.png index 0b8b2650..21d9f994 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/8.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/8.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/9.png b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/9.png index a099be52..91f31f52 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/9.png and b/Test/System/SimpleStyle (1080p)/Graphics/5_Game/7_Gauge/Rainbow_Flat/9.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/0.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/0.png index 464f868e..0dbe8142 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/0.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/0.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/1.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/1.png index 464f868e..695c314b 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/1.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/1.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/10.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/10.png index 464f868e..22cce8be 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/10.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/10.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/11.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/11.png index 464f868e..70628ce2 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/11.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/11.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/12.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/12.png index 464f868e..42526ce1 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/12.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/12.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/13.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/13.png index 464f868e..2cef838c 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/13.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/13.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/14.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/14.png index 464f868e..e0a4ae95 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/14.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/14.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/15.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/15.png index 464f868e..0bdb86be 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/15.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/15.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/16.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/16.png index 464f868e..978ad8f2 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/16.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/16.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/17.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/17.png index 464f868e..ab8a2421 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/17.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/17.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/18.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/18.png index 464f868e..1485abb6 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/18.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/18.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/19.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/19.png index 464f868e..9bd9ed5e 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/19.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/19.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/2.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/2.png index 464f868e..996e1e40 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/2.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/2.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/20.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/20.png index 464f868e..0be4f6e0 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/20.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/20.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/21.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/21.png index 464f868e..7b585b55 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/21.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/21.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/22.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/22.png index 464f868e..763b890c 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/22.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/22.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/23.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/23.png index 464f868e..3f8b796e 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/23.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/23.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/24.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/24.png index 464f868e..705eb9b9 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/24.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/24.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/25.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/25.png index 464f868e..00a3aaa5 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/25.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/25.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/26.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/26.png index 464f868e..e0fbbfcc 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/26.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/26.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/27.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/27.png index 464f868e..b074c641 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/27.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/27.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/28.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/28.png index 464f868e..2f8b7226 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/28.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/28.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/29.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/29.png index 464f868e..1ae06d0d 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/29.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/29.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/3.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/3.png index 464f868e..39189a9c 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/3.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/3.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/30.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/30.png index 464f868e..4123f7aa 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/30.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/30.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/31.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/31.png index 464f868e..29fa5b7e 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/31.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/31.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/32.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/32.png index 464f868e..b0c6d44c 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/32.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/32.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/33.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/33.png index 464f868e..d8f59e01 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/33.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/33.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/34.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/34.png index 464f868e..fd77354b 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/34.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/34.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/35.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/35.png index 464f868e..0547056e 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/35.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/35.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/36.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/36.png index 464f868e..bab316c8 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/36.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/36.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/37.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/37.png index 464f868e..19800676 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/37.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/37.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/38.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/38.png index 464f868e..c5206a24 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/38.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/38.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/39.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/39.png index 464f868e..9fd008fb 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/39.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/39.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/4.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/4.png index 464f868e..97934b6e 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/4.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/4.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/40.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/40.png index 464f868e..dd0adbec 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/40.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/40.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/5.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/5.png index 464f868e..5b99cedc 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/5.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/5.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/6.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/6.png index 464f868e..0d1563fa 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/6.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/6.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/7.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/7.png index 464f868e..835cb575 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/7.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/7.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/8.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/8.png index 464f868e..955c6a9b 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/8.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/8.png differ diff --git a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/9.png b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/9.png index 464f868e..183a5a4f 100644 Binary files a/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/9.png and b/Test/System/SimpleStyle (1080p)/Graphics/6_Result/Rainbow/9.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P.png index 12d6e640..572b2548 100644 Binary files a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P.png and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_4PGauge.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_4PGauge.png index 1ebfa38b..4f2cf3ed 100644 Binary files a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_4PGauge.png and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_4PGauge.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Base.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Base.png index cb48fae8..416695ed 100644 Binary files a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Base.png and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Base.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Base_4PGauge.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Base_4PGauge.png index 8062d5b3..02810fba 100644 Binary files a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Base_4PGauge.png and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Base_4PGauge.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Base_Right.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Base_Right.png index 04d7600c..94b8adb4 100644 Binary files a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Base_Right.png and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Base_Right.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Right.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Right.png index 5441652b..140c8e8b 100644 Binary files a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Right.png and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Right.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P.png index 96ef7592..9f2b2a00 100644 Binary files a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P.png and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_4PGauge.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_4PGauge.png index 2e3c1ed6..1f7afada 100644 Binary files a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_4PGauge.png and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_4PGauge.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_Base.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_Base.png index e04aae48..5c133c8e 100644 Binary files a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_Base.png and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_Base.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_Base_4PGauge.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_Base_4PGauge.png index 68a4da14..212801ba 100644 Binary files a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_Base_4PGauge.png and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_Base_4PGauge.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/3P_4PGauge.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/3P_4PGauge.png index d7d7a7f8..b62d6223 100644 Binary files a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/3P_4PGauge.png and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/3P_4PGauge.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/3P_Base_4PGauge.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/3P_Base_4PGauge.png index c8cce9f9..69b14a58 100644 Binary files a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/3P_Base_4PGauge.png and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/3P_Base_4PGauge.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/4P_4PGauge.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/4P_4PGauge.png index f6f04b11..95023701 100644 Binary files a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/4P_4PGauge.png and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/4P_4PGauge.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/4P_Base_4PGauge.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/4P_Base_4PGauge.png index 213ccf09..1ce3bd54 100644 Binary files a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/4P_Base_4PGauge.png and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/4P_Base_4PGauge.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/5P_4PGauge.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/5P_4PGauge.png index 739f7b99..06320c8c 100644 Binary files a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/5P_4PGauge.png and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/5P_4PGauge.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/5P_Base_4PGauge.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/5P_Base_4PGauge.png index f2fecc98..422d6c81 100644 Binary files a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/5P_Base_4PGauge.png and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/5P_Base_4PGauge.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Killzone.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Killzone.png new file mode 100644 index 00000000..c57a928e Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Killzone.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Killzone_2PGauge.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Killzone_2PGauge.png new file mode 100644 index 00000000..a112678f Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Killzone_2PGauge.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Killzone_4PGauge.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Killzone_4PGauge.png new file mode 100644 index 00000000..348556af Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Killzone_4PGauge.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Norma_Base.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Norma_Base.png new file mode 100644 index 00000000..9f728920 Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Norma_Base.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Norma_Base_2PGauge.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Norma_Base_2PGauge.png new file mode 100644 index 00000000..8bea59aa Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Norma_Base_2PGauge.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Norma_Base_4PGauge.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Norma_Base_4PGauge.png new file mode 100644 index 00000000..dd9f9469 Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Norma_Base_4PGauge.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/0.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/0.png new file mode 100644 index 00000000..6a9d6f24 Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/0.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/1.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/1.png new file mode 100644 index 00000000..5d63fdfc Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/1.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/10.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/10.png new file mode 100644 index 00000000..6a82beff Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/10.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/11.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/11.png new file mode 100644 index 00000000..821c7e42 Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/11.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/2.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/2.png new file mode 100644 index 00000000..1252259d Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/2.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/3.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/3.png new file mode 100644 index 00000000..dc535a50 Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/3.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/4.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/4.png new file mode 100644 index 00000000..d554d4e2 Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/4.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/5.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/5.png new file mode 100644 index 00000000..0f3073ab Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/5.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/6.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/6.png new file mode 100644 index 00000000..37b7e482 Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/6.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/7.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/7.png new file mode 100644 index 00000000..0c955d0b Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/7.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/8.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/8.png new file mode 100644 index 00000000..ac65bd91 Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/8.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/9.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/9.png new file mode 100644 index 00000000..0b7422d1 Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_2PGauge/9.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/0.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/0.png new file mode 100644 index 00000000..92ad8d95 Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/0.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/1.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/1.png new file mode 100644 index 00000000..b4983a0a Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/1.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/10.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/10.png new file mode 100644 index 00000000..52e9d208 Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/10.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/11.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/11.png new file mode 100644 index 00000000..7642ff1a Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/11.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/2.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/2.png new file mode 100644 index 00000000..6e9f0731 Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/2.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/3.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/3.png new file mode 100644 index 00000000..7b9cb507 Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/3.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/4.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/4.png new file mode 100644 index 00000000..25ae5fdd Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/4.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/5.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/5.png new file mode 100644 index 00000000..8cea0029 Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/5.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/6.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/6.png new file mode 100644 index 00000000..08d19727 Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/6.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/7.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/7.png new file mode 100644 index 00000000..c6880588 Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/7.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/8.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/8.png new file mode 100644 index 00000000..fe2142cc Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/8.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/9.png b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/9.png new file mode 100644 index 00000000..345ed8c0 Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow_Flat/9.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/FuseRoll.png b/Test/System/SimpleStyle/Graphics/5_Game/FuseRoll.png new file mode 100644 index 00000000..25aca521 Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/FuseRoll.png differ diff --git a/Test/System/SimpleStyle/Graphics/5_Game/Kusu.png b/Test/System/SimpleStyle/Graphics/5_Game/Kusu.png new file mode 100644 index 00000000..86d39865 Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/5_Game/Kusu.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Gauge.png b/Test/System/SimpleStyle/Graphics/6_Result/Gauge.png index 38d01bd3..95b3bc77 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Gauge.png and b/Test/System/SimpleStyle/Graphics/6_Result/Gauge.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Gauge_2.png b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_2.png index 53841be2..7eaf3f1d 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Gauge_2.png and b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_2.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Gauge_3.png b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_3.png index 228984bd..5eb39312 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Gauge_3.png and b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_3.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Gauge_4.png b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_4.png index bc1b6723..785335b2 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Gauge_4.png and b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_4.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Gauge_5.png b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_5.png index 24a0a708..4c0f03bd 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Gauge_5.png and b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_5.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base.png b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base.png index a46a888a..db337ebb 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base.png and b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base_2.png b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base_2.png index f88fab3c..9565332b 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base_2.png and b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base_2.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base_3.png b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base_3.png index aa0ccf7b..115ff845 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base_3.png and b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base_3.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base_4.png b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base_4.png index aed3c0e4..60ef82d9 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base_4.png and b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base_4.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base_5.png b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base_5.png index 281a8b6e..c6ba1e7d 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base_5.png and b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base_5.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Clear.png b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Clear.png new file mode 100644 index 00000000..b014fc28 Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Clear.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Clear_Base.png b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Clear_Base.png new file mode 100644 index 00000000..4e6ca417 Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Clear_Base.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Frame.png b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Frame.png new file mode 100644 index 00000000..2d270b2d Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Frame.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Killzone.png b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Killzone.png new file mode 100644 index 00000000..cd12c7ae Binary files /dev/null and b/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Killzone.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/0.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/0.png index f0a3d63d..05c6c382 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/0.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/0.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/1.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/1.png index c7565abe..21dbcd8e 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/1.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/1.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/10.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/10.png index f861f792..74b3ebe3 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/10.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/10.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/11.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/11.png index 94b162c7..3b9710b2 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/11.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/11.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/12.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/12.png index d4875f1f..d457270c 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/12.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/12.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/13.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/13.png index c47c91e2..9ff937b2 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/13.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/13.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/14.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/14.png index a8898b47..c4cd6310 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/14.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/14.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/15.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/15.png index a6ba0090..20b15b4f 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/15.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/15.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/16.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/16.png index cfeb37c7..ec0807ef 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/16.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/16.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/17.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/17.png index f2ccc137..1a26a40f 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/17.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/17.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/18.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/18.png index d63a3d72..36a82e31 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/18.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/18.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/19.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/19.png index 6e3c9450..a35cdfd4 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/19.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/19.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/2.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/2.png index f4cee996..13278b02 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/2.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/2.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/20.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/20.png index 4e6adff4..08b92bdb 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/20.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/20.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/21.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/21.png index a9dd9061..ce71a235 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/21.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/21.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/22.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/22.png index 0a8e50dd..d9613e31 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/22.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/22.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/23.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/23.png index 3fffe052..efd55efe 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/23.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/23.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/24.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/24.png index 0a6efc04..e2250f08 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/24.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/24.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/25.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/25.png index 18051d95..ea90df71 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/25.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/25.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/26.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/26.png index bb736980..e760fbbf 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/26.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/26.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/27.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/27.png index d1642570..784682e0 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/27.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/27.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/28.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/28.png index 42ecd302..747b2b8f 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/28.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/28.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/29.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/29.png index fb3badf2..a5b98ac3 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/29.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/29.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/3.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/3.png index 86f329f4..4bff2461 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/3.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/3.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/30.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/30.png index 9c02e92f..c690fc02 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/30.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/30.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/31.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/31.png index 3f66dd3b..1976421c 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/31.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/31.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/32.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/32.png index 6fa840c8..0a4018b5 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/32.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/32.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/33.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/33.png index c7e281a6..dd63870a 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/33.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/33.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/34.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/34.png index e5b6432a..a71a2c06 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/34.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/34.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/35.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/35.png index a17e9c22..9d0eafb7 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/35.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/35.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/36.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/36.png index ad212fbc..9d09a4d0 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/36.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/36.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/37.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/37.png index 429cb6e4..aaf24c2f 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/37.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/37.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/38.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/38.png index cf039dd3..dde7b4cc 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/38.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/38.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/39.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/39.png index 90fbbadc..2ba44836 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/39.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/39.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/4.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/4.png index e0ebb8a4..10ae3cbb 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/4.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/4.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/40.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/40.png index 26cde338..52ffbe86 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/40.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/40.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/5.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/5.png index 0494873e..7bb80a26 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/5.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/5.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/6.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/6.png index 0bf3a550..73150cf7 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/6.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/6.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/7.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/7.png index 7fe20c26..9890119f 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/7.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/7.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/8.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/8.png index da4a6a5f..1e3749b9 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/8.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/8.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/9.png b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/9.png index 9b09c891..72924da7 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/9.png and b/Test/System/SimpleStyle/Graphics/6_Result/Rainbow/9.png differ diff --git a/Test/System/SimpleStyle/Graphics/6_Result/Soul_Text.png b/Test/System/SimpleStyle/Graphics/6_Result/Soul_Text.png index a2af45a9..aa61e1e6 100644 Binary files a/Test/System/SimpleStyle/Graphics/6_Result/Soul_Text.png and b/Test/System/SimpleStyle/Graphics/6_Result/Soul_Text.png differ