diff --git a/.gitignore b/.gitignore index b737457..b3c97b1 100644 --- a/.gitignore +++ b/.gitignore @@ -3,5 +3,7 @@ Superstar.mdf Superstar_log.ldf .vs build.bat -DualScreenKTVPlayStation.exe -themes/superstar/_www/ \ No newline at end of file +*.exe +bin/logfile.txt +bin/secondary_graph.grf +bin/mainlog.txt diff --git a/AddUrlAcl.bat b/AddUrlAcl.bat deleted file mode 100644 index 7593854..0000000 --- a/AddUrlAcl.bat +++ /dev/null @@ -1 +0,0 @@ -netsh http add urlacl url=http://192.168.11.7:9090/ user=Everyone diff --git a/ButtonImages/11超.png b/ButtonImages/11超.png deleted file mode 100644 index 611e845..0000000 Binary files a/ButtonImages/11超.png and /dev/null differ diff --git a/ButtonImages/巨.png b/ButtonImages/巨.png deleted file mode 100644 index ad8daad..0000000 Binary files a/ButtonImages/巨.png and /dev/null differ diff --git a/ButtonImages/星.png b/ButtonImages/星.png deleted file mode 100644 index 529ef84..0000000 Binary files a/ButtonImages/星.png and /dev/null differ diff --git a/ButtonImages/級.png b/ButtonImages/級.png deleted file mode 100644 index f3b1e0e..0000000 Binary files a/ButtonImages/級.png and /dev/null differ diff --git a/ButtonImages/超.png b/ButtonImages/超.png deleted file mode 100644 index 2165709..0000000 Binary files a/ButtonImages/超.png and /dev/null differ diff --git a/CommandHandler.cs b/CommandHandler.cs index 081f875..205b197 100644 --- a/CommandHandler.cs +++ b/CommandHandler.cs @@ -7,29 +7,30 @@ using System.Threading.Tasks; using System.Windows.Forms; using System.Collections.Generic; using System.Diagnostics; - +using DBObj; +using OverlayFormObj; namespace DualScreenDemo { public class CommandHandler { public static bool readyForSongListInput = false; + private readonly int _maxHistoryLength = 6; // 最多保留 6 筆 + private readonly Queue _indataHistory = new Queue(); + private int _wrongInputCountfor62 = 0; // 錯誤輸入計數器 + private int _wrongInputCountfor61 = 0; // 錯誤輸入計數器 + private const int MaxWrongLimit = 3; // 錯誤輸入限制次數 private readonly SongListManager songListManager; public CommandHandler(SongListManager songListManager) { this.songListManager = songListManager; } - + + //關機錨點 public async Task ProcessData(string indata) { - string filePath = Path.Combine(Application.StartupPath, "dataLog.txt"); - if (CheckLogForShutdown(filePath)) - { - Console.WriteLine("Shutdown condition met. Application will now close."); - ShutdownComputer(); - } - + AddToHistory(indata); switch (indata) { case "A261A4": @@ -40,6 +41,9 @@ namespace DualScreenDemo break; case "A263A4": ClearDisplay(); + _wrongInputCountfor62 = 0; // 重置計數器 + _wrongInputCountfor61 = 0; // 重置計數器 + _indataHistory.Clear(); // 清空歷史紀錄 break; case "A268A4": OverlayForm.MainForm.currentPage = 1; @@ -186,6 +190,28 @@ namespace DualScreenDemo } } + private void AddToHistory(string indata) + { + if (_indataHistory.Count >= _maxHistoryLength) + { + _indataHistory.Dequeue(); // 移除最舊的項目 + } + _indataHistory.Enqueue(indata); // 添加新的項目 + CheckSequenceforClose(); // 每次更新完 queue 後檢查 + } + private void CheckSequenceforClose() + { + string[] targetSequence = { "A262A4", "A262A4", "A262A4", "A261A4", "A261A4", "A261A4" }; + + if (_indataHistory.Count == targetSequence.Length && + _indataHistory.SequenceEqual(targetSequence)) + { + Console.WriteLine("Shutdown condition met. Application will now close."); + ShutdownComputer(); + // 你可以呼叫其他方法、觸發事件、改狀態等等 + } + } + void InvokeAction(Action action) { if (OverlayForm.MainForm.InvokeRequired) @@ -316,7 +342,18 @@ namespace DualScreenDemo else { ClearDisplay(); - OverlayForm.MainForm.displayLabel.Text = "輸入錯誤!!!"; + _wrongInputCountfor61++; + if(_wrongInputCountfor61 <= MaxWrongLimit) + { + string old =""; + OverlayForm.MainForm.displayLabel.Text = check_control(old); + } + else + { + OverlayForm.MainForm.displayLabel.Text = "輸入錯誤!!!"; + _indataHistory.Clear(); // 清空歷史紀錄 + _wrongInputCountfor61 = 0; // 重置計數器 + } OverlayForm.MainForm.nextSongLabel.Visible = false; OverlayForm.displayTimer.Start(); } @@ -335,7 +372,18 @@ namespace DualScreenDemo else { ClearDisplay(); - OverlayForm.MainForm.displayLabel.Text = "輸入錯誤!!!"; + _wrongInputCountfor61++; + if(_wrongInputCountfor61 <= MaxWrongLimit) + { + string old =""; + OverlayForm.MainForm.displayLabel.Text = check_control(old); + } + else + { + OverlayForm.MainForm.displayLabel.Text = "輸入錯誤!!!"; + _indataHistory.Clear(); // 清空歷史紀錄 + _wrongInputCountfor61 = 0; // 重置計數器 + } OverlayForm.MainForm.nextSongLabel.Visible = false; OverlayForm.displayTimer.Start(); } @@ -343,6 +391,16 @@ namespace DualScreenDemo } } + private string check_control(string old){ + foreach(string item in _indataHistory) + { + if(item == "A261A4") + old += "#"; + else if(item == "A262A4") + old += "*"; + } + return old; + } private void HandleInputB() { @@ -388,7 +446,18 @@ namespace DualScreenDemo else { ClearDisplay(); - OverlayForm.MainForm.displayLabel.Text = "輸入錯誤!!!"; + _wrongInputCountfor62++; + if(_wrongInputCountfor62 <= MaxWrongLimit) + { + string old =""; + OverlayForm.MainForm.displayLabel.Text = check_control(old); + } + else + { + OverlayForm.MainForm.displayLabel.Text = "輸入錯誤!!!"; + _indataHistory.Clear(); // 清空歷史紀錄 + _wrongInputCountfor62 = 0; // 重置計數器 + } OverlayForm.MainForm.nextSongLabel.Visible = false; OverlayForm.displayTimer.Start(); } @@ -405,7 +474,18 @@ namespace DualScreenDemo else { ClearDisplay(); - OverlayForm.MainForm.displayLabel.Text = "輸入錯誤!!!"; + _wrongInputCountfor62++; + if(_wrongInputCountfor62 <= MaxWrongLimit) + { + string old =""; + OverlayForm.MainForm.displayLabel.Text = check_control(old); + } + else + { + OverlayForm.MainForm.displayLabel.Text = "輸入錯誤!!!"; + _indataHistory.Clear(); // 清空歷史紀錄 + _wrongInputCountfor62 = 0; // 重置計數器 + } OverlayForm.MainForm.nextSongLabel.Visible = false; OverlayForm.displayTimer.Start(); } @@ -415,9 +495,8 @@ namespace DualScreenDemo private static void ClearDisplay() { - OverlayForm.displayTimer.Stop(); - + if (OverlayForm.MainForm.InvokeRequired) { @@ -893,20 +972,6 @@ private static void DisplaySongHistory() } } - public static bool CheckLogForShutdown(string filePath) - { - if (File.Exists(filePath)) - { - - string content = File.ReadAllText(filePath).Replace(Environment.NewLine, ""); - if (content.Length >= 6 && content.Substring(content.Length - 6) == "bbbaaa") - { - return true; - } - } - return false; - } - public static void ShutdownComputer() { try diff --git a/Artist.cs b/DBObj/Artist.cs similarity index 96% rename from Artist.cs rename to DBObj/Artist.cs index 4e74b02..670e708 100644 --- a/Artist.cs +++ b/DBObj/Artist.cs @@ -1,4 +1,4 @@ -namespace DualScreenDemo +namespace DBObj { // artist OOP test public class Artist diff --git a/ArtistManager.cs b/DBObj/ArtistManager.cs similarity index 98% rename from ArtistManager.cs rename to DBObj/ArtistManager.cs index f5e4617..f88d084 100644 --- a/ArtistManager.cs +++ b/DBObj/ArtistManager.cs @@ -4,11 +4,11 @@ using System.Data.SQLite; using System.IO; using System.Linq; using System.Windows.Forms; - -namespace DualScreenDemo +using DualScreenDemo; +namespace DBObj { /** - 重資料庫取資料回來 + 從資料庫取資料回來 */ public class ArtistManager { diff --git a/SongData.cs b/DBObj/SongData.cs similarity index 99% rename from SongData.cs rename to DBObj/SongData.cs index 163035f..21c7529 100644 --- a/SongData.cs +++ b/DBObj/SongData.cs @@ -1,6 +1,6 @@ using System; -namespace DualScreenDemo +namespace DBObj { public class SongData { diff --git a/SongListManager.cs b/DBObj/SongListManager.cs similarity index 96% rename from SongListManager.cs rename to DBObj/SongListManager.cs index 5f7e7db..ca8b105 100644 --- a/SongListManager.cs +++ b/DBObj/SongListManager.cs @@ -6,8 +6,8 @@ using System.Linq; using System.Windows.Forms; using System.Globalization; using System.Diagnostics; - -namespace DualScreenDemo +using DualScreenDemo; +namespace DBObj { public class SongListManager { @@ -262,25 +262,15 @@ namespace DualScreenDemo string artistB = reader["歌星 B"].ToString(); string artistACategory = reader["歌星A分類"].ToString(); string artistBCategory = reader["歌星B分類"].ToString(); - string dateValue = reader["新增日期"].ToString(); + string dateValue = reader["新增日期"]?.ToString() ?? ""; DateTime addedTime; - - if (string.IsNullOrWhiteSpace(dateValue)) + try { - // Console.WriteLine(String.Format("Date value is null or empty for song: {0}. Setting to default DateTime.", song)); - addedTime = DateTime.Now; + addedTime=DateTime.Parse(dateValue, CultureInfo.InvariantCulture).Date ; } - else + catch (System.FormatException) { - try - { - addedTime = DateTime.ParseExact(dateValue, "yyyy-MM-dd", CultureInfo.InvariantCulture); - } - catch (System.FormatException ex) - { - // Console.WriteLine(String.Format("Invalid date format for song: {0}. Error: {1}", song, ex.Message)); - addedTime = DateTime.Now; - } + addedTime = DateTime.Today; } string basePathHost1 = reader["路徑 1"].ToString(); string basePathHost2 = reader["路徑 2"].ToString(); @@ -373,7 +363,7 @@ namespace DualScreenDemo } catch (System.FormatException) { - addedTime = DateTime.Now; + addedTime = DateTime.Today; } string basePathHost1 = reader["路徑 1"].ToString(); diff --git a/DualScreenKTVPlayStation.nsi b/DualScreenKTVPlayStation.nsi deleted file mode 100644 index 7aeef73..0000000 --- a/DualScreenKTVPlayStation.nsi +++ /dev/null @@ -1,2080 +0,0 @@ -; Script generated by the HM NIS Edit Script Wizard. - -; HM NIS Edit Wizard helper defines -!define PRODUCT_NAME "DualScreenPlayStation" -!define PRODUCT_VERSION "1.0" -!define PRODUCT_PUBLISHER "Steven Studio, Inc." -!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\DualScreenKTVPlayStation.exe" -!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" -!define PRODUCT_UNINST_ROOT_KEY "HKLM" - -; MUI 1.67 compatible ------ -!include "MUI.nsh" - -; MUI Settings -!define MUI_ABORTWARNING -!define MUI_ICON "ksonglover.ico" -!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico" - -; Language Selection Dialog Settings -!define MUI_LANGDLL_REGISTRY_ROOT "${PRODUCT_UNINST_ROOT_KEY}" -!define MUI_LANGDLL_REGISTRY_KEY "${PRODUCT_UNINST_KEY}" -!define MUI_LANGDLL_REGISTRY_VALUENAME "NSIS:Language" - -; Welcome page -!insertmacro MUI_PAGE_WELCOME -; Directory page -!insertmacro MUI_PAGE_DIRECTORY -; Instfiles page -!insertmacro MUI_PAGE_INSTFILES -; Finish page -!define MUI_FINISHPAGE_RUN "$INSTDIR\DualScreenKTVPlayStation.exe" -!insertmacro MUI_PAGE_FINISH - -; Uninstaller pages -!insertmacro MUI_UNPAGE_INSTFILES - -; Language files -!insertmacro MUI_LANGUAGE "English" -!insertmacro MUI_LANGUAGE "TradChinese" - -; MUI end ------ - -Name "${PRODUCT_NAME} ${PRODUCT_VERSION}" -OutFile "DualScreenSetup.exe" -InstallDir "$PROGRAMFILES\DualScreenPlayStation" -InstallDirRegKey HKLM "${PRODUCT_DIR_REGKEY}" "" -ShowInstDetails show -ShowUnInstDetails show - -Function .onInit - !insertmacro MUI_LANGDLL_DISPLAY -FunctionEnd - -Section "MainSection" SEC01 - SetOutPath "$INSTDIR" - SetOverwrite try - File "AxInterop.WMPLib.dll" - File "config.ini" - File "DirectShowLib.dll" - File "DualScreenKTVPlayStation.exe" - CreateDirectory "$SMPROGRAMS\DualScreenPlayStation" - CreateShortCut "$SMPROGRAMS\DualScreenPlayStation\DualScreenPlayStation.lnk" "$INSTDIR\DualScreenKTVPlayStation.exe" - CreateShortCut "$DESKTOP\DualScreenPlayStation.lnk" "$INSTDIR\DualScreenKTVPlayStation.exe" - File "EPPlus.dll" - SetOutPath "$INSTDIR\foods" - File "foods\�D��_Pubpicd01����.jpg" - File "foods\�D��_Pubpicd02�ǥͱM��.jpg" - File "foods\�D��_Pubpicd03�w���u�f�M�\.jpg" - File "foods\�D��_Pubpicd04�զX�M�\.jpg" - File "foods\�D��_Pubpicd05���֮M�\.jpg" - File "foods\���I_Pubpicd06�������w.jpg" - File "foods\���I_Pubpicd07����.jpg" - File "foods\���I_Pubpicd08����+�T�M�K�O+�ӰȮM�\.jpg" - File "foods\���I_Pubpicd09���~+�x���p��.jpg" - File "foods\���I_Pubpicd10�D��+����.jpg" - File "foods\���I_Pubpicd11�D��+�p�����G.jpg" - File "foods\���I_Pubpicd12�N��+����.jpg" - File "foods\���I_Pubpicd13�v�s.jpg" - File "foods\���I_Pubpicd14�x���s+�հs�t�~.jpg" - File "foods\���I_Pubpicd15�հs�t�~+��s.jpg" - SetOutPath "$INSTDIR" - File "INIFileParser.dll" - File "INIFileParser.dll.mdb" - File "INIFileParser.xml" - File "Interop.WMPLib.dll" - File "KSongDatabase.db" - File "ksonglover.ico" - File "mainlog.txt" - File "MediaFoundation.dll" - File "Microsoft.Ink.dll" - File "Microsoft.IO.RecyclableMemoryStream.dll" - File "NAudio.dll" - SetOutPath "$INSTDIR\news" - File "news\3.���s����_1-�O�����驱 Pubpicc03.jpg" - File "news\Pubpicc01.jpg" - File "news\Pubpicc02.jpg" - File "news\Pubpicc03.jpg" - File "news\Pubpicc04.jpg" - File "news\Pubpicc05.jpg" - File "news\Pubpicc06.jpg" - File "news\Pubpicc07.jpg" - File "news\Pubpicc08.jpg" - File "news\Pubpicc09.jpg" - File "news\Pubpicc10.jpg" - File "news\Pubpicc11.jpg" - File "news\Pubpicc12.jpg" - File "news\Pubpicc13.jpg" - SetOutPath "$INSTDIR" - File "Newtonsoft.Json.dll" - File "primary_graph.grf" - File "secondary_graph.grf" - File "SongLimitsSettings.txt" - SetOutPath "$INSTDIR\sounds" - File "sounds\13472_Audio Trimmer.mp3" - File "sounds\1857.mp3" - File "sounds\audio1.wav" - File "sounds\audio2.wav" - File "sounds\audio3.wav" - File "sounds\audio4.wav" - File "sounds\bgs.mp3" - File "sounds\car-changing-gears-sound-188962.mp3" - File "sounds\cx.mp3" - File "sounds\gd.mp3" - File "sounds\hh.mp3" - File "sounds\jc.mp3" - File "sounds\jc1.mp3" - File "sounds\kc.mp3" - File "sounds\kc1.mp3" - File "sounds\press.wav" - File "sounds\sc.mp3" - File "sounds\sc1.mp3" - File "sounds\start.wav" - File "sounds\xm2401.m4a" - File "sounds\xs.mp3" - File "sounds\y1640.m4a" - File "sounds\zs.mp3" - SetOutPath "$INSTDIR" - File "SQLite.Interop.dll" - SetOutPath "$INSTDIR\superstar-pic" - File "superstar-pic\1-1.png" - File "superstar-pic\1-2.png" - File "superstar-pic\2-1.png" - File "superstar-pic\2-2.png" - File "superstar-pic\5-1.png" - File "superstar-pic\5-10.png" - File "superstar-pic\5-11.png" - File "superstar-pic\5-12.png" - File "superstar-pic\5-2.png" - File "superstar-pic\5-3.png" - File "superstar-pic\5-4.png" - File "superstar-pic\5-5.png" - File "superstar-pic\5-6.png" - File "superstar-pic\5-7.png" - File "superstar-pic\5-8.png" - File "superstar-pic\5-9.png" - SetOutPath "$INSTDIR" - File "Superstar.mdf" - File "Superstar_log.ldf" - File "System.Data.SQLite.dll" - File "System.Runtime.dll" - SetOutPath "$INSTDIR\themes\superstar" - File "themes\superstar\3.�q�P�d��_�w��.jpg" - File "themes\superstar\3.�q�P�d��_����.jpg" - File "themes\superstar\4.�q�W�d��_�w��.jpg" - File "themes\superstar\4.�q�W�d��_����.jpg" - File "themes\superstar\555008.jpg" - File "themes\superstar\555009.jpg" - File "themes\superstar\555010.jpg" - File "themes\superstar\555011.jpg" - File "themes\superstar\555012.jpg" - File "themes\superstar\555013.jpg" - File "themes\superstar\555014.jpg" - File "themes\superstar\555015.jpg" - File "themes\superstar\555016.jpg" - File "themes\superstar\555017.jpg" - File "themes\superstar\555018.jpg" - File "themes\superstar\555019.jpg" - File "themes\superstar\555020.jpg" - File "themes\superstar\555021.jpg" - File "themes\superstar\555022.jpg" - File "themes\superstar\555023.jpg" - File "themes\superstar\555024.jpg" - File "themes\superstar\555027.jpg" - File "themes\superstar\6-1.html" - File "themes\superstar\6-1.mousedown.png" - File "themes\superstar\6-1.mouseover.png" - File "themes\superstar\6-1.png" - File "themes\superstar\7-1-1.html" - File "themes\superstar\7-1-1.mousedown.png" - File "themes\superstar\7-1-1.mouseover.png" - File "themes\superstar\7-1-1.png" - File "themes\superstar\7-1.html" - File "themes\superstar\7-1.mousedown.png" - File "themes\superstar\7-1.mouseover.png" - File "themes\superstar\7-1.png" - File "themes\superstar\cropped_qrcode.jpg" - SetOutPath "$INSTDIR\themes\superstar\ICON�W��" - File "themes\superstar\ICON�W��\�W��ICON_�u�f����-11.png" - File "themes\superstar\ICON�W��\�W��ICON_�u�f����-23.png" - File "themes\superstar\ICON�W��\�W��ICON_�X�۬d��-06.png" - File "themes\superstar\ICON�W��\�W��ICON_�X�۬d��-18.png" - File "themes\superstar\ICON�W��\�W��ICON_�w�I�q��-09.png" - File "themes\superstar\ICON�W��\�W��ICON_�w�I�q��-21.png" - File "themes\superstar\ICON�W��\�W��ICON_�ڪ��̷R-10.png" - File "themes\superstar\ICON�W��\�W��ICON_�ڪ��̷R-22.png" - File "themes\superstar\ICON�W��\�W��ICON_����I�q.png" - File "themes\superstar\ICON�W��\�W��ICON_�s�q�ֳ�O.png" - File "themes\superstar\ICON�W��\�W��ICON_�s�q�ֳ�X.png" - File "themes\superstar\ICON�W��\�W��ICON_�A �� �a-08.png" - File "themes\superstar\ICON�W��\�W��ICON_�A �� �a-20.png" - File "themes\superstar\ICON�W��\�W��ICON_�q�W�d��-04.png" - File "themes\superstar\ICON�W��\�W��ICON_�q�W�d��-16.png" - File "themes\superstar\ICON�W��\�W��ICON_�q�P�d��-03.png" - File "themes\superstar\ICON�W��\�W��ICON_�q�P�d��-15.png" - File "themes\superstar\ICON�W��\�W��ICON_�����Ʀ�-02.png" - File "themes\superstar\ICON�W��\�W��ICON_�����Ʀ�-14.png" - File "themes\superstar\ICON�W��\�W��ICON_�������-12.png" - File "themes\superstar\ICON�W��\�W��ICON_�������-24.png" - File "themes\superstar\ICON�W��\�W��ICON_�y�O�d��-05.png" - File "themes\superstar\ICON�W��\�W��ICON_�y�O�d��-17.png" - File "themes\superstar\ICON�W��\�W��ICON_���O�d��-07.png" - File "themes\superstar\ICON�W��\�W��ICON_���O�d��-19.png" - SetOutPath "$INSTDIR\themes\superstar\ICON�U��" - File "themes\superstar\ICON�U��\�U��ICON-02.png" - File "themes\superstar\ICON�U��\�U��ICON-03.png" - File "themes\superstar\ICON�U��\�U��ICON-04.png" - File "themes\superstar\ICON�U��\�U��ICON-05.png" - File "themes\superstar\ICON�U��\�U��ICON-06.png" - File "themes\superstar\ICON�U��\�U��ICON-07.png" - File "themes\superstar\ICON�U��\�U��ICON-08.png" - File "themes\superstar\ICON�U��\�U��ICON-09.png" - File "themes\superstar\ICON�U��\�U��ICON-10.png" - File "themes\superstar\ICON�U��\�U��ICON-11.png" - File "themes\superstar\ICON�U��\�U��ICON-12.png" - File "themes\superstar\ICON�U��\�U��ICON-13.png" - File "themes\superstar\ICON�U��\�U��ICON-14.png" - File "themes\superstar\ICON�U��\�U��ICON-15.png" - File "themes\superstar\ICON�U��\�U��ICON-16.png" - File "themes\superstar\ICON�U��\�U��ICON-17.png" - File "themes\superstar\ICON�U��\�U��ICON-18.png" - File "themes\superstar\ICON�U��\�U��ICON-19.png" - File "themes\superstar\ICON�U��\�U��ICON-20.png" - File "themes\superstar\ICON�U��\�U��ICON-21.png" - File "themes\superstar\ICON�U��\�U��ICON-22.png" - File "themes\superstar\ICON�U��\�U��ICON-23.png" - File "themes\superstar\ICON�U��\�U��ICON_�u�@�ϰ� 1.png" - SetOutPath "$INSTDIR\themes\superstar" - File "themes\superstar\image.jpg" - File "themes\superstar\images.jpg" - File "themes\superstar\test.py" - File "themes\superstar\test2.py" - File "themes\superstar\test3.py" - File "themes\superstar\test4.py" - File "themes\superstar\test5.py" - File "themes\superstar\test6.py" - File "themes\superstar\toggle_light.jpg" - File "themes\superstar\VOD_�e�ȵe��.jpg" - SetOutPath "$INSTDIR\themes\superstar\_www" - File "themes\superstar\_www\clicked-song.html" - SetOutPath "$INSTDIR\themes\superstar\_www\css" - File "themes\superstar\_www\css\bootstrap-theme.min.css" - File "themes\superstar\_www\css\bootstrap.min.css" - File "themes\superstar\_www\css\index.css" - SetOutPath "$INSTDIR\themes\superstar\_www\fonts" - File "themes\superstar\_www\fonts\glyphicons-halflings-regular.eot" - File "themes\superstar\_www\fonts\glyphicons-halflings-regular.svg" - File "themes\superstar\_www\fonts\glyphicons-halflings-regular.ttf" - File "themes\superstar\_www\fonts\glyphicons-halflings-regular.woff" - File "themes\superstar\_www\fonts\glyphicons-halflings-regular.woff2" - SetOutPath "$INSTDIR\themes\superstar\_www" - File "themes\superstar\_www\love-message.html" - File "themes\superstar\_www\mood-stickers.html" - File "themes\superstar\_www\my-favorite.html" - File "themes\superstar\_www\new-songs.html" - File "themes\superstar\_www\profile-settings.html" - File "themes\superstar\_www\register.html" - File "themes\superstar\_www\search-singer.html" - File "themes\superstar\_www\search-song.html" - File "themes\superstar\_www\social-media.html" - File "themes\superstar\_www\song-order.html" - File "themes\superstar\_www\sound-control.html" - SetOutPath "$INSTDIR\themes\superstar\_www\superstar-pic" - File "themes\superstar\_www\superstar-pic\1-1.png" - File "themes\superstar\_www\superstar-pic\1-2.png" - File "themes\superstar\_www\superstar-pic\2-1.png" - File "themes\superstar\_www\superstar-pic\2-2.png" - File "themes\superstar\_www\superstar-pic\5-1.png" - File "themes\superstar\_www\superstar-pic\5-10.png" - File "themes\superstar\_www\superstar-pic\5-11.png" - File "themes\superstar\_www\superstar-pic\5-12.png" - File "themes\superstar\_www\superstar-pic\5-2.png" - File "themes\superstar\_www\superstar-pic\5-3.png" - File "themes\superstar\_www\superstar-pic\5-4.png" - File "themes\superstar\_www\superstar-pic\5-5.png" - File "themes\superstar\_www\superstar-pic\5-6.png" - File "themes\superstar\_www\superstar-pic\5-7.png" - File "themes\superstar\_www\superstar-pic\5-8.png" - File "themes\superstar\_www\superstar-pic\5-9.png" - SetOutPath "$INSTDIR\themes\superstar\_www" - File "themes\superstar\_www\top-ranking.html" - File "themes\superstar\_www\windows.html" - SetOutPath "$INSTDIR\themes\superstar\_www\����I�q" - File "themes\superstar\_www\����I�q\BANNER-02.png" - File "themes\superstar\_www\����I�q\BANNER-03.png" - File "themes\superstar\_www\����I�q\BANNER-04.png" - File "themes\superstar\_www\����I�q\BANNER-05.png" - File "themes\superstar\_www\����I�q\BANNER-06.png" - File "themes\superstar\_www\����I�q\BANNER-07.png" - File "themes\superstar\_www\����I�q\BANNER-08.png" - File "themes\superstar\_www\����I�q\BANNER-09.png" - File "themes\superstar\_www\����I�q\BANNER-10.png" - File "themes\superstar\_www\����I�q\BANNER-11.png" - File "themes\superstar\_www\����I�q\BANNER-12.png" - File "themes\superstar\_www\����I�q\BANNER-13.png" - File "themes\superstar\_www\����I�q\BANNER-14.png" - File "themes\superstar\_www\����I�q\BANNER-15.png" - File "themes\superstar\_www\����I�q\BANNER_�u�@�ϰ� 1.png" - File "themes\superstar\_www\����I�q\BG-3-01.png" - File "themes\superstar\_www\����I�q\BG-3-02.png" - File "themes\superstar\_www\����I�q\BG-3-03.png" - File "themes\superstar\_www\����I�q\BG-3-04.png" - File "themes\superstar\_www\����I�q\LOGO-03.png" - File "themes\superstar\_www\����I�q\LOGO0728-02.png" - File "themes\superstar\_www\����I�q\LOGO0728-03.png" - File "themes\superstar\_www\����I�q\LOGO0728_�u�@�ϰ� 1.png" - File "themes\superstar\_www\����I�q\LOGO_721x211px.png" - File "themes\superstar\_www\����I�q\LOGO_800x400px.png" - File "themes\superstar\_www\����I�q\����I�q(0728�ק�).rar" - File "themes\superstar\_www\����I�q\����I�q0725.rar" - File "themes\superstar\_www\����I�q\����I�q0727.rar" - File "themes\superstar\_www\����I�q\����I�q0728.rar" - File "themes\superstar\_www\����I�q\����-02.jpg" - File "themes\superstar\_www\����I�q\����-03.jpg" - File "themes\superstar\_www\����I�q\����-04.jpg" - File "themes\superstar\_www\����I�q\����-05.jpg" - File "themes\superstar\_www\����I�q\����-06.jpg" - File "themes\superstar\_www\����I�q\����-07.jpg" - File "themes\superstar\_www\����I�q\����-08.jpg" - File "themes\superstar\_www\����I�q\����-09.jpg" - File "themes\superstar\_www\����I�q\����-10.jpg" - File "themes\superstar\_www\����I�q\����-11.jpg" - File "themes\superstar\_www\����I�q\����-12.jpg" - File "themes\superstar\_www\����I�q\����-13.jpg" - File "themes\superstar\_www\����I�q\����-14.jpg" - File "themes\superstar\_www\����I�q\����-15.jpg" - File "themes\superstar\_www\����I�q\����_�u�@�ϰ� 1.jpg" - File "themes\superstar\_www\����I�q\����-02.png" - File "themes\superstar\_www\����I�q\����-03.png" - File "themes\superstar\_www\����I�q\����-04.png" - File "themes\superstar\_www\����I�q\����-05.png" - File "themes\superstar\_www\����I�q\����-06.png" - File "themes\superstar\_www\����I�q\����-07.png" - File "themes\superstar\_www\����I�q\����-08.png" - File "themes\superstar\_www\����I�q\����-09.png" - File "themes\superstar\_www\����I�q\����-10.png" - File "themes\superstar\_www\����I�q\����.ai" - File "themes\superstar\_www\����I�q\����_�u�@�ϰ� 1.png" - SetOutPath "$INSTDIR\themes\superstar" - File "themes\superstar\_www.zip" - File "themes\superstar\�U����s_�u�@�ϰ� 1.jpg" - File "themes\superstar\�D���_�w��.jpg" - File "themes\superstar\�D���_����.jpg" - SetOutPath "$INSTDIR\themes\superstar\��L����" - File "themes\superstar\��L����\image.jpg" - File "themes\superstar\��L����\test2.py" - File "themes\superstar\��L����\test3.py" - File "themes\superstar\��L����\��L_�u�f����.jpg" - File "themes\superstar\��L����\��L_�P�B�e��.jpg" - File "themes\superstar\��L����\��L_��������.jpg" - File "themes\superstar\��L����\��L_�ڪ��̷R.jpg" - File "themes\superstar\��L����\��L_����I�q.jpg" - File "themes\superstar\��L����\��L_�������.jpg" - SetOutPath "$INSTDIR\themes\superstar" - File "themes\superstar\����d��_�w��.jpg" - File "themes\superstar\����d��_����.jpg" - SetOutPath "$INSTDIR\themes\superstar\�ڪ��̷R" - File "themes\superstar\�ڪ��̷R\�ڪ��̷R-02.jpg" - File "themes\superstar\�ڪ��̷R\�ڪ��̷R-03.jpg" - File "themes\superstar\�ڪ��̷R\�ڪ��̷R-04.jpg" - File "themes\superstar\�ڪ��̷R\�ڪ��̷R-05.jpg" - File "themes\superstar\�ڪ��̷R\�ڪ��̷R-06.jpg" - File "themes\superstar\�ڪ��̷R\�ڪ��̷R-07.jpg" - File "themes\superstar\�ڪ��̷R\�ڪ��̷R-08.jpg" - File "themes\superstar\�ڪ��̷R\�ڪ��̷R-09.jpg" - File "themes\superstar\�ڪ��̷R\�ڪ��̷R-10.jpg" - File "themes\superstar\�ڪ��̷R\�ڪ��̷R-11.jpg" - File "themes\superstar\�ڪ��̷R\�ڪ��̷R-12.jpg" - File "themes\superstar\�ڪ��̷R\�ڪ��̷R-13.jpg" - File "themes\superstar\�ڪ��̷R\�ڪ��̷R-14.jpg" - File "themes\superstar\�ڪ��̷R\�ڪ��̷R-15.jpg" - File "themes\superstar\�ڪ��̷R\�ڪ��̷R_�u�@�ϰ� 1.jpg" - SetOutPath "$INSTDIR\themes\superstar" - File "themes\superstar\�s�q�ֳ�_�w��.jpg" - File "themes\superstar\�s�q�ֳ�_����.jpg" - SetOutPath "$INSTDIR\themes\superstar\�q�W\�`��" - File "themes\superstar\�q�W\�`��\test3.py" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-02.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-03.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-04.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-05.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-06.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-07.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-08.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-09.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-10.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-11.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-12.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-13.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-14.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-15.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-16.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-17.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-18.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-19.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-20.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-21.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-22.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-23.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-24.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-25.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-26.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-27.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-28.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-29.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-30.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-31.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-32.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-33.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-34.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-35.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-36.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-37.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-38.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-39.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-40.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-41.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-42.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-43.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-44.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-45.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-46.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-47.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-48.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-49.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-50.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-51.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-52.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-53.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-54.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-55.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-56.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-57.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-58.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-59.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-60.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-61.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-62.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-63.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-64.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-65.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-66.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-67.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-68.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-69.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-70.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-71.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-72.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-73.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-74.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-75.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-76.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-77.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)_�w��.png" - File "themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)_����.png" - SetOutPath "$INSTDIR\themes\superstar\�q�W\����" - File "themes\superstar\�q�W\����\Thumbs.db" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-01.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-02.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-03.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-04.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-05.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-06.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-07.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-08.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-09.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-10.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-11.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-12.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-13.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-14.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-15.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-16.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-17.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-18.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-19.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-20.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-21.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-22.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-23.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-24.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-25.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-26.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-27.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-28.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-29.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-30.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-31.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-32.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-33.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-34.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-35.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-36.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-37.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-38.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-39.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-40.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-41.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-42.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-43.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-44.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)_�w��.png" - File "themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)_����.png" - SetOutPath "$INSTDIR\themes\superstar\�q�W\�s��" - File "themes\superstar\�q�W\�s��\Thumbs.db" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-02.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-03.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-04.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-05.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-06.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-07.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-08.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-09.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-10.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-11.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-12.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-13.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-14.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-15.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-17.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-18.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-19.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-20.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-21.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-22.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-23.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-24.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-25.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-26.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-27.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-28.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-29.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-30.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)_�w��.png" - File "themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)_����.png" - SetOutPath "$INSTDIR\themes\superstar\�q�W\�^��" - File "themes\superstar\�q�W\�^��\image.png" - File "themes\superstar\�q�W\�^��\test3.py" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-03.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-04.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-05.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-06.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-07.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-08.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-09.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-10.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-11.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-12.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-13.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-14.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-15.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-16.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-17.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-18.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-19.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-20.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-21.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-22.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-23.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-24.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-25.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-26.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-27.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-28.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-29.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-30.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-31.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-32.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-33.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-34.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-35.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-36.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-37.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-38.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-39.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-40.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-41.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-42.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-43.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-44.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-45.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-46.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-47.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-48.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-49.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-50.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-51.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-52.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-53.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-54.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-55.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-56.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-57.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-58.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-59.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-60.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-61.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-62.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-63.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-64.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-65.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-66.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-67.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-68.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-69.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-70.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-71.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-72.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-73.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-74.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-75.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-76.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-77.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-78.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-79.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-80.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)_�q�P�d��-�`���d��_�w��.png" - File "themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)_�q�P�d��-�`���d��_����.png" - SetOutPath "$INSTDIR\themes\superstar" - File "themes\superstar\�q�W�d��_�w��.jpg" - File "themes\superstar\�q�W�d��_����.jpg" - SetOutPath "$INSTDIR\themes\superstar\�q�P\��g" - File "themes\superstar\�q�P\��g\3.�q�P�d��(��g����)_����.png" - File "themes\superstar\�q�P\��g\3.�q�P�d��(��g����)_�M�� �ƥ�.png" - File "themes\superstar\�q�P\��g\3.�q�P�d��(��g����)_�M��.png" - File "themes\superstar\�q�P\��g\3.�q�P�d��(��g����)_���� �ƥ�.png" - File "themes\superstar\�q�P\��g\3.�q�P�d��(��g����)_����.png" - File "themes\superstar\�q�P\��g\3.�q�P�d��(��g����)_���� �ƥ�.png" - File "themes\superstar\�q�P\��g\3.�q�P�d��(��g����)_����.png" - File "themes\superstar\�q�P\��g\image.png" - File "themes\superstar\�q�P\��g\test3.py" - SetOutPath "$INSTDIR\themes\superstar\�q�P\����" - File "themes\superstar\�q�P\����\image.png" - File "themes\superstar\�q�P\����\test3.py" - File "themes\superstar\�q�P\����\Thumbs.db" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-03.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-04.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-05.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-06.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-07.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-08.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-09.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-10.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-11.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-12.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-13.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-14.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-15.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-16.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-17.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-18.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-19.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-20.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-21.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-22.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-23.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-24.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-25.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-26.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-27.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-28.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-29.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-30.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-31.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-32.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-33.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-34.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-35.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-36.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-37.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-38.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-39.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-40.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-41.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-42.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-43.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-44.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-45.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-46.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-47.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-48.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-49.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-50.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-51.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-52.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-53.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-54.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-55.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-56.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-57.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-58.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-59.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-60.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)_�q�P�d��-�`���d��_�w��.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)_�q�P�d��-�`���d��_����.png" - SetOutPath "$INSTDIR\themes\superstar\�q�P\�`��" - File "themes\superstar\�q�P\�`��\image.png" - File "themes\superstar\�q�P\�`��\images.png" - File "themes\superstar\�q�P\�`��\test.py" - File "themes\superstar\�q�P\�`��\test3.py" - File "themes\superstar\�q�P\�`��\Thumbs.db" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-02.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-03.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-04.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-05.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-06.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-07.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-08.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-09.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-10.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-11.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-12.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-13.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-14.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-15.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-16.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-17.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-18.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-19.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-20.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-21.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-22.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-23.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-24.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-25.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-26.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-27.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-28.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-29.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-30.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-31.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-32.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-33.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-34.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-35.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-36.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-37.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-38.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-39.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-40.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-41.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-42.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-43.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-44.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-45.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-46.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-47.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-48.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-49.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-50.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-51.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-52.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-53.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-54.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-55.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-56.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-57.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-58.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-59.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-60.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-61.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-62.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-63.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-64.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-65.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-66.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-67.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-68.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-69.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-70.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-71.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-72.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-73.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-74.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-75.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-76.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-77.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-78.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)_�w��.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)_����.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)_�q�P�d��-�`���d��_�w��.png" - File "themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)_�q�P�d��-�`���d��_����.png" - SetOutPath "$INSTDIR\themes\superstar\�q�P\����" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-03.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-04.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-05.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-06.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-07.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-08.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-09.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-10.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-11.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-12.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-13.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-14.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-15.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-16.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-17.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-18.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-19.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-20.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-21.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-22.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-23.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-24.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-25.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-26.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)_�w��.png" - File "themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)_����.png" - SetOutPath "$INSTDIR\themes\superstar\�q�P\�^��" - File "themes\superstar\�q�P\�^��\image.png" - File "themes\superstar\�q�P\�^��\test3.py" - File "themes\superstar\�q�P\�^��\Thumbs.db" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-03.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-04.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-05.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-06.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-07.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-08.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-09.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-10.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-11.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-12.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-13.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-14.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-15.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-16.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-17.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-18.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-19.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-20.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-21.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-22.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-23.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-24.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-25.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-26.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-27.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-28.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-29.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-30.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-31.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-32.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-33.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-34.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-35.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-36.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-37.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-38.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-39.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-40.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-41.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-42.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-43.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-44.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-45.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-46.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-47.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-48.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-49.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-50.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-51.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-52.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-53.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-54.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-55.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-56.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-57.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-58.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-59.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-60.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-61.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-62.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-63.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-64.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-65.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-66.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-67.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-68.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-69.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-70.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-71.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-72.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-73.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-74.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-75.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-76.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-77.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-78.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-79.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-80.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)_�q�P�d��-�`���d��_�w��.png" - File "themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)_�q�P�d��-�`���d��_����.png" - SetOutPath "$INSTDIR\themes\superstar" - File "themes\superstar\�q�P�d��_�w��.jpg" - File "themes\superstar\�q�P�d��_����.jpg" - File "themes\superstar\�����Ʀ�_�w��.jpg" - File "themes\superstar\�����Ʀ�_����.jpg" - File "themes\superstar\�O������_1.jpg" - File "themes\superstar\�O������_23.jpg" - File "themes\superstar\�O������_45.jpg" - SetOutPath "$INSTDIR\themes\superstar\�y�O\��y" - File "themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-02.png" - File "themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-03.png" - File "themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-04.png" - File "themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-05.png" - File "themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-06.png" - File "themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-07.png" - File "themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-08.png" - File "themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-09.png" - File "themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-10.png" - File "themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-12.png" - File "themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-13.png" - File "themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-14.png" - File "themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-15.png" - File "themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-16.png" - File "themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-17.png" - File "themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-18.png" - File "themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-19.png" - File "themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-20.png" - File "themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-21.png" - File "themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-22.png" - File "themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-23.png" - File "themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-24.png" - File "themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-25.png" - File "themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)_�w��.png" - File "themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)_����.png" - SetOutPath "$INSTDIR\themes\superstar\�y�O\�^�y" - File "themes\superstar\�y�O\�^�y\Thumbs.db" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-03.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-04.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-05.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-06.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-07.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-08.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-09.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-10.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-11.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-12.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-13.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-14.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-15.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-16.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-17.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-18.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-19.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-20.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-21.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-22.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-23.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-24.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-25.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-26.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-27.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-28.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-29.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-30.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-31.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-32.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-33.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-34.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-35.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-36.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-37.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-38.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-39.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-40.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-41.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-42.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-43.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-44.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-45.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-46.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-47.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-48.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-49.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-50.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-51.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-52.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-53.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-54.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-55.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-56.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-57.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-58.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-59.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-60.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-61.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-62.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-63.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-64.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-65.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-66.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-67.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-68.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-69.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-70.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-71.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-72.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-73.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-74.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-75.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-76.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)_�q�P�d��-�`���d��_�w��.png" - File "themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)_�q�P�d��-�`���d��_����.png" - SetOutPath "$INSTDIR\themes\superstar" - File "themes\superstar\�y�O�d��_�w��.jpg" - File "themes\superstar\�y�O�d��_����.jpg" - File "themes\superstar\��椺����_�O������.jpg" - File "themes\superstar\���O�d��_�w��.jpg" - File "themes\superstar\���O�d��_����.jpg" - SetOutPath "$INSTDIR\themes\superstar\�I������" - File "themes\superstar\�I������\image.png" - File "themes\superstar\�I������\output.png" - File "themes\superstar\�I������\test.py" - File "themes\superstar\�I������\test2.py" - File "themes\superstar\�I������\test3.py" - File "themes\superstar\�I������\test4.py" - File "themes\superstar\�I������\�I������_�ڪ��̷R.png" - File "themes\superstar\�I������\�I������_����.png" - File "themes\superstar\�I������\�I������_�����s.png" - File "themes\superstar\�I������\�I������_���~�M��.png" - File "themes\superstar\�I������\�I������_�L���s.png" - File "themes\superstar\�I������\�I������_����.png" - File "themes\superstar\�I������\�I������_�I�q.png" - SetOutPath "$INSTDIR" - File "theme_description.txt" - SetOutPath "$INSTDIR\txt" - File "txt\ip.txt" - SetOutPath "$INSTDIR" - File "Vlc.DotNet.Core.dll" - File "Vlc.DotNet.Core.Interops.dll" - File "Vlc.DotNet.Forms.dll" - File "VOD_�e�ȵe��.jpg" - File "zs.m4a" - File "zxing.dll" - File "�q�P.xlsx" -SectionEnd - -Section -AdditionalIcons - CreateShortCut "$SMPROGRAMS\DualScreenPlayStation\Uninstall.lnk" "$INSTDIR\uninst.exe" -SectionEnd - -Section -Post - WriteUninstaller "$INSTDIR\uninst.exe" - WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "" "$INSTDIR\DualScreenKTVPlayStation.exe" - WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayName" "$(^Name)" - WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "UninstallString" "$INSTDIR\uninst.exe" - WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayIcon" "$INSTDIR\DualScreenKTVPlayStation.exe" - WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayVersion" "${PRODUCT_VERSION}" - WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "Publisher" "${PRODUCT_PUBLISHER}" -SectionEnd - - -Function un.onUninstSuccess - HideWindow - MessageBox MB_ICONINFORMATION|MB_OK "$(^Name) �w���\�a�q�A���q�������C" -FunctionEnd - -Function un.onInit -!insertmacro MUI_UNGETLANGUAGE - MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "�A�T�w�n�������� $(^Name) �A��ΩҦ�������H" IDYES +2 - Abort -FunctionEnd - -Section Uninstall - Delete "$INSTDIR\uninst.exe" - Delete "$INSTDIR\�q�P.xlsx" - Delete "$INSTDIR\zxing.dll" - Delete "$INSTDIR\zs.m4a" - Delete "$INSTDIR\VOD_�e�ȵe��.jpg" - Delete "$INSTDIR\Vlc.DotNet.Forms.dll" - Delete "$INSTDIR\Vlc.DotNet.Core.Interops.dll" - Delete "$INSTDIR\Vlc.DotNet.Core.dll" - Delete "$INSTDIR\txt\ip.txt" - Delete "$INSTDIR\theme_description.txt" - Delete "$INSTDIR\themes\superstar\�I������\�I������_�I�q.png" - Delete "$INSTDIR\themes\superstar\�I������\�I������_����.png" - Delete "$INSTDIR\themes\superstar\�I������\�I������_�L���s.png" - Delete "$INSTDIR\themes\superstar\�I������\�I������_���~�M��.png" - Delete "$INSTDIR\themes\superstar\�I������\�I������_�����s.png" - Delete "$INSTDIR\themes\superstar\�I������\�I������_����.png" - Delete "$INSTDIR\themes\superstar\�I������\�I������_�ڪ��̷R.png" - Delete "$INSTDIR\themes\superstar\�I������\test4.py" - Delete "$INSTDIR\themes\superstar\�I������\test3.py" - Delete "$INSTDIR\themes\superstar\�I������\test2.py" - Delete "$INSTDIR\themes\superstar\�I������\test.py" - Delete "$INSTDIR\themes\superstar\�I������\output.png" - Delete "$INSTDIR\themes\superstar\�I������\image.png" - Delete "$INSTDIR\themes\superstar\���O�d��_����.jpg" - Delete "$INSTDIR\themes\superstar\���O�d��_�w��.jpg" - Delete "$INSTDIR\themes\superstar\��椺����_�O������.jpg" - Delete "$INSTDIR\themes\superstar\�y�O�d��_����.jpg" - Delete "$INSTDIR\themes\superstar\�y�O�d��_�w��.jpg" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)_�q�P�d��-�`���d��_����.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)_�q�P�d��-�`���d��_�w��.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-76.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-75.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-74.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-73.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-72.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-71.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-70.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-69.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-68.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-67.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-66.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-65.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-64.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-63.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-62.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-61.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-60.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-59.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-58.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-57.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-56.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-55.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-54.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-53.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-52.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-51.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-50.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-49.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-48.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-47.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-46.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-45.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-44.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-43.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-42.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-41.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-40.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-39.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-38.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-37.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-36.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-35.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-34.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-33.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-32.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-31.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-30.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-29.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-28.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-27.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-26.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-25.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-24.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-23.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-22.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-21.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-20.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-19.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-18.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-17.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-16.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-15.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-14.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-13.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-12.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-11.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-10.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-09.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-08.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-07.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-06.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-05.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-04.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\VOD_�y�O�d��_�^�y(����)-03.png" - Delete "$INSTDIR\themes\superstar\�y�O\�^�y\Thumbs.db" - Delete "$INSTDIR\themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)_����.png" - Delete "$INSTDIR\themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)_�w��.png" - Delete "$INSTDIR\themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-25.png" - Delete "$INSTDIR\themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-24.png" - Delete "$INSTDIR\themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-23.png" - Delete "$INSTDIR\themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-22.png" - Delete "$INSTDIR\themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-21.png" - Delete "$INSTDIR\themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-20.png" - Delete "$INSTDIR\themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-19.png" - Delete "$INSTDIR\themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-18.png" - Delete "$INSTDIR\themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-17.png" - Delete "$INSTDIR\themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-16.png" - Delete "$INSTDIR\themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-15.png" - Delete "$INSTDIR\themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-14.png" - Delete "$INSTDIR\themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-13.png" - Delete "$INSTDIR\themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-12.png" - Delete "$INSTDIR\themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-10.png" - Delete "$INSTDIR\themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-09.png" - Delete "$INSTDIR\themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-08.png" - Delete "$INSTDIR\themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-07.png" - Delete "$INSTDIR\themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-06.png" - Delete "$INSTDIR\themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-05.png" - Delete "$INSTDIR\themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-04.png" - Delete "$INSTDIR\themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-03.png" - Delete "$INSTDIR\themes\superstar\�y�O\��y\VOD_�y�O�d��_��y(����)-02.png" - Delete "$INSTDIR\themes\superstar\�O������_45.jpg" - Delete "$INSTDIR\themes\superstar\�O������_23.jpg" - Delete "$INSTDIR\themes\superstar\�O������_1.jpg" - Delete "$INSTDIR\themes\superstar\�����Ʀ�_����.jpg" - Delete "$INSTDIR\themes\superstar\�����Ʀ�_�w��.jpg" - Delete "$INSTDIR\themes\superstar\�q�P�d��_����.jpg" - Delete "$INSTDIR\themes\superstar\�q�P�d��_�w��.jpg" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)_�q�P�d��-�`���d��_����.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)_�q�P�d��-�`���d��_�w��.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-80.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-79.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-78.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-77.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-76.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-75.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-74.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-73.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-72.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-71.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-70.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-69.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-68.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-67.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-66.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-65.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-64.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-63.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-62.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-61.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-60.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-59.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-58.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-57.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-56.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-55.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-54.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-53.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-52.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-51.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-50.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-49.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-48.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-47.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-46.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-45.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-44.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-43.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-42.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-41.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-40.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-39.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-38.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-37.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-36.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-35.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-34.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-33.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-32.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-31.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-30.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-29.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-28.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-27.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-26.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-25.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-24.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-23.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-22.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-21.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-20.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-19.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-18.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-17.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-16.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-15.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-14.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-13.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-12.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-11.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-10.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-09.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-08.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-07.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-06.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-05.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-04.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\VOD_�q�P�d��_�^��d��(����)-03.png" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\Thumbs.db" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\test3.py" - Delete "$INSTDIR\themes\superstar\�q�P\�^��\image.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)_����.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)_�w��.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-26.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-25.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-24.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-23.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-22.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-21.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-20.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-19.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-18.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-17.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-16.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-15.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-14.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-13.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-12.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-11.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-10.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-09.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-08.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-07.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-06.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-05.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-04.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-03.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)_�q�P�d��-�`���d��_����.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)_�q�P�d��-�`���d��_�w��.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)_����.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)_�w��.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-78.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-77.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-76.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-75.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-74.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-73.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-72.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-71.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-70.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-69.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-68.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-67.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-66.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-65.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-64.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-63.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-62.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-61.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-60.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-59.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-58.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-57.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-56.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-55.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-54.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-53.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-52.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-51.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-50.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-49.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-48.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-47.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-46.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-45.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-44.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-43.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-42.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-41.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-40.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-39.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-38.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-37.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-36.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-35.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-34.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-33.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-32.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-31.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-30.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-29.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-28.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-27.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-26.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-25.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-24.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-23.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-22.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-21.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-20.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-19.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-18.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-17.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-16.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-15.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-14.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-13.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-12.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-11.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-10.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-09.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-08.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-07.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-06.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-05.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-04.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-03.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\VOD_�q�P�d��_�`���d��(����)-02.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\Thumbs.db" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\test3.py" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\test.py" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\images.png" - Delete "$INSTDIR\themes\superstar\�q�P\�`��\image.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)_�q�P�d��-�`���d��_����.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)_�q�P�d��-�`���d��_�w��.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-60.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-59.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-58.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-57.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-56.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-55.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-54.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-53.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-52.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-51.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-50.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-49.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-48.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-47.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-46.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-45.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-44.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-43.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-42.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-41.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-40.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-39.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-38.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-37.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-36.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-35.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-34.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-33.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-32.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-31.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-30.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-29.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-28.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-27.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-26.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-25.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-24.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-23.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-22.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-21.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-20.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-19.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-18.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-17.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-16.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-15.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-14.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-13.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-12.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-11.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-10.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-09.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-08.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-07.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-06.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-05.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-04.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\VOD_�q�P�d��_�����d��(����)-03.png" - Delete "$INSTDIR\themes\superstar\�q�P\����\Thumbs.db" - Delete "$INSTDIR\themes\superstar\�q�P\����\test3.py" - Delete "$INSTDIR\themes\superstar\�q�P\����\image.png" - Delete "$INSTDIR\themes\superstar\�q�P\��g\test3.py" - Delete "$INSTDIR\themes\superstar\�q�P\��g\image.png" - Delete "$INSTDIR\themes\superstar\�q�P\��g\3.�q�P�d��(��g����)_����.png" - Delete "$INSTDIR\themes\superstar\�q�P\��g\3.�q�P�d��(��g����)_���� �ƥ�.png" - Delete "$INSTDIR\themes\superstar\�q�P\��g\3.�q�P�d��(��g����)_����.png" - Delete "$INSTDIR\themes\superstar\�q�P\��g\3.�q�P�d��(��g����)_���� �ƥ�.png" - Delete "$INSTDIR\themes\superstar\�q�P\��g\3.�q�P�d��(��g����)_�M��.png" - Delete "$INSTDIR\themes\superstar\�q�P\��g\3.�q�P�d��(��g����)_�M�� �ƥ�.png" - Delete "$INSTDIR\themes\superstar\�q�P\��g\3.�q�P�d��(��g����)_����.png" - Delete "$INSTDIR\themes\superstar\�q�W�d��_����.jpg" - Delete "$INSTDIR\themes\superstar\�q�W�d��_�w��.jpg" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)_�q�P�d��-�`���d��_����.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)_�q�P�d��-�`���d��_�w��.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-80.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-79.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-78.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-77.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-76.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-75.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-74.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-73.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-72.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-71.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-70.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-69.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-68.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-67.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-66.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-65.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-64.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-63.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-62.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-61.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-60.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-59.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-58.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-57.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-56.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-55.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-54.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-53.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-52.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-51.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-50.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-49.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-48.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-47.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-46.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-45.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-44.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-43.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-42.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-41.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-40.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-39.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-38.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-37.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-36.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-35.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-34.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-33.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-32.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-31.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-30.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-29.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-28.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-27.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-26.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-25.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-24.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-23.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-22.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-21.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-20.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-19.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-18.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-17.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-16.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-15.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-14.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-13.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-12.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-11.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-10.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-09.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-08.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-07.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-06.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-05.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-04.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\VOD_�q�W�d��_�^��d��(����)-03.png" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\test3.py" - Delete "$INSTDIR\themes\superstar\�q�W\�^��\image.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)_����.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)_�w��.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-30.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-29.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-28.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-27.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-26.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-25.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-24.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-23.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-22.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-21.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-20.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-19.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-18.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-17.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-15.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-14.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-13.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-12.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-11.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-10.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-09.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-08.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-07.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-06.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-05.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-04.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-03.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\VOD_�q�W�d��_�s���d��(����)-02.png" - Delete "$INSTDIR\themes\superstar\�q�W\�s��\Thumbs.db" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)_����.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)_�w��.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-44.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-43.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-42.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-41.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-40.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-39.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-38.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-37.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-36.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-35.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-34.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-33.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-32.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-31.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-30.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-29.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-28.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-27.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-26.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-25.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-24.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-23.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-22.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-21.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-20.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-19.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-18.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-17.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-16.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-15.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-14.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-13.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-12.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-11.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-10.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-09.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-08.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-07.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-06.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-05.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-04.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-03.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-02.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\VOD_�q�W�d��_�����d��(����)-01.png" - Delete "$INSTDIR\themes\superstar\�q�W\����\Thumbs.db" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)_����.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)_�w��.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-77.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-76.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-75.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-74.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-73.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-72.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-71.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-70.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-69.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-68.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-67.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-66.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-65.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-64.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-63.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-62.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-61.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-60.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-59.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-58.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-57.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-56.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-55.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-54.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-53.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-52.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-51.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-50.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-49.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-48.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-47.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-46.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-45.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-44.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-43.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-42.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-41.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-40.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-39.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-38.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-37.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-36.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-35.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-34.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-33.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-32.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-31.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-30.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-29.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-28.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-27.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-26.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-25.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-24.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-23.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-22.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-21.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-20.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-19.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-18.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-17.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-16.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-15.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-14.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-13.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-12.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-11.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-10.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-09.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-08.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-07.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-06.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-05.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-04.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-03.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\VOD_�q�W�d��_�`���d��(����)-02.png" - Delete "$INSTDIR\themes\superstar\�q�W\�`��\test3.py" - Delete "$INSTDIR\themes\superstar\�s�q�ֳ�_����.jpg" - Delete "$INSTDIR\themes\superstar\�s�q�ֳ�_�w��.jpg" - Delete "$INSTDIR\themes\superstar\�ڪ��̷R\�ڪ��̷R_�u�@�ϰ� 1.jpg" - Delete "$INSTDIR\themes\superstar\�ڪ��̷R\�ڪ��̷R-15.jpg" - Delete "$INSTDIR\themes\superstar\�ڪ��̷R\�ڪ��̷R-14.jpg" - Delete "$INSTDIR\themes\superstar\�ڪ��̷R\�ڪ��̷R-13.jpg" - Delete "$INSTDIR\themes\superstar\�ڪ��̷R\�ڪ��̷R-12.jpg" - Delete "$INSTDIR\themes\superstar\�ڪ��̷R\�ڪ��̷R-11.jpg" - Delete "$INSTDIR\themes\superstar\�ڪ��̷R\�ڪ��̷R-10.jpg" - Delete "$INSTDIR\themes\superstar\�ڪ��̷R\�ڪ��̷R-09.jpg" - Delete "$INSTDIR\themes\superstar\�ڪ��̷R\�ڪ��̷R-08.jpg" - Delete "$INSTDIR\themes\superstar\�ڪ��̷R\�ڪ��̷R-07.jpg" - Delete "$INSTDIR\themes\superstar\�ڪ��̷R\�ڪ��̷R-06.jpg" - Delete "$INSTDIR\themes\superstar\�ڪ��̷R\�ڪ��̷R-05.jpg" - Delete "$INSTDIR\themes\superstar\�ڪ��̷R\�ڪ��̷R-04.jpg" - Delete "$INSTDIR\themes\superstar\�ڪ��̷R\�ڪ��̷R-03.jpg" - Delete "$INSTDIR\themes\superstar\�ڪ��̷R\�ڪ��̷R-02.jpg" - Delete "$INSTDIR\themes\superstar\����d��_����.jpg" - Delete "$INSTDIR\themes\superstar\����d��_�w��.jpg" - Delete "$INSTDIR\themes\superstar\��L����\��L_�������.jpg" - Delete "$INSTDIR\themes\superstar\��L����\��L_����I�q.jpg" - Delete "$INSTDIR\themes\superstar\��L����\��L_�ڪ��̷R.jpg" - Delete "$INSTDIR\themes\superstar\��L����\��L_��������.jpg" - Delete "$INSTDIR\themes\superstar\��L����\��L_�P�B�e��.jpg" - Delete "$INSTDIR\themes\superstar\��L����\��L_�u�f����.jpg" - Delete "$INSTDIR\themes\superstar\��L����\test3.py" - Delete "$INSTDIR\themes\superstar\��L����\test2.py" - Delete "$INSTDIR\themes\superstar\��L����\image.jpg" - Delete "$INSTDIR\themes\superstar\�D���_����.jpg" - Delete "$INSTDIR\themes\superstar\�D���_�w��.jpg" - Delete "$INSTDIR\themes\superstar\�U����s_�u�@�ϰ� 1.jpg" - Delete "$INSTDIR\themes\superstar\_www.zip" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����_�u�@�ϰ� 1.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����.ai" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����-10.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����-09.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����-08.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����-07.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����-06.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����-05.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����-04.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����-03.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����-02.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����_�u�@�ϰ� 1.jpg" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����-15.jpg" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����-14.jpg" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����-13.jpg" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����-12.jpg" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����-11.jpg" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����-10.jpg" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����-09.jpg" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����-08.jpg" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����-07.jpg" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����-06.jpg" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����-05.jpg" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����-04.jpg" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����-03.jpg" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����-02.jpg" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����I�q0728.rar" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����I�q0727.rar" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����I�q0725.rar" - Delete "$INSTDIR\themes\superstar\_www\����I�q\����I�q(0728�ק�).rar" - Delete "$INSTDIR\themes\superstar\_www\����I�q\LOGO_800x400px.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\LOGO_721x211px.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\LOGO0728_�u�@�ϰ� 1.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\LOGO0728-03.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\LOGO0728-02.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\LOGO-03.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\BG-3-04.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\BG-3-03.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\BG-3-02.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\BG-3-01.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\BANNER_�u�@�ϰ� 1.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\BANNER-15.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\BANNER-14.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\BANNER-13.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\BANNER-12.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\BANNER-11.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\BANNER-10.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\BANNER-09.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\BANNER-08.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\BANNER-07.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\BANNER-06.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\BANNER-05.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\BANNER-04.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\BANNER-03.png" - Delete "$INSTDIR\themes\superstar\_www\����I�q\BANNER-02.png" - Delete "$INSTDIR\themes\superstar\_www\windows.html" - Delete "$INSTDIR\themes\superstar\_www\top-ranking.html" - Delete "$INSTDIR\themes\superstar\_www\superstar-pic\5-9.png" - Delete "$INSTDIR\themes\superstar\_www\superstar-pic\5-8.png" - Delete "$INSTDIR\themes\superstar\_www\superstar-pic\5-7.png" - Delete "$INSTDIR\themes\superstar\_www\superstar-pic\5-6.png" - Delete "$INSTDIR\themes\superstar\_www\superstar-pic\5-5.png" - Delete "$INSTDIR\themes\superstar\_www\superstar-pic\5-4.png" - Delete "$INSTDIR\themes\superstar\_www\superstar-pic\5-3.png" - Delete "$INSTDIR\themes\superstar\_www\superstar-pic\5-2.png" - Delete "$INSTDIR\themes\superstar\_www\superstar-pic\5-12.png" - Delete "$INSTDIR\themes\superstar\_www\superstar-pic\5-11.png" - Delete "$INSTDIR\themes\superstar\_www\superstar-pic\5-10.png" - Delete "$INSTDIR\themes\superstar\_www\superstar-pic\5-1.png" - Delete "$INSTDIR\themes\superstar\_www\superstar-pic\2-2.png" - Delete "$INSTDIR\themes\superstar\_www\superstar-pic\2-1.png" - Delete "$INSTDIR\themes\superstar\_www\superstar-pic\1-2.png" - Delete "$INSTDIR\themes\superstar\_www\superstar-pic\1-1.png" - Delete "$INSTDIR\themes\superstar\_www\sound-control.html" - Delete "$INSTDIR\themes\superstar\_www\song-order.html" - Delete "$INSTDIR\themes\superstar\_www\social-media.html" - Delete "$INSTDIR\themes\superstar\_www\search-song.html" - Delete "$INSTDIR\themes\superstar\_www\search-singer.html" - Delete "$INSTDIR\themes\superstar\_www\register.html" - Delete "$INSTDIR\themes\superstar\_www\profile-settings.html" - Delete "$INSTDIR\themes\superstar\_www\new-songs.html" - Delete "$INSTDIR\themes\superstar\_www\my-favorite.html" - Delete "$INSTDIR\themes\superstar\_www\mood-stickers.html" - Delete "$INSTDIR\themes\superstar\_www\love-message.html" - Delete "$INSTDIR\themes\superstar\_www\fonts\glyphicons-halflings-regular.woff2" - Delete "$INSTDIR\themes\superstar\_www\fonts\glyphicons-halflings-regular.woff" - Delete "$INSTDIR\themes\superstar\_www\fonts\glyphicons-halflings-regular.ttf" - Delete "$INSTDIR\themes\superstar\_www\fonts\glyphicons-halflings-regular.svg" - Delete "$INSTDIR\themes\superstar\_www\fonts\glyphicons-halflings-regular.eot" - Delete "$INSTDIR\themes\superstar\_www\css\index.css" - Delete "$INSTDIR\themes\superstar\_www\css\bootstrap.min.css" - Delete "$INSTDIR\themes\superstar\_www\css\bootstrap-theme.min.css" - Delete "$INSTDIR\themes\superstar\_www\clicked-song.html" - Delete "$INSTDIR\themes\superstar\VOD_�e�ȵe��.jpg" - Delete "$INSTDIR\themes\superstar\toggle_light.jpg" - Delete "$INSTDIR\themes\superstar\test6.py" - Delete "$INSTDIR\themes\superstar\test5.py" - Delete "$INSTDIR\themes\superstar\test4.py" - Delete "$INSTDIR\themes\superstar\test3.py" - Delete "$INSTDIR\themes\superstar\test2.py" - Delete "$INSTDIR\themes\superstar\test.py" - Delete "$INSTDIR\themes\superstar\images.jpg" - Delete "$INSTDIR\themes\superstar\image.jpg" - Delete "$INSTDIR\themes\superstar\ICON�U��\�U��ICON_�u�@�ϰ� 1.png" - Delete "$INSTDIR\themes\superstar\ICON�U��\�U��ICON-23.png" - Delete "$INSTDIR\themes\superstar\ICON�U��\�U��ICON-22.png" - Delete "$INSTDIR\themes\superstar\ICON�U��\�U��ICON-21.png" - Delete "$INSTDIR\themes\superstar\ICON�U��\�U��ICON-20.png" - Delete "$INSTDIR\themes\superstar\ICON�U��\�U��ICON-19.png" - Delete "$INSTDIR\themes\superstar\ICON�U��\�U��ICON-18.png" - Delete "$INSTDIR\themes\superstar\ICON�U��\�U��ICON-17.png" - Delete "$INSTDIR\themes\superstar\ICON�U��\�U��ICON-16.png" - Delete "$INSTDIR\themes\superstar\ICON�U��\�U��ICON-15.png" - Delete "$INSTDIR\themes\superstar\ICON�U��\�U��ICON-14.png" - Delete "$INSTDIR\themes\superstar\ICON�U��\�U��ICON-13.png" - Delete "$INSTDIR\themes\superstar\ICON�U��\�U��ICON-12.png" - Delete "$INSTDIR\themes\superstar\ICON�U��\�U��ICON-11.png" - Delete "$INSTDIR\themes\superstar\ICON�U��\�U��ICON-10.png" - Delete "$INSTDIR\themes\superstar\ICON�U��\�U��ICON-09.png" - Delete "$INSTDIR\themes\superstar\ICON�U��\�U��ICON-08.png" - Delete "$INSTDIR\themes\superstar\ICON�U��\�U��ICON-07.png" - Delete "$INSTDIR\themes\superstar\ICON�U��\�U��ICON-06.png" - Delete "$INSTDIR\themes\superstar\ICON�U��\�U��ICON-05.png" - Delete "$INSTDIR\themes\superstar\ICON�U��\�U��ICON-04.png" - Delete "$INSTDIR\themes\superstar\ICON�U��\�U��ICON-03.png" - Delete "$INSTDIR\themes\superstar\ICON�U��\�U��ICON-02.png" - Delete "$INSTDIR\themes\superstar\ICON�W��\�W��ICON_���O�d��-19.png" - Delete "$INSTDIR\themes\superstar\ICON�W��\�W��ICON_���O�d��-07.png" - Delete "$INSTDIR\themes\superstar\ICON�W��\�W��ICON_�y�O�d��-17.png" - Delete "$INSTDIR\themes\superstar\ICON�W��\�W��ICON_�y�O�d��-05.png" - Delete "$INSTDIR\themes\superstar\ICON�W��\�W��ICON_�������-24.png" - Delete "$INSTDIR\themes\superstar\ICON�W��\�W��ICON_�������-12.png" - Delete "$INSTDIR\themes\superstar\ICON�W��\�W��ICON_�����Ʀ�-14.png" - Delete "$INSTDIR\themes\superstar\ICON�W��\�W��ICON_�����Ʀ�-02.png" - Delete "$INSTDIR\themes\superstar\ICON�W��\�W��ICON_�q�P�d��-15.png" - Delete "$INSTDIR\themes\superstar\ICON�W��\�W��ICON_�q�P�d��-03.png" - Delete "$INSTDIR\themes\superstar\ICON�W��\�W��ICON_�q�W�d��-16.png" - Delete "$INSTDIR\themes\superstar\ICON�W��\�W��ICON_�q�W�d��-04.png" - Delete "$INSTDIR\themes\superstar\ICON�W��\�W��ICON_�A �� �a-20.png" - Delete "$INSTDIR\themes\superstar\ICON�W��\�W��ICON_�A �� �a-08.png" - Delete "$INSTDIR\themes\superstar\ICON�W��\�W��ICON_�s�q�ֳ�X.png" - Delete "$INSTDIR\themes\superstar\ICON�W��\�W��ICON_�s�q�ֳ�O.png" - Delete "$INSTDIR\themes\superstar\ICON�W��\�W��ICON_����I�q.png" - Delete "$INSTDIR\themes\superstar\ICON�W��\�W��ICON_�ڪ��̷R-22.png" - Delete "$INSTDIR\themes\superstar\ICON�W��\�W��ICON_�ڪ��̷R-10.png" - Delete "$INSTDIR\themes\superstar\ICON�W��\�W��ICON_�w�I�q��-21.png" - Delete "$INSTDIR\themes\superstar\ICON�W��\�W��ICON_�w�I�q��-09.png" - Delete "$INSTDIR\themes\superstar\ICON�W��\�W��ICON_�X�۬d��-18.png" - Delete "$INSTDIR\themes\superstar\ICON�W��\�W��ICON_�X�۬d��-06.png" - Delete "$INSTDIR\themes\superstar\ICON�W��\�W��ICON_�u�f����-23.png" - Delete "$INSTDIR\themes\superstar\ICON�W��\�W��ICON_�u�f����-11.png" - Delete "$INSTDIR\themes\superstar\cropped_qrcode.jpg" - Delete "$INSTDIR\themes\superstar\7-1.png" - Delete "$INSTDIR\themes\superstar\7-1.mouseover.png" - Delete "$INSTDIR\themes\superstar\7-1.mousedown.png" - Delete "$INSTDIR\themes\superstar\7-1.html" - Delete "$INSTDIR\themes\superstar\7-1-1.png" - Delete "$INSTDIR\themes\superstar\7-1-1.mouseover.png" - Delete "$INSTDIR\themes\superstar\7-1-1.mousedown.png" - Delete "$INSTDIR\themes\superstar\7-1-1.html" - Delete "$INSTDIR\themes\superstar\6-1.png" - Delete "$INSTDIR\themes\superstar\6-1.mouseover.png" - Delete "$INSTDIR\themes\superstar\6-1.mousedown.png" - Delete "$INSTDIR\themes\superstar\6-1.html" - Delete "$INSTDIR\themes\superstar\555027.jpg" - Delete "$INSTDIR\themes\superstar\555024.jpg" - Delete "$INSTDIR\themes\superstar\555023.jpg" - Delete "$INSTDIR\themes\superstar\555022.jpg" - Delete "$INSTDIR\themes\superstar\555021.jpg" - Delete "$INSTDIR\themes\superstar\555020.jpg" - Delete "$INSTDIR\themes\superstar\555019.jpg" - Delete "$INSTDIR\themes\superstar\555018.jpg" - Delete "$INSTDIR\themes\superstar\555017.jpg" - Delete "$INSTDIR\themes\superstar\555016.jpg" - Delete "$INSTDIR\themes\superstar\555015.jpg" - Delete "$INSTDIR\themes\superstar\555014.jpg" - Delete "$INSTDIR\themes\superstar\555013.jpg" - Delete "$INSTDIR\themes\superstar\555012.jpg" - Delete "$INSTDIR\themes\superstar\555011.jpg" - Delete "$INSTDIR\themes\superstar\555010.jpg" - Delete "$INSTDIR\themes\superstar\555009.jpg" - Delete "$INSTDIR\themes\superstar\555008.jpg" - Delete "$INSTDIR\themes\superstar\4.�q�W�d��_����.jpg" - Delete "$INSTDIR\themes\superstar\4.�q�W�d��_�w��.jpg" - Delete "$INSTDIR\themes\superstar\3.�q�P�d��_����.jpg" - Delete "$INSTDIR\themes\superstar\3.�q�P�d��_�w��.jpg" - Delete "$INSTDIR\System.Runtime.dll" - Delete "$INSTDIR\System.Data.SQLite.dll" - Delete "$INSTDIR\Superstar_log.ldf" - Delete "$INSTDIR\Superstar.mdf" - Delete "$INSTDIR\superstar-pic\5-9.png" - Delete "$INSTDIR\superstar-pic\5-8.png" - Delete "$INSTDIR\superstar-pic\5-7.png" - Delete "$INSTDIR\superstar-pic\5-6.png" - Delete "$INSTDIR\superstar-pic\5-5.png" - Delete "$INSTDIR\superstar-pic\5-4.png" - Delete "$INSTDIR\superstar-pic\5-3.png" - Delete "$INSTDIR\superstar-pic\5-2.png" - Delete "$INSTDIR\superstar-pic\5-12.png" - Delete "$INSTDIR\superstar-pic\5-11.png" - Delete "$INSTDIR\superstar-pic\5-10.png" - Delete "$INSTDIR\superstar-pic\5-1.png" - Delete "$INSTDIR\superstar-pic\2-2.png" - Delete "$INSTDIR\superstar-pic\2-1.png" - Delete "$INSTDIR\superstar-pic\1-2.png" - Delete "$INSTDIR\superstar-pic\1-1.png" - Delete "$INSTDIR\SQLite.Interop.dll" - Delete "$INSTDIR\sounds\zs.mp3" - Delete "$INSTDIR\sounds\y1640.m4a" - Delete "$INSTDIR\sounds\xs.mp3" - Delete "$INSTDIR\sounds\xm2401.m4a" - Delete "$INSTDIR\sounds\start.wav" - Delete "$INSTDIR\sounds\sc1.mp3" - Delete "$INSTDIR\sounds\sc.mp3" - Delete "$INSTDIR\sounds\press.wav" - Delete "$INSTDIR\sounds\kc1.mp3" - Delete "$INSTDIR\sounds\kc.mp3" - Delete "$INSTDIR\sounds\jc1.mp3" - Delete "$INSTDIR\sounds\jc.mp3" - Delete "$INSTDIR\sounds\hh.mp3" - Delete "$INSTDIR\sounds\gd.mp3" - Delete "$INSTDIR\sounds\cx.mp3" - Delete "$INSTDIR\sounds\car-changing-gears-sound-188962.mp3" - Delete "$INSTDIR\sounds\bgs.mp3" - Delete "$INSTDIR\sounds\audio4.wav" - Delete "$INSTDIR\sounds\audio3.wav" - Delete "$INSTDIR\sounds\audio2.wav" - Delete "$INSTDIR\sounds\audio1.wav" - Delete "$INSTDIR\sounds\1857.mp3" - Delete "$INSTDIR\sounds\13472_Audio Trimmer.mp3" - Delete "$INSTDIR\SongLimitsSettings.txt" - Delete "$INSTDIR\secondary_graph.grf" - Delete "$INSTDIR\primary_graph.grf" - Delete "$INSTDIR\Newtonsoft.Json.dll" - Delete "$INSTDIR\news\Pubpicc13.jpg" - Delete "$INSTDIR\news\Pubpicc12.jpg" - Delete "$INSTDIR\news\Pubpicc11.jpg" - Delete "$INSTDIR\news\Pubpicc10.jpg" - Delete "$INSTDIR\news\Pubpicc09.jpg" - Delete "$INSTDIR\news\Pubpicc08.jpg" - Delete "$INSTDIR\news\Pubpicc07.jpg" - Delete "$INSTDIR\news\Pubpicc06.jpg" - Delete "$INSTDIR\news\Pubpicc05.jpg" - Delete "$INSTDIR\news\Pubpicc04.jpg" - Delete "$INSTDIR\news\Pubpicc03.jpg" - Delete "$INSTDIR\news\Pubpicc02.jpg" - Delete "$INSTDIR\news\Pubpicc01.jpg" - Delete "$INSTDIR\news\3.���s����_1-�O�����驱 Pubpicc03.jpg" - Delete "$INSTDIR\NAudio.dll" - Delete "$INSTDIR\Microsoft.IO.RecyclableMemoryStream.dll" - Delete "$INSTDIR\Microsoft.Ink.dll" - Delete "$INSTDIR\MediaFoundation.dll" - Delete "$INSTDIR\mainlog.txt" - Delete "$INSTDIR\ksonglover.ico" - Delete "$INSTDIR\KSongDatabase.db" - Delete "$INSTDIR\Interop.WMPLib.dll" - Delete "$INSTDIR\INIFileParser.xml" - Delete "$INSTDIR\INIFileParser.dll.mdb" - Delete "$INSTDIR\INIFileParser.dll" - Delete "$INSTDIR\foods\���I_Pubpicd15�հs�t�~+��s.jpg" - Delete "$INSTDIR\foods\���I_Pubpicd14�x���s+�հs�t�~.jpg" - Delete "$INSTDIR\foods\���I_Pubpicd13�v�s.jpg" - Delete "$INSTDIR\foods\���I_Pubpicd12�N��+����.jpg" - Delete "$INSTDIR\foods\���I_Pubpicd11�D��+�p�����G.jpg" - Delete "$INSTDIR\foods\���I_Pubpicd10�D��+����.jpg" - Delete "$INSTDIR\foods\���I_Pubpicd09���~+�x���p��.jpg" - Delete "$INSTDIR\foods\���I_Pubpicd08����+�T�M�K�O+�ӰȮM�\.jpg" - Delete "$INSTDIR\foods\���I_Pubpicd07����.jpg" - Delete "$INSTDIR\foods\���I_Pubpicd06�������w.jpg" - Delete "$INSTDIR\foods\�D��_Pubpicd05���֮M�\.jpg" - Delete "$INSTDIR\foods\�D��_Pubpicd04�զX�M�\.jpg" - Delete "$INSTDIR\foods\�D��_Pubpicd03�w���u�f�M�\.jpg" - Delete "$INSTDIR\foods\�D��_Pubpicd02�ǥͱM��.jpg" - Delete "$INSTDIR\foods\�D��_Pubpicd01����.jpg" - Delete "$INSTDIR\EPPlus.dll" - Delete "$INSTDIR\DualScreenKTVPlayStation.exe" - Delete "$INSTDIR\DirectShowLib.dll" - Delete "$INSTDIR\config.ini" - Delete "$INSTDIR\AxInterop.WMPLib.dll" - - Delete "$SMPROGRAMS\DualScreenPlayStation\Uninstall.lnk" - Delete "$DESKTOP\DualScreenPlayStation.lnk" - Delete "$SMPROGRAMS\DualScreenPlayStation\DualScreenPlayStation.lnk" - - RMDir "$SMPROGRAMS\DualScreenPlayStation" - RMDir "$INSTDIR\txt" - RMDir "$INSTDIR\themes\superstar\�I������" - RMDir "$INSTDIR\themes\superstar\�y�O\��y" - RMDir "$INSTDIR\themes\superstar\�y�O\�^�y" - RMDir "$INSTDIR\themes\superstar\�q�P\����" - RMDir "$INSTDIR\themes\superstar\�q�P\�^��" - RMDir "$INSTDIR\themes\superstar\�q�P\����" - RMDir "$INSTDIR\themes\superstar\�q�P\�`��" - RMDir "$INSTDIR\themes\superstar\�q�P\��g" - RMDir "$INSTDIR\themes\superstar\�q�W\�s��" - RMDir "$INSTDIR\themes\superstar\�q�W\����" - RMDir "$INSTDIR\themes\superstar\�q�W\�^��" - RMDir "$INSTDIR\themes\superstar\�q�W\�`��" - RMDir "$INSTDIR\themes\superstar\��L����" - RMDir "$INSTDIR\themes\superstar\�ڪ��̷R" - RMDir "$INSTDIR\themes\superstar\ICON�U��" - RMDir "$INSTDIR\themes\superstar\ICON�W��" - RMDir "$INSTDIR\themes\superstar\_www\����I�q" - RMDir "$INSTDIR\themes\superstar\_www\superstar-pic" - RMDir "$INSTDIR\themes\superstar\_www\fonts" - RMDir "$INSTDIR\themes\superstar\_www\css" - RMDir "$INSTDIR\themes\superstar\_www" - RMDir "$INSTDIR\themes\superstar" - RMDir "$INSTDIR\superstar-pic" - RMDir "$INSTDIR\sounds" - RMDir "$INSTDIR\news" - RMDir "$INSTDIR\foods" - RMDir "$INSTDIR" - - DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" - DeleteRegKey HKLM "${PRODUCT_DIR_REGKEY}" - SetAutoClose true -SectionEnd \ No newline at end of file diff --git a/HttpServer.cs b/HttpServer.cs index bc5d21f..4b137c4 100644 --- a/HttpServer.cs +++ b/HttpServer.cs @@ -17,6 +17,8 @@ using SystemAction = System.Action; using ZXingAction = ZXing.Action; using System.Threading; using System.Collections.Concurrent; +using DBObj; +using OverlayFormObj; namespace DualScreenDemo { public class HttpServer @@ -29,7 +31,7 @@ namespace DualScreenDemo public static event ActionString OnDisplayBarrage; private static DateTime lastClickTime = DateTime.MinValue; public static string randomFolderPath; // 声明全局变量 - private static OverlayForm form; + //private static OverlayForm form; private static readonly ConcurrentDictionary _fileCache = new ConcurrentDictionary(); private static readonly SemaphoreSlim _requestThrottle = new SemaphoreSlim(20); // 限制并发请求数 private static readonly CancellationTokenSource _serverCts = new CancellationTokenSource(); @@ -45,28 +47,40 @@ namespace DualScreenDemo string localAddress = GetLocalIPAddress(); // 使用获取的本地 IP string externalAddress = ""; - // 读取外网地址 + // 讀取外網地址 沒有端口號 string serverAddressFilePath = @"\\SVR01\superstarb\txt\ip.txt"; if (File.Exists(serverAddressFilePath)) { externalAddress = File.ReadAllText(serverAddressFilePath).Trim(); + Console.WriteLine("External address: " + externalAddress); } - - // 启动服务器的逻辑 + else + { + Console.WriteLine("Warning: External address file not found. Using local address only."); + } + // 創建一個 HttpListener 來監聽 HTTP 請求 HttpListener listener = new HttpListener(); - - // 添加本地地址前缀 + + // 構造本地地址的 URL 前綴(包含協議、地址和端口) string localPrefix = String.Format("http://{0}:{1}/", localAddress, port); + + // 在控制台輸出添加的本地前綴,方便調試 Console.WriteLine("Adding local prefix: " + localPrefix); + + // 將本地前綴添加到 HttpListener,使其監聽該 URL listener.Prefixes.Add(localPrefix); + string hostName = System.Net.Dns.GetHostName(); + string externalPort = '1' + hostName.Substring(Math.Max(2, hostName.Length - 20)); // 如果有外网地址,也添加外网地址前缀 if (!string.IsNullOrEmpty(externalAddress)) { - // 解析外网地址和端口 + // 錨點 2 + // 外網 IP 和 port 調整 string[] parts = externalAddress.Split(':'); string host = parts[0]; - int externalPort = parts.Length > 1 ? int.Parse(parts[1]) : port; + + //int externalPort = parts.Length > 1 ? int.Parse(parts[1]) : port; string externalPrefix = String.Format("http://{0}:{1}/", host, externalPort); Console.WriteLine("Adding external prefix: " + externalPrefix); @@ -83,12 +97,16 @@ namespace DualScreenDemo // 生成两个二维码内容 string localQrContent = String.Format("http://{0}:{1}/{2}/windows.html", localAddress, port, randomFolderName); + // string localQrContent = String.Format("http://{0}:{1}/{2}/windows.html", "ss.net.dnsnet.cc", 1102, randomFolderName); // 修改外网二维码内容生成 + string externalQrContent = !string.IsNullOrEmpty(externalAddress) ? - String.Format("http://{0}/{1}/windows.html", externalAddress, randomFolderName) : + String.Format("http://{0}:{1}/{2}/windows.html", externalAddress, externalPort, randomFolderName) : localQrContent; - + + Console.WriteLine("local QR Content : " + localQrContent); + Console.WriteLine("external QR Content : " + externalQrContent); // 生成二维码(这里使用外网地址的二维码,因为通常外网地址更有用) string qrImagePath = GenerateQRCode(externalQrContent, Path.Combine(baseDirectory, randomFolderName, "qrcode.png")); @@ -167,7 +185,11 @@ namespace DualScreenDemo return String.Format("http://{0}:{1}/", _localIP, _port); // return String.Format("http://111.246.145.170:8080/"); } - + /// + /// 生成隨機路徑 + /// + /// + /// private static string CreateRandomFolderAndRedirectHTML(string baseDirectory) { string randomFolderName = Path.GetRandomFileName().Replace(".", ""); @@ -961,16 +983,16 @@ namespace DualScreenDemo } } } - catch (JsonException ex) - { - context.Response.StatusCode = 400; - Console.WriteLine("解析留言数据时出错"); - } - catch (Exception ex) - { - context.Response.StatusCode = 500; - Console.WriteLine("服务器内部错误"); - } + //catch (JsonException ex) + //{ + // context.Response.StatusCode = 400; + // Console.WriteLine("解析留言数据时出错"); + //} + //catch (Exception ex) + //{ + // context.Response.StatusCode = 500; + // Console.WriteLine("服务器内部错误"); + //} finally { context.Response.Close(); diff --git a/HttpServerManager.cs b/HttpServerManager.cs index 6911cb7..b77c7fe 100644 --- a/HttpServerManager.cs +++ b/HttpServerManager.cs @@ -6,13 +6,13 @@ namespace DualScreenDemo { public static class HttpServerManager { - public static void StartServer() + public static async void StartServer() { int httpPort = 9090; // 你可以修改此端口 string baseDirectory = Path.Combine(Application.StartupPath, @"themes\superstar\_www"); CleanUpDirectory(baseDirectory); - HttpServer.StartServer(baseDirectory, httpPort, Program.songListManager); + await HttpServer.StartServer(baseDirectory, httpPort, Program.songListManager); } diff --git a/OverlayForm/OverlayForm.Helpers.cs b/OverlayFormObj/OverlayForm.Helpers.cs similarity index 99% rename from OverlayForm/OverlayForm.Helpers.cs rename to OverlayFormObj/OverlayForm.Helpers.cs index 4fb3888..1a6b31c 100644 --- a/OverlayForm/OverlayForm.Helpers.cs +++ b/OverlayFormObj/OverlayForm.Helpers.cs @@ -3,8 +3,8 @@ using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Windows.Forms; - -namespace DualScreenDemo +using DualScreenDemo; +namespace OverlayFormObj { public partial class OverlayForm { diff --git a/OverlayForm/OverlayForm.Labels.cs b/OverlayFormObj/OverlayForm.Labels.cs similarity index 99% rename from OverlayForm/OverlayForm.Labels.cs rename to OverlayFormObj/OverlayForm.Labels.cs index cea1bbd..ffc9057 100644 --- a/OverlayForm/OverlayForm.Labels.cs +++ b/OverlayFormObj/OverlayForm.Labels.cs @@ -7,8 +7,9 @@ using System; using System.Linq; using System.Threading; using System.Threading.Tasks; - -namespace DualScreenDemo +using DBObj; +using DualScreenDemo; +namespace OverlayFormObj { public partial class OverlayForm { @@ -268,12 +269,12 @@ namespace DualScreenDemo this.Controls.Add(displayLabel); } } - + // 播放暫停,字體大小 private void InitializePauseLabel() { pauseLabel = new Label(); pauseLabel.AutoSize = false; - pauseLabel.Font = new Font("Microsoft JhengHei", 125, FontStyle.Bold); + pauseLabel.Font = new Font("Microsoft JhengHei", 75, FontStyle.Bold); pauseLabel.BackColor = Color.Transparent; pauseLabel.TextAlign = ContentAlignment.MiddleCenter; pauseLabel.Size = new Size(1080, 200); @@ -317,13 +318,13 @@ namespace DualScreenDemo this.Controls.Add(pauseLabel); } - + // 播放靜音,字體大小 private void InitializeMuteLabel() { muteLabel = new Label(); muteLabel.AutoSize = false; muteLabel.Visible = false; - muteLabel.Font = new Font("Microsoft JhengHei", 125, FontStyle.Bold); + muteLabel.Font = new Font("Microsoft JhengHei", 75, FontStyle.Bold); muteLabel.BackColor = Color.Transparent; muteLabel.TextAlign = ContentAlignment.MiddleCenter; muteLabel.Size = new Size(1080, 200); diff --git a/OverlayForm/OverlayForm.cs b/OverlayFormObj/OverlayForm.cs similarity index 79% rename from OverlayForm/OverlayForm.cs rename to OverlayFormObj/OverlayForm.cs index 5718ffa..f8ef67a 100644 --- a/OverlayForm/OverlayForm.cs +++ b/OverlayFormObj/OverlayForm.cs @@ -12,8 +12,9 @@ using Newtonsoft.Json; using ZXing; using ZXing.QrCode; using System.Timers; - -namespace DualScreenDemo +using DBObj; +using DualScreenDemo; +namespace OverlayFormObj { public partial class OverlayForm : Form { @@ -80,10 +81,10 @@ namespace DualScreenDemo MainForm = this; InitializeFormSettings(); ConfigureTimers(); - LoadBackgroundImage(); - ConfigureImageDisplay(); + InitializeLabels(); ConfigureSegmentTimer(); + imageYPos = (screenHeight / 3) - 1024 / 6; } private void ConfigureSegmentTimer() { @@ -415,8 +416,7 @@ private Rectangle FindContentBounds(Bitmap bmp) firstStickerImage = null; this.Invalidate(); } - if (secondStickerImage == null) - LoadBackgroundImage(); + stickerTimer1.Stop(); HideImages(); }; @@ -428,8 +428,6 @@ private Rectangle FindContentBounds(Bitmap bmp) secondStickerImage = null; this.Invalidate(); } - if (firstStickerImage == null) - LoadBackgroundImage(); stickerTimer2.Stop(); HideImages(); }; @@ -479,7 +477,7 @@ private static void SongDisplayTimer_Elapsed(object sender, EventArgs e) private readonly object _lockObject = new object(); - private void UnifiedTimer_Elapsed(object sender, EventArgs e) + private async void UnifiedTimer_Elapsed(object sender, EventArgs e) { // Console.WriteLine("UnifiedTimer_Elapsed called"); @@ -496,28 +494,28 @@ private static void SongDisplayTimer_Elapsed(object sender, EventArgs e) case UIState.SelectingLanguage: SetUIState(UIState.Initial); - HandleTimeout(""); + await HandleTimeout(""); break; case UIState.SelectingArtistCategory: SetUIState(UIState.Initial); - HandleTimeout(""); + await HandleTimeout(""); break; case UIState.SelectingAction: SetUIState(UIState.Initial); - HandleTimeout(""); + await HandleTimeout(""); break; case UIState.SelectingSong: SetUIState(UIState.Initial); - HandleTimeout(""); + await HandleTimeout(""); break; case UIState.SelectingArtist: SetUIState(UIState.Initial); - HandleTimeout(""); + await HandleTimeout(""); break; case UIState.PlayHistory: SetUIState(UIState.Initial); - HandleTimeout(""); + await HandleTimeout(""); break; } } @@ -539,40 +537,6 @@ private static void SongDisplayTimer_Elapsed(object sender, EventArgs e) unifiedTimer.Start(); } - private void LoadBackgroundImage() - { - // try - // { - // backgroundImage = Image.FromFile(Path.Combine(Application.StartupPath, "themes\\superstar\\images.jpg")); - // } - // catch (Exception ex) - // { - // Console.WriteLine("Error loading background image: " + ex.Message); - // backgroundImage = null; - // } - } - - private void ConfigureImageDisplay() - { - try - { - firstStickerImage = Image.FromFile(Path.Combine(Application.StartupPath, "superstar-pic/1-1.png")); - firstStickerXPos = this.Width / 2; - imageYPos = (screenHeight / 3) - firstStickerImage.Height / 6; - - - LoadBackgroundImage(); - - - stickerTimer1.Start(); - } - catch (Exception ex) - { - Console.WriteLine("Error loading initial sticker image: " + ex.Message); - firstStickerImage = null; - } - } - private void HideImages() { bool anyStickersActive = false; @@ -799,7 +763,7 @@ private static void SongDisplayTimer_Elapsed(object sender, EventArgs e) Console.WriteLine("Form Height: " + this.Height); - string imagePath = String.Format("{0}\\superstar-pic\\{1}.png", Application.StartupPath, stickerId); + string imagePath = String.Format("{0}\\themes\\superstar\\superstar-pic\\{1}.png", Application.StartupPath, stickerId); Console.WriteLine("Image path: " + imagePath); try { @@ -809,8 +773,7 @@ private static void SongDisplayTimer_Elapsed(object sender, EventArgs e) if (firstStickerImage == null) { firstStickerImage = newSticker; - firstStickerXPos = this.Width / 2 - firstStickerImage.Width / 2; - LoadBackgroundImage(); + firstStickerXPos = this.Width / 2 - firstStickerImage.Width / 2; stickerTimer1.Start(); } else if (secondStickerImage == null) @@ -1313,7 +1276,7 @@ public void UpdateHistoryLabel(List historySongs, List play int mainTitleFontSize = 60; int optionFontSize = 50; int lineSpacing = 15; - int columnSpacing = 400; + //int columnSpacing = 400; // 主標題 string mainTitle = messages[0]; @@ -1615,254 +1578,299 @@ private void DisplaySongsInLanguage(string language, Category category) public int totalSongs = 0; -public void DisplaySongs(int page) -{ - if (LanguageSongList == null || LanguageSongList.Count == 0) - { - Console.WriteLine("LanguageSongList is null or empty."); - return; - } + public void DisplaySongs(int page) + { + // 檢查 LanguageSongList 是否為空,避免發生錯誤 + if (LanguageSongList == null || LanguageSongList.Count == 0) + { + Console.WriteLine("LanguageSongList is null or empty."); + return; + } - this.Controls.OfType().ToList().ForEach(p => this.Controls.Remove(p)); + // 清除介面上所有 PictureBox 控件,避免重複顯示舊的內容 + this.Controls.OfType().ToList().ForEach(p => this.Controls.Remove(p)); - int songsPerColumn = 5; - int startIndex = (page - 1) * songsPerPage; - int endIndex = Math.Min(startIndex + songsPerPage, LanguageSongList.Count); + // 每列顯示 5 首歌 + int songsPerColumn = 5; + + // 計算當前頁面的起始與結束索引 + int startIndex = (page - 1) * songsPerPage; + int endIndex = Math.Min(startIndex + songsPerPage, LanguageSongList.Count); - int totalPages = (int)Math.Ceiling((double)LanguageSongList.Count / songsPerPage); + // 計算總頁數 + int totalPages = (int)Math.Ceiling((double)LanguageSongList.Count / songsPerPage); - string categoryText = OverlayForm.CurrentCategory switch - { - OverlayForm.Category.NewSongs => "新歌", - OverlayForm.Category.HotSongs => "熱門", - _ => "" - }; - string headerText = $"{currentLanguage} - {categoryText} ({page} / {totalPages})"; - Font headerFont = new Font("Microsoft JhengHei", 60, FontStyle.Bold); - Bitmap headerBitmap = GenerateTextImage(headerText, headerFont, Color.White, Color.Transparent); - AddCenteredPicture(headerBitmap, 150); + // 根據當前分類選擇標題文字 + string categoryText = OverlayForm.CurrentCategory switch + { + OverlayForm.Category.NewSongs => "新歌", + OverlayForm.Category.HotSongs => "熱門", + _ => "" + }; - int startY = 250; - int leftColumnX = 100; - int rightColumnX = this.Width / 2 + 100; + // 設定標題格式,包含語言、分類與當前頁碼 + string headerText = $"{currentLanguage} - {categoryText} ({page} / {totalPages})"; + + // 設定標題的字體樣式 + Font headerFont = new Font("Microsoft JhengHei", 60, FontStyle.Bold); + + // 生成標題圖片 + Bitmap headerBitmap = GenerateTextImage(headerText, headerFont, Color.White, Color.Transparent); + + // 顯示標題圖片,垂直置於 150px 處 + AddCenteredPicture(headerBitmap, 150); - // 計算當前頁面最大歌名和歌手文字長度 - int maxSongLength = 0; - int maxArtistLength = 0; - for (int i = startIndex; i < endIndex; i++) - { - string songText = $"{i - startIndex + 1}. {LanguageSongList[i].Song}"; - string artistText = !string.IsNullOrWhiteSpace(LanguageSongList[i].ArtistB) - ? $"{LanguageSongList[i].ArtistA} - {LanguageSongList[i].ArtistB}" - : LanguageSongList[i].ArtistA; + // 設定歌名顯示區域的起始 Y 位置 + int startY = 250; + + // 左列與右列的 X 位置 + int leftColumnX = 100; + int rightColumnX = this.Width / 2 + 100; - maxSongLength = Math.Max(maxSongLength, songText.Length); - maxArtistLength = Math.Max(maxArtistLength, artistText.Length); - } + // 計算當前頁面最大歌名和歌手文字長度,決定適合的字體大小 + int maxSongLength = 0; + int maxArtistLength = 0; - int songFontSize = maxSongLength > 20 ? 35 : 45; - int artistFontSize = maxArtistLength > 20 ? 30 : 35; - int verticalSpacing = songFontSize == 30 ? 25 : 10; + for (int i = startIndex; i < endIndex; i++) + { + string songText = $"{i - startIndex + 1}. {LanguageSongList[i].Song}"; + string artistText = !string.IsNullOrWhiteSpace(LanguageSongList[i].ArtistB) + ? $"{LanguageSongList[i].ArtistA} - {LanguageSongList[i].ArtistB}" + : LanguageSongList[i].ArtistA; - // 統一行高 - int rowHeight = 0; + maxSongLength = Math.Max(maxSongLength, songText.Length); + maxArtistLength = Math.Max(maxArtistLength, artistText.Length); + } - // 計算行高 - for (int i = startIndex; i < endIndex; i++) - { - string songText = $"{i - startIndex + 1}. {LanguageSongList[i].Song}"; - string artistText = !string.IsNullOrWhiteSpace(LanguageSongList[i].ArtistB) - ? $"{LanguageSongList[i].ArtistA} - {LanguageSongList[i].ArtistB}" - : LanguageSongList[i].ArtistA; + // 根據最大字數決定適當的字體大小 + int songFontSize = maxSongLength > 20 ? 35 : 45; + int artistFontSize = maxArtistLength > 20 ? 30 : 35; + + // 設定歌曲行間距 + int verticalSpacing = songFontSize == 30 ? 25 : 10; - Font songFont = new Font("Microsoft JhengHei", songFontSize, FontStyle.Bold); - Font artistFont = new Font("Microsoft JhengHei", artistFontSize, FontStyle.Bold); + // 設定統一的行高 + int rowHeight = 0; - Bitmap songBitmap = GenerateTextImage(songText, songFont, Color.White, Color.Transparent); - Bitmap artistBitmap = GenerateTextImage(artistText, artistFont, Color.White, Color.Transparent); + // 計算行高 + for (int i = startIndex; i < endIndex; i++) + { + string songText = $"{i - startIndex + 1}. {LanguageSongList[i].Song}"; + string artistText = !string.IsNullOrWhiteSpace(LanguageSongList[i].ArtistB) + ? $"{LanguageSongList[i].ArtistA} - {LanguageSongList[i].ArtistB}" + : LanguageSongList[i].ArtistA; - rowHeight = Math.Max(rowHeight, Math.Max(songBitmap.Height, artistBitmap.Height)); - } + Font songFont = new Font("Microsoft JhengHei", songFontSize, FontStyle.Bold); + Font artistFont = new Font("Microsoft JhengHei", artistFontSize, FontStyle.Bold); - for (int i = startIndex; i < endIndex; i++) - { - int songNumber = i - startIndex + 1; + Bitmap songBitmap = GenerateTextImage(songText, songFont, Color.White, Color.Transparent); + Bitmap artistBitmap = GenerateTextImage(artistText, artistFont, Color.White, Color.Transparent); - string songText = $"{songNumber}. {LanguageSongList[i].Song}"; - string artistText = !string.IsNullOrWhiteSpace(LanguageSongList[i].ArtistB) - ? $"{LanguageSongList[i].ArtistA} - {LanguageSongList[i].ArtistB}" - : LanguageSongList[i].ArtistA; + rowHeight = Math.Max(rowHeight, Math.Max(songBitmap.Height, artistBitmap.Height)); + } - Font songFont = new Font("Microsoft JhengHei", songFontSize, FontStyle.Bold); - Font artistFont = new Font("Microsoft JhengHei", artistFontSize, FontStyle.Bold); + // 依據計算出的行高,逐行顯示歌曲與歌手名稱 + for (int i = startIndex; i < endIndex; i++) + { + int songNumber = i - startIndex + 1; - Bitmap songBitmap = GenerateTextImage(songText, songFont, Color.White, Color.Transparent); - Bitmap artistBitmap = GenerateTextImage(artistText, artistFont, Color.White, Color.Transparent); + string songText = $"{songNumber}. {LanguageSongList[i].Song}"; + string artistText = !string.IsNullOrWhiteSpace(LanguageSongList[i].ArtistB) + ? $"{LanguageSongList[i].ArtistA} - {LanguageSongList[i].ArtistB}" + : LanguageSongList[i].ArtistA; - int x = (i - startIndex) < songsPerColumn ? leftColumnX : rightColumnX; - int y = startY + ((i - startIndex) % songsPerColumn) * (rowHeight + verticalSpacing); + Font songFont = new Font("Microsoft JhengHei", songFontSize, FontStyle.Bold); + Font artistFont = new Font("Microsoft JhengHei", artistFontSize, FontStyle.Bold); - AddPicture(songBitmap, x, y); - AddPicture(artistBitmap, x + songBitmap.Width + 20, y); - } -} + Bitmap songBitmap = GenerateTextImage(songText, songFont, Color.White, Color.Transparent); + Bitmap artistBitmap = GenerateTextImage(artistText, artistFont, Color.White, Color.Transparent); -public void DisplaySongsWithArrows(int page, int highlightIndex) -{ - if (LanguageSongList == null || LanguageSongList.Count == 0) - { - Console.WriteLine("Error: LanguageSongList is null or empty."); - return; - } + // 根據索引決定左側或右側顯示 + int x = (i - startIndex) < songsPerColumn ? leftColumnX : rightColumnX; - this.Controls.OfType().ToList().ForEach(p => this.Controls.Remove(p)); + // 計算 Y 位置 + int y = startY + ((i - startIndex) % songsPerColumn) * (rowHeight + verticalSpacing); - int songsPerColumn = 5; - int startIndex = (page - 1) * songsPerPage; - int endIndex = Math.Min(startIndex + songsPerPage, LanguageSongList.Count); + // 顯示歌曲名稱圖片 + AddPicture(songBitmap, x, y); + + // 顯示歌手名稱圖片(稍微右移) + AddPicture(artistBitmap, x + songBitmap.Width + 20, y); + } + } - int totalPages = (int)Math.Ceiling((double)LanguageSongList.Count / songsPerPage); - string categoryText = OverlayForm.CurrentCategory switch - { - OverlayForm.Category.NewSongs => "新歌", - OverlayForm.Category.HotSongs => "熱門", - _ => "" - }; + public void DisplaySongsWithArrows(int page, int highlightIndex) + { + // 檢查 LanguageSongList 是否為空,避免發生錯誤 + if (LanguageSongList == null || LanguageSongList.Count == 0) + { + Console.WriteLine("Error: LanguageSongList is null or empty."); + return; + } - string headerText = $"{currentLanguage} - {categoryText} ({page} / {totalPages})"; - Font headerFont = new Font("Microsoft JhengHei", 60, FontStyle.Bold); - Bitmap headerBitmap = GenerateTextImage(headerText, headerFont, Color.White, Color.Transparent); - AddCenteredPicture(headerBitmap, 150); + // 清除介面上所有 PictureBox 控件,避免重複顯示舊的內容 + this.Controls.OfType().ToList().ForEach(p => this.Controls.Remove(p)); - int startY = 250; - int leftColumnX = 100; - int rightColumnX = this.Width / 2 + 100; + // 每列顯示 5 首歌 + int songsPerColumn = 5; + // 計算當前頁面的起始與結束索引 + int startIndex = (page - 1) * songsPerPage; + int endIndex = Math.Min(startIndex + songsPerPage, LanguageSongList.Count); - // 找到当前页面中最长的 songText 和 artistText 长度 - int maxSongLength = 0; - int maxArtistLength = 0; - for (int i = startIndex; i < endIndex; i++) - { - string songText = $"{i - startIndex + 1}. {LanguageSongList[i].Song}"; - string artistText = !string.IsNullOrWhiteSpace(LanguageSongList[i].ArtistB) - ? $"{LanguageSongList[i].ArtistA} - {LanguageSongList[i].ArtistB}" - : LanguageSongList[i].ArtistA; + // 計算總頁數 + int totalPages = (int)Math.Ceiling((double)LanguageSongList.Count / songsPerPage); - maxSongLength = Math.Max(maxSongLength, songText.Length); - maxArtistLength = Math.Max(maxArtistLength, artistText.Length); - } + // 根據當前分類選擇標題文字 + string categoryText = OverlayForm.CurrentCategory switch + { + OverlayForm.Category.NewSongs => "新歌", + OverlayForm.Category.HotSongs => "熱門", + _ => "" + }; - // 动态调整字体大小 - int songFontSize = maxSongLength > 20 ? 35 : 45; - int artistFontSize = maxArtistLength > 20 ? 30 : 35; - int verticalSpacing = songFontSize == 30 ? 25 : 10; + // 設定標題格式,包含語言、分類與當前頁碼 + string headerText = $"{currentLanguage} - {categoryText} ({page} / {totalPages})"; + // 設定標題的字體樣式 + Font headerFont = new Font("Microsoft JhengHei", 60, FontStyle.Bold); + // 生成標題圖片 + Bitmap headerBitmap = GenerateTextImage(headerText, headerFont, Color.White, Color.Transparent); + // 顯示標題圖片,垂直置於 150px 處 + AddCenteredPicture(headerBitmap, 150); - // 统一行高計算 - int rowHeight = 0; - for (int i = startIndex; i < endIndex; i++) - { - string songText = $"{i - startIndex + 1}. {LanguageSongList[i].Song}"; - string artistText = !string.IsNullOrWhiteSpace(LanguageSongList[i].ArtistB) - ? $"{LanguageSongList[i].ArtistA} - {LanguageSongList[i].ArtistB}" - : LanguageSongList[i].ArtistA; + // 設定歌名顯示區域的起始 Y 位置 + int startY = 250; + // 左列與右列的 X 位置 + int leftColumnX = 100; + int rightColumnX = this.Width / 2 + 100; - Font tempSongFont = new Font("Microsoft JhengHei", songFontSize, FontStyle.Bold); - Font tempArtistFont = new Font("Microsoft JhengHei", artistFontSize, FontStyle.Bold); + // 找到當前頁面中最長的 songText 和 artistText 長度 + int maxSongLength = 0; + int maxArtistLength = 0; + for (int i = startIndex; i < endIndex; i++) + { + string songText = $"{i - startIndex + 1}. {LanguageSongList[i].Song}"; + string artistText = !string.IsNullOrWhiteSpace(LanguageSongList[i].ArtistB) + ? $"{LanguageSongList[i].ArtistA} - {LanguageSongList[i].ArtistB}" + : LanguageSongList[i].ArtistA; - Bitmap tempSongBitmap = GenerateTextImage(songText, tempSongFont, Color.White, Color.Transparent); - Bitmap tempArtistBitmap = GenerateTextImage(artistText, tempArtistFont, Color.White, Color.Transparent); + maxSongLength = Math.Max(maxSongLength, songText.Length); + maxArtistLength = Math.Max(maxArtistLength, artistText.Length); + } - rowHeight = Math.Max(rowHeight, Math.Max(tempSongBitmap.Height, tempArtistBitmap.Height)); - } + // 動態調整字體大小 + int songFontSize = maxSongLength > 20 ? 35 : 45; + int artistFontSize = maxArtistLength > 20 ? 30 : 35; + int verticalSpacing = songFontSize == 30 ? 25 : 10; - for (int i = startIndex; i < endIndex; i++) - { - int songNumber = i - startIndex + 1; + // 統一行高計算 + int rowHeight = 0; + for (int i = startIndex; i < endIndex; i++) + { + string songText = $"{i - startIndex + 1}. {LanguageSongList[i].Song}"; + string artistText = !string.IsNullOrWhiteSpace(LanguageSongList[i].ArtistB) + ? $"{LanguageSongList[i].ArtistA} - {LanguageSongList[i].ArtistB}" + : LanguageSongList[i].ArtistA; - string songText = $"{songNumber}. {LanguageSongList[i].Song}"; - string artistText = !string.IsNullOrWhiteSpace(LanguageSongList[i].ArtistB) - ? $"{LanguageSongList[i].ArtistA} - {LanguageSongList[i].ArtistB}" - : LanguageSongList[i].ArtistA; + Font tempSongFont = new Font("Microsoft JhengHei", songFontSize, FontStyle.Bold); + Font tempArtistFont = new Font("Microsoft JhengHei", artistFontSize, FontStyle.Bold); - // 设置颜色,选中的索引显示为亮绿色 - Color songColor = (i == highlightIndex) ? Color.LimeGreen : Color.White; - Color artistColor = (i == highlightIndex) ? Color.LimeGreen : Color.White; + Bitmap tempSongBitmap = GenerateTextImage(songText, tempSongFont, Color.White, Color.Transparent); + Bitmap tempArtistBitmap = GenerateTextImage(artistText, tempArtistFont, Color.White, Color.Transparent); - Font songFont = new Font("Microsoft JhengHei", songFontSize, FontStyle.Bold); - Bitmap songBitmap = GenerateTextImage(songText, songFont, songColor, Color.Transparent); + rowHeight = Math.Max(rowHeight, Math.Max(tempSongBitmap.Height, tempArtistBitmap.Height)); + } - Font artistFont = new Font("Microsoft JhengHei", artistFontSize, FontStyle.Bold); - Bitmap artistBitmap = GenerateTextImage(artistText, artistFont, artistColor, Color.Transparent); + // 依據計算出的行高,逐行顯示歌曲與歌手名稱 + for (int i = startIndex; i < endIndex; i++) + { + int songNumber = i - startIndex + 1; - int x = (i - startIndex) < songsPerColumn ? leftColumnX : rightColumnX; - int y = startY + ((i - startIndex) % songsPerColumn) * (rowHeight + verticalSpacing); + string songText = $"{songNumber}. {LanguageSongList[i].Song}"; + string artistText = !string.IsNullOrWhiteSpace(LanguageSongList[i].ArtistB) + ? $"{LanguageSongList[i].ArtistA} - {LanguageSongList[i].ArtistB}" + : LanguageSongList[i].ArtistA; - AddPicture(songBitmap, x, y); - AddPicture(artistBitmap, x + songBitmap.Width + 20, y); - } -} + // 設定顏色,選中的索引顯示為亮綠色 + Color songColor = (i == highlightIndex) ? Color.LimeGreen : Color.White; + Color artistColor = (i == highlightIndex) ? Color.LimeGreen : Color.White; + + Font songFont = new Font("Microsoft JhengHei", songFontSize, FontStyle.Bold); + Bitmap songBitmap = GenerateTextImage(songText, songFont, songColor, Color.Transparent); + + Font artistFont = new Font("Microsoft JhengHei", artistFontSize, FontStyle.Bold); + Bitmap artistBitmap = GenerateTextImage(artistText, artistFont, artistColor, Color.Transparent); + + int x = (i - startIndex) < songsPerColumn ? leftColumnX : rightColumnX; + int y = startY + ((i - startIndex) % songsPerColumn) * (rowHeight + verticalSpacing); + + // 顯示歌曲名稱圖片 + AddPicture(songBitmap, x, y); + // 顯示歌手名稱圖片(稍微右移) + AddPicture(artistBitmap, x + songBitmap.Width + 20, y); + } + } -public void DisplayActionWithSong(int page, int songIndex, string actionType) -{ - // try - // { - // if (LanguageSongList == null || LanguageSongList.Count == 0) - // { - // Console.WriteLine("Error: LanguageSongList is null or empty."); - // return; - // } + public void DisplayActionWithSong(int page, int songIndex, string actionType) + { + // try + // { + // if (LanguageSongList == null || LanguageSongList.Count == 0) + // { + // Console.WriteLine("Error: LanguageSongList is null or empty."); + // return; + // } - // SongData song = LanguageSongList[songIndex]; + // SongData song = LanguageSongList[songIndex]; - // this.Controls.OfType().ToList().ForEach(p => this.Controls.Remove(p)); + // this.Controls.OfType().ToList().ForEach(p => this.Controls.Remove(p)); - // int songsPerColumn = 5; - // int startIndex = (page - 1) * songsPerPage; - // int endIndex = Math.Min(startIndex + songsPerPage, LanguageSongList.Count); + // int songsPerColumn = 5; + // int startIndex = (page - 1) * songsPerPage; + // int endIndex = Math.Min(startIndex + songsPerPage, LanguageSongList.Count); - // int totalPages = (int)Math.Ceiling((double)LanguageSongList.Count / songsPerPage); + // int totalPages = (int)Math.Ceiling((double)LanguageSongList.Count / songsPerPage); - // string headerText = $"{actionType}: {song.ArtistA} - {song.Song} ({page} / {totalPages})"; - // Font headerFont = new Font("Microsoft JhengHei", 40, FontStyle.Bold); - // Color headerColor = actionType == "點播" ? Color.LimeGreen : Color.Yellow; - // Bitmap headerBitmap = GenerateTextImage(headerText, headerFont, headerColor, Color.Transparent); - // AddCenteredPicture(headerBitmap, 150); + // string headerText = $"{actionType}: {song.ArtistA} - {song.Song} ({page} / {totalPages})"; + // Font headerFont = new Font("Microsoft JhengHei", 40, FontStyle.Bold); + // Color headerColor = actionType == "點播" ? Color.LimeGreen : Color.Yellow; + // Bitmap headerBitmap = GenerateTextImage(headerText, headerFont, headerColor, Color.Transparent); + // AddCenteredPicture(headerBitmap, 150); - // int startY = 250; - // int verticalSpacing = 10; - // int leftColumnX = 200; - // int rightColumnX = this.Width / 2 + 150; + // int startY = 250; + // int verticalSpacing = 10; + // int leftColumnX = 200; + // int rightColumnX = this.Width / 2 + 150; - // for (int i = startIndex; i < endIndex; i++) - // { - // int songNumber = i - startIndex + 1; - // string songText = $"{songNumber}. {LanguageSongList[i].Song}"; - // string artistText = !string.IsNullOrWhiteSpace(LanguageSongList[i].ArtistB) - // ? $"{LanguageSongList[i].ArtistA} - {LanguageSongList[i].ArtistB}" - // : LanguageSongList[i].ArtistA; + // for (int i = startIndex; i < endIndex; i++) + // { + // int songNumber = i - startIndex + 1; + // string songText = $"{songNumber}. {LanguageSongList[i].Song}"; + // string artistText = !string.IsNullOrWhiteSpace(LanguageSongList[i].ArtistB) + // ? $"{LanguageSongList[i].ArtistA} - {LanguageSongList[i].ArtistB}" + // : LanguageSongList[i].ArtistA; - // Font songFont = new Font("Microsoft JhengHei", 40, FontStyle.Bold); - // Bitmap songBitmap = GenerateTextImage(songText, songFont, Color.White, Color.Transparent); + // Font songFont = new Font("Microsoft JhengHei", 40, FontStyle.Bold); + // Bitmap songBitmap = GenerateTextImage(songText, songFont, Color.White, Color.Transparent); - // Font artistFont = new Font("Microsoft JhengHei", 30, FontStyle.Bold); - // Bitmap artistBitmap = GenerateTextImage(artistText, artistFont, Color.White, Color.Transparent); + // Font artistFont = new Font("Microsoft JhengHei", 30, FontStyle.Bold); + // Bitmap artistBitmap = GenerateTextImage(artistText, artistFont, Color.White, Color.Transparent); - // int x = (i - startIndex) < songsPerColumn ? leftColumnX : rightColumnX; - // int y = startY + ((i - startIndex) % songsPerColumn) * (songBitmap.Height + verticalSpacing); + // int x = (i - startIndex) < songsPerColumn ? leftColumnX : rightColumnX; + // int y = startY + ((i - startIndex) % songsPerColumn) * (songBitmap.Height + verticalSpacing); - // AddPicture(songBitmap, x, y); - // AddPicture(artistBitmap, x + songBitmap.Width + 20, y); - // } - // } - // catch (Exception ex) - // { - // Console.WriteLine($"Error in DisplayActionWithSong: {ex.Message}"); - // Console.WriteLine(ex.StackTrace); - // } -} + // AddPicture(songBitmap, x, y); + // AddPicture(artistBitmap, x + songBitmap.Width + 20, y); + // } + // } + // catch (Exception ex) + // { + // Console.WriteLine($"Error in DisplayActionWithSong: {ex.Message}"); + // Console.WriteLine(ex.StackTrace); + // } + } public void NextPage() { diff --git a/PrimaryFormParts/HotSong/PrimaryForm.HotSong.cs b/PrimaryFormParts/HotSong/PrimaryForm.HotSong.cs index 8715a77..9eddf01 100644 --- a/PrimaryFormParts/HotSong/PrimaryForm.HotSong.cs +++ b/PrimaryFormParts/HotSong/PrimaryForm.HotSong.cs @@ -4,7 +4,7 @@ using System.Drawing; using System.IO; using System.Linq; using System.Collections.Generic; - +using DBObj; namespace DualScreenDemo { public partial class PrimaryForm diff --git a/PrimaryFormParts/HotSong/PrimaryForm.HotSongTaiwanesePopular.cs b/PrimaryFormParts/HotSong/PrimaryForm.HotSongTaiwanesePopular.cs deleted file mode 100644 index e5857ad..0000000 --- a/PrimaryFormParts/HotSong/PrimaryForm.HotSongTaiwanesePopular.cs +++ /dev/null @@ -1,15 +0,0 @@ -// using System; -// using System.Linq; -// using System.Windows.Forms; -// using System.Drawing; - -// namespace DualScreenDemo -// { -// public partial class PrimaryForm -// { -// private void TaiYuPopularButtonHotSong_Click(object sender, EventArgs e) -// { -// OnHotSongButtonClick(taiYuPopularButtonHotSong, taiYuPopularHotSongActiveBackground, "台語"); -// } -// } -// } diff --git a/PrimaryFormParts/LanguageSearch/PrimaryForm.LanguageSearch.cs b/PrimaryFormParts/LanguageSearch/PrimaryForm.LanguageSearch.cs index 05ff21d..735d289 100644 --- a/PrimaryFormParts/LanguageSearch/PrimaryForm.LanguageSearch.cs +++ b/PrimaryFormParts/LanguageSearch/PrimaryForm.LanguageSearch.cs @@ -11,7 +11,7 @@ namespace DualScreenDemo private void InitializeButton(ref Button button, string buttonText, int x, int y, int width, int height, Rectangle cropArea, Image normalBackground, out Bitmap normalBackgroundOut, Image activeBackground, out Bitmap activeBackgroundOut, EventHandler clickEventHandler) { - button = new Button { Text = buttonText, Visible = false }; + button = new Button { Text = "", Visible = false }; ResizeAndPositionButton(button, x, y, width, height); normalBackgroundOut = new Bitmap(normalBackground).Clone(cropArea, normalBackground.PixelFormat); activeBackgroundOut = new Bitmap(activeBackground).Clone(cropArea, activeBackground.PixelFormat); diff --git a/PrimaryFormParts/PrimaryForm.Favorite.cs b/PrimaryFormParts/PrimaryForm.Favorite.cs index a4bcc5e..0c7da50 100644 --- a/PrimaryFormParts/PrimaryForm.Favorite.cs +++ b/PrimaryFormParts/PrimaryForm.Favorite.cs @@ -4,7 +4,7 @@ using System.IO; using System.Linq; using System.Windows.Forms; using System.Collections.Generic; - +using DBObj; namespace DualScreenDemo { public partial class PrimaryForm @@ -26,19 +26,19 @@ namespace DualScreenDemo private void InitializeButtonsForFavoritePictureBox() { - + // 我的最愛數字座標按鈕 int[,] coords = new int[,] { - {799, 508, 70, 65}, - {878, 508, 70, 65}, - {957, 508, 70, 65}, - {1036, 508, 70, 65}, - {1115, 508, 70, 65}, - {799, 580, 70, 65}, - {878, 580, 70, 65}, - {957, 580, 70, 65}, - {1036, 580, 70, 65}, - {1115, 580, 70, 65} + {794, 508, 70, 65}, + {873, 508, 70, 65}, + {952, 508, 70, 65}, + {1031, 508, 70, 65}, + {1110, 508, 70, 65}, + {794, 580, 70, 65}, + {873, 580, 70, 65}, + {952, 580, 70, 65}, + {1031, 580, 70, 65}, + {1110, 580, 70, 65} }; int screenW = Screen.PrimaryScreen.Bounds.Width; @@ -58,7 +58,7 @@ namespace DualScreenDemo string fileName = (i + 2).ToString("00"); - string filePath = Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-" + fileName + ".jpg"); + string filePath = Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-" + fileName + ".png"); favoriteNumberButton[i].BackgroundImage = Image.FromFile(filePath); favoriteNumberButton[i].BackgroundImageLayout = ImageLayout.Stretch; favoriteNumberButton[i].FlatStyle = FlatStyle.Flat; @@ -89,8 +89,8 @@ namespace DualScreenDemo { Name = "enterFavoriteButton" }; - ResizeAndPositionButton(enterFavoriteButton, 842, 652, 70, 65); - enterFavoriteButton.BackgroundImage = Image.FromFile(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-12.jpg")); + ResizeAndPositionButton(enterFavoriteButton, 837, 652, 70, 65); + enterFavoriteButton.BackgroundImage = Image.FromFile(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-12.png")); enterFavoriteButton.BackgroundImageLayout = ImageLayout.Stretch; enterFavoriteButton.FlatStyle = FlatStyle.Flat; enterFavoriteButton.FlatAppearance.BorderSize = 0; @@ -104,8 +104,8 @@ namespace DualScreenDemo { Name = "newFavoriteButton" }; - ResizeAndPositionButton(newFavoriteButton, 921, 652, 70, 65); - newFavoriteButton.BackgroundImage = Image.FromFile(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-13.jpg")); + ResizeAndPositionButton(newFavoriteButton, 916, 652, 70, 65); + newFavoriteButton.BackgroundImage = Image.FromFile(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-13.png")); newFavoriteButton.BackgroundImageLayout = ImageLayout.Stretch; newFavoriteButton.FlatStyle = FlatStyle.Flat; newFavoriteButton.FlatAppearance.BorderSize = 0; @@ -119,8 +119,8 @@ namespace DualScreenDemo { Name = "refillFavoriteButton" }; - ResizeAndPositionButton(refillFavoriteButton, 999, 652, 70, 65); - refillFavoriteButton.BackgroundImage = Image.FromFile(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-14.jpg")); + ResizeAndPositionButton(refillFavoriteButton, 994, 652, 70, 65); + refillFavoriteButton.BackgroundImage = Image.FromFile(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-14.png")); refillFavoriteButton.BackgroundImageLayout = ImageLayout.Stretch; refillFavoriteButton.FlatStyle = FlatStyle.Flat; refillFavoriteButton.FlatAppearance.BorderSize = 0; @@ -134,8 +134,8 @@ namespace DualScreenDemo { Name = "closeFavoriteButton" }; - ResizeAndPositionButton(closeFavoriteButton, 1078, 652, 70, 65); - closeFavoriteButton.BackgroundImage = Image.FromFile(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-15.jpg")); + ResizeAndPositionButton(closeFavoriteButton, 1073, 652, 70, 65); + closeFavoriteButton.BackgroundImage = Image.FromFile(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛-15.png")); closeFavoriteButton.BackgroundImageLayout = ImageLayout.Stretch; closeFavoriteButton.FlatStyle = FlatStyle.Flat; closeFavoriteButton.FlatAppearance.BorderSize = 0; @@ -179,11 +179,19 @@ namespace DualScreenDemo { if (!string.IsNullOrEmpty(mobileNumber)) { - using (Font font = new Font("Arial", 24)) + using (Brush brush = new SolidBrush(Color.Black)) { - int x = 16; - int y = 68; + int screenW = Screen.PrimaryScreen.Bounds.Width; + int screenH = Screen.PrimaryScreen.Bounds.Height; + + float widthRatio = screenW / 1920f; + float heightRatio = screenH / 1080f; + + // 轉成縮放後的座標 + int x = (int)(30 * widthRatio); + int y = (int)(90 * heightRatio); + Font font = new Font("Arial", 24*heightRatio); if (showError) { @@ -312,7 +320,7 @@ namespace DualScreenDemo if (!FavoritePictureBox.Visible) { - ShowImageOnFavoritePictureBox(Path.Combine(Application.StartupPath, @"themes\superstar\其他介面\其他_我的最愛.jpg")); + ShowImageOnFavoritePictureBox(Path.Combine(Application.StartupPath, @"themes\superstar\我的最愛\我的最愛_工作區域.png")); SetFavoritePictureBoxAndButtonsVisibility(true); } else @@ -335,24 +343,24 @@ namespace DualScreenDemo private void ShowImageOnFavoritePictureBox(string imagePath) { - Bitmap originalImage = new Bitmap(imagePath); + if (File.Exists(imagePath)) + { + // 直接載入完整圖 + Bitmap image = new Bitmap(imagePath); - - Console.WriteLine(String.Format("Original Image Size: {0}x{1}", originalImage.Width, originalImage.Height)); + // 顯示在 PictureBox 上 + FavoritePictureBox.Image = image; - - Rectangle cropArea = new Rectangle(784, 393, 555, 442); + // 設定 PictureBox 的大小與位置(依你的需要調整) + ResizeAndPositionPictureBox(FavoritePictureBox, 773, 380, image.Width, image.Height); - - Bitmap croppedImage = CropImage(originalImage, cropArea); + FavoritePictureBox.Visible = true; + } + else + { + Console.WriteLine("圖片檔案不存在:" + imagePath); + } - - FavoritePictureBox.Image = croppedImage; - - - ResizeAndPositionPictureBox(FavoritePictureBox, cropArea.X, cropArea.Y, 416, 323); - - FavoritePictureBox.Visible = true; } private void ToggleFavoritePictureBoxButtonsVisibility() diff --git a/PrimaryFormParts/PrimaryForm.Promotions.cs b/PrimaryFormParts/PrimaryForm.Promotions.cs index e446c75..7472ca9 100644 --- a/PrimaryFormParts/PrimaryForm.Promotions.cs +++ b/PrimaryFormParts/PrimaryForm.Promotions.cs @@ -100,9 +100,10 @@ namespace DualScreenDemo return images; } - + // 優惠活動 按鈕事件 private void promotionsButton_Click(object sender, EventArgs e) { + promotionsAndMenuPanel.currentPageIndex=0; newSongAlertButton.BackgroundImage = newSongAlertNormalBackground; hotPlayButton.BackgroundImage = hotPlayNormalBackground; singerSearchButton.BackgroundImage = singerSearchNormalBackground; @@ -135,7 +136,7 @@ namespace DualScreenDemo pictureBoxQRCode.Visible = false; closeQRCodeButton.Visible = false; } - + SetPictureBoxToggleLightAndButtonsVisibility(false); } diff --git a/PrimaryFormParts/PrimaryForm.QRCode.cs b/PrimaryFormParts/PrimaryForm.QRCode.cs index 734ae3f..9c5287c 100644 --- a/PrimaryFormParts/PrimaryForm.QRCode.cs +++ b/PrimaryFormParts/PrimaryForm.QRCode.cs @@ -15,7 +15,7 @@ namespace DualScreenDemo try { - string imagePath = Path.Combine(Application.StartupPath, "themes/superstar/cropped_qrcode.jpg"); + string imagePath = Path.Combine(Application.StartupPath, "themes/superstar/cropped_qrcode.png"); if (!File.Exists(imagePath)) { Console.WriteLine("Base image not found: " + imagePath); @@ -81,7 +81,7 @@ namespace DualScreenDemo using (Graphics g = Graphics.FromImage(bitmap)) { - g.DrawImage(baseImage, 0, 0); + g.DrawImage(baseImage, new Rectangle(0, 0, bitmap.Width, bitmap.Height)); @@ -97,10 +97,10 @@ namespace DualScreenDemo } - ResizeAndPositionControl(pictureBoxQRCode, 975, 442, 226, 274); + ResizeAndPositionControl(pictureBoxQRCode, 975, 442, 225, 280); - Bitmap originalImage = new Bitmap(Path.Combine(Application.StartupPath, "themes\\superstar\\cropped_qrcode.jpg")); + Bitmap originalImage = new Bitmap(Path.Combine(Application.StartupPath, "themes\\superstar\\cropped_qrcode.png")); Rectangle closeQRCodeCropArea = new Rectangle(198, 6, 22, 22); diff --git a/PrimaryFormParts/PrimaryForm.SoundEffects.cs b/PrimaryFormParts/PrimaryForm.SoundEffects.cs index 19dd251..e38ba0e 100644 --- a/PrimaryFormParts/PrimaryForm.SoundEffects.cs +++ b/PrimaryFormParts/PrimaryForm.SoundEffects.cs @@ -25,6 +25,28 @@ namespace DualScreenDemo { mediaPlayer = new WindowsMediaPlayer(); } + private void ConfigureImageButton(Button button, int posX, int posY, int width, int height, + string imagePath, EventHandler clickEventHandler) + { + Bitmap image = new Bitmap(imagePath); + button.SetBounds(posX, posY, image.Width, image.Height); + + // 載入圖片 + button.BackgroundImage = image; + button.BackgroundImageLayout = ImageLayout.Stretch; + + // 按鈕樣式設定 + button.FlatStyle = FlatStyle.Flat; + button.FlatAppearance.BorderSize = 0; + button.FlatAppearance.MouseDownBackColor = Color.Transparent; + button.FlatAppearance.MouseOverBackColor = Color.Transparent; + + // 點擊事件 + if (clickEventHandler != null) + button.Click += clickEventHandler; + + this.Controls.Add(button); + } private void InitializeSoundEffectButtons() { @@ -33,9 +55,9 @@ namespace DualScreenDemo { Name = "constructionButton", }; - ConfigureButton(constructionButton, 876, 494, 148, 64, - resizedNormalStateImageForSceneSoundEffects, resizedNormalStateImageForSceneSoundEffects, resizedNormalStateImageForSceneSoundEffects, - ConstructionButton_Click); + string path = Path.Combine(Application.StartupPath, @"themes\superstar\場景音效\場景音效_工地.png"); + ConfigureImageButton(constructionButton, 1183, 634, 148, 64, + path, ConstructionButton_Click); this.Controls.Add(constructionButton); @@ -43,9 +65,9 @@ namespace DualScreenDemo { Name = "marketButton", }; - ConfigureButton(marketButton, 1037, 495, 148, 63, - resizedNormalStateImageForSceneSoundEffects, resizedNormalStateImageForSceneSoundEffects, resizedNormalStateImageForSceneSoundEffects, - MarketButton_Click); + path = Path.Combine(Application.StartupPath, @"themes\superstar\場景音效\場景音效_市場.png"); + ConfigureImageButton(marketButton, 1394, 634, 148, 63, + path, MarketButton_Click); this.Controls.Add(marketButton); @@ -53,9 +75,9 @@ namespace DualScreenDemo { Name = "drivingButton", }; - ConfigureButton(drivingButton, 876, 570, 148, 63, - resizedNormalStateImageForSceneSoundEffects, resizedNormalStateImageForSceneSoundEffects, resizedNormalStateImageForSceneSoundEffects, - DrivingButton_Click); + path = Path.Combine(Application.StartupPath, @"themes\superstar\場景音效\場景音效_開車.png"); + ConfigureImageButton(drivingButton, 1183, 720, 148, 63, + path, DrivingButton_Click); this.Controls.Add(drivingButton); @@ -63,9 +85,9 @@ namespace DualScreenDemo { Name = "airportButton", }; - ConfigureButton(airportButton, 1037, 570, 148, 63, - resizedNormalStateImageForSceneSoundEffects, resizedNormalStateImageForSceneSoundEffects, resizedNormalStateImageForSceneSoundEffects, - AirportButton_Click); + path = Path.Combine(Application.StartupPath, @"themes\superstar\場景音效\場景音效_機場.png"); + ConfigureImageButton(airportButton, 1394, 720, 148, 63, + path, AirportButton_Click); this.Controls.Add(airportButton); @@ -73,9 +95,9 @@ namespace DualScreenDemo { Name = "officeButton", }; - ConfigureButton(officeButton, 876, 646, 148, 64, - resizedNormalStateImageForSceneSoundEffects, resizedNormalStateImageForSceneSoundEffects, resizedNormalStateImageForSceneSoundEffects, - OfficeButton_Click); + path = Path.Combine(Application.StartupPath, @"themes\superstar\場景音效\場景音效_辦公室.png"); + ConfigureImageButton(officeButton, 1183, 806, 148, 64, + path, OfficeButton_Click); this.Controls.Add(officeButton); @@ -83,10 +105,9 @@ namespace DualScreenDemo { Name = "closeButton", }; - - ConfigureButton(closeButton, 1036, 646, 150, 63, - resizedNormalStateImageForSceneSoundEffects, resizedNormalStateImageForSceneSoundEffects, resizedNormalStateImageForSceneSoundEffects, - CloseButton_Click); + path = Path.Combine(Application.StartupPath, @"themes\superstar\場景音效\場景音效_關閉.png"); + ConfigureImageButton(closeButton, 1394, 806, 150, 63, + path, CloseButton_Click); this.Controls.Add(closeButton); } @@ -100,7 +121,7 @@ namespace DualScreenDemo if (!pictureBoxSceneSoundEffects.Visible) { - ShowImageOnPictureBoxSceneSoundEffects(Path.Combine(Application.StartupPath, @"themes\superstar\555022.jpg")); + ShowImageOnPictureBoxSceneSoundEffects(Path.Combine(Application.StartupPath, @"themes\superstar\場景音效\場景音效.png")); SetPictureBoxSceneSoundEffectsAndButtonsVisibility(true); } else @@ -135,28 +156,30 @@ namespace DualScreenDemo public void PlayApplauseSound() { - mediaPlayer.URL = Path.Combine(Application.StartupPath, "zs.m4a"); + mediaPlayer.URL = Path.Combine(Application.StartupPath,"sounds" ,"zs.m4a"); mediaPlayer.controls.play(); } - + // 按鈕位置需要更改,底圖需要更改 private void ShowImageOnPictureBoxSceneSoundEffects(string imagePath) { - Bitmap originalImage = new Bitmap(imagePath); + if (File.Exists(imagePath)) + { + // 直接載入完整圖 + Bitmap image = new Bitmap(imagePath); - - Rectangle cropArea = new Rectangle(859, 427, 342, 295); + // 顯示在 PictureBox 上 + pictureBoxSceneSoundEffects.Image = image; - - Bitmap croppedImage = CropImage(originalImage, cropArea); + // 設定 PictureBox 的大小與位置(依你的需要調整) + ResizeAndPositionPictureBox(pictureBoxSceneSoundEffects, 850, 450, image.Width , image.Height); - - pictureBoxSceneSoundEffects.Image = croppedImage; - - - ResizeAndPositionPictureBox(pictureBoxSceneSoundEffects, cropArea.X, cropArea.Y, cropArea.Width, cropArea.Height); - - pictureBoxSceneSoundEffects.Visible = true; + pictureBoxSceneSoundEffects.Visible = true; + } + else + { + Console.WriteLine("圖片檔案不存在:" + imagePath); + } } private void TogglePictureBoxSceneSoundEffectsButtonsVisibility() diff --git a/PrimaryFormParts/PrimaryForm.SyncScreen.cs b/PrimaryFormParts/PrimaryForm.SyncScreen.cs index 053909a..78ef0d0 100644 --- a/PrimaryFormParts/PrimaryForm.SyncScreen.cs +++ b/PrimaryFormParts/PrimaryForm.SyncScreen.cs @@ -1,7 +1,7 @@ using System; using System.Drawing; using System.Windows.Forms; - +using OverlayFormObj; namespace DualScreenDemo { public partial class PrimaryForm : Form @@ -49,11 +49,11 @@ namespace DualScreenDemo - + //同步畫面 服務鈴 ConfigureButton(this.syncServiceBellButton, 1240, 17, 161, 161, resizedNormalStateImageForSyncScreen, resizedNormalStateImageForSyncScreen, resizedNormalStateImageForSyncScreen, - (sender, e) => SendCommandThroughSerialPort("a2 53 a4")); - + //(sender, e) => SendCommandThroughSerialPort("a2 53 a4")); + (sender,e)=>OnServiceBellButtonClick(sender,e)); diff --git a/PrimaryFormParts/PrimaryForm.VodScreen.cs b/PrimaryFormParts/PrimaryForm.VodScreen.cs index 2dafdef..5992dcf 100644 --- a/PrimaryFormParts/PrimaryForm.VodScreen.cs +++ b/PrimaryFormParts/PrimaryForm.VodScreen.cs @@ -3,7 +3,8 @@ using System.Drawing; using System.Windows.Forms; using System.IO; using System.Linq; - +using DBObj; +using OverlayFormObj; namespace DualScreenDemo { public partial class PrimaryForm diff --git a/PrimaryFormParts/PrimaryForm.cs b/PrimaryFormParts/PrimaryForm.cs index cb17bd0..903196b 100644 --- a/PrimaryFormParts/PrimaryForm.cs +++ b/PrimaryFormParts/PrimaryForm.cs @@ -11,7 +11,8 @@ using NAudio.Wave; using Microsoft.Ink; using System.Text.RegularExpressions; using WMPLib; - +using DBObj; +using OverlayFormObj; namespace DualScreenDemo { public partial class PrimaryForm : Form @@ -46,25 +47,25 @@ namespace DualScreenDemo private PictureBox pictureBoxArtistSearch; - private Button[] numberButtonsArtistSearch; - private Button modifyButtonArtistSearch, closeButtonArtistSearch; - private RichTextBox inputBoxArtistSearch; + // private Button[] numberButtonsArtistSearch; + // private Button modifyButtonArtistSearch, closeButtonArtistSearch; + //private RichTextBox inputBoxArtistSearch; private const int offsetXArtistSearch = 100; private const int offsetYArtistSearch = 100; - private PictureBox pictureBoxWordCount; + //private PictureBox pictureBoxWordCount; - private Button[] numberButtonsWordCount; - private Button modifyButtonWordCount, closeButtonWordCount; - private RichTextBox inputBoxWordCount; + //private Button[] numberButtonsWordCount; + // private Button modifyButtonWordCount, closeButtonWordCount; + // private RichTextBox inputBoxWordCount; private const int offsetXWordCount = 100; private const int offsetYWordCount = 100; - private PictureBox pictureBoxSongIDSearch; + //private PictureBox pictureBoxSongIDSearch; - private Button[] numberButtonsSongIDSearch; - private Button modifyButtonSongIDSearch, closeButtonSongIDSearch; - private RichTextBox inputBoxSongIDSearch; + //private Button[] numberButtonsSongIDSearch; + //private Button modifyButtonSongIDSearch, closeButtonSongIDSearch; + //private RichTextBox inputBoxSongIDSearch; private const int offsetXSongID = 100; private const int offsetYSongID = 100; private const int offsetXPinYin = 100; @@ -158,14 +159,6 @@ namespace DualScreenDemo private static Bitmap resizedMouseOverImageForLanguageQuery; private static Bitmap resizedMouseDownImageForLanguageQuery; - private static Bitmap normalStateImage6_1; - private static Bitmap mouseOverImage6_1; - private static Bitmap mouseDownImage6_1; - - private static Bitmap resizedNormalStateImageFor6_1; - private static Bitmap resizedMouseOverImageFor6_1; - private static Bitmap resizedMouseDownImageFor6_1; - private static Bitmap normalStateImageCategoryQuery; private static Bitmap mouseOverImageCategoryQuery; private static Bitmap mouseDownImageCategoryQuery; @@ -174,23 +167,6 @@ namespace DualScreenDemo private static Bitmap resizedMouseOverImageForCategoryQuery; private static Bitmap resizedMouseDownImageForCategoryQuery; - private static Bitmap normalStateImage7_1; - private static Bitmap mouseOverImage7_1; - private static Bitmap mouseDownImage7_1; - - private static Bitmap resizedNormalStateImageFor7_1; - private static Bitmap resizedMouseOverImageFor7_1; - private static Bitmap resizedMouseDownImageFor7_1; - - private static Bitmap normalStateImage7_1_1; - private static Bitmap mouseOverImage7_1_1; - private static Bitmap mouseDownImage7_1_1; - - private static Bitmap resizedNormalStateImageFor7_1_1; - private static Bitmap resizedMouseOverImageFor7_1_1; - private static Bitmap resizedMouseDownImageFor7_1_1; - - private static Bitmap normalStateImageForPromotionsAndMenu; private static Bitmap resizedNormalStateImageForPromotionsAndMenu; @@ -236,8 +212,26 @@ namespace DualScreenDemo public static int currentSongIndexInHistory = -1; public MultiPagePanel multiPagePanel; private List