├── .gitattributes ├── specialdlp ├── specialdlp │ ├── res │ │ ├── antiLeech.rc2 │ │ ├── antiLeech.rc │ │ └── resource.h │ ├── def │ │ ├── antiLeech.def │ │ ├── antiLeecharm.def │ │ ├── antiLeechx64.def │ │ ├── antiLeecharm64.def │ │ └── antiLeecharm64ec.def │ ├── specialdlp.vcxproj.filters │ └── antiLeech.h ├── specialdlpTester │ ├── specialdlpTester.vcxproj.filters │ ├── resource.h │ ├── specialdlpTester.h │ ├── specialdlpTester.rc │ ├── specialdlpTester.cpp │ └── specialdlpTester.vcxproj ├── document │ ├── readme.zh-hans.md │ ├── readme.zh-hant.md │ ├── readme.en.md │ ├── readme.zh-hans.html │ ├── readme.zh-hant.html │ ├── readme.en.html │ ├── readme.zh-hans.txt │ ├── readme.zh-hant.txt │ ├── readme.en.txt │ └── checksum.md ├── script │ └── sdc_checksum.py └── specialdlp.sln ├── readme.zh-hans.md ├── readme.zh-hant.md ├── readme.md ├── license └── license.specialdlpTester /.gitattributes: -------------------------------------------------------------------------------- 1 | # Attribute: Binary 2 | *.exe binary 3 | *.new binary 4 | 5 | # Attribute: Text 6 | *.def text eol=crlf 7 | *.filters text eol=crlf 8 | *.rc text eol=crlf 9 | *.rc2 text eol=crlf 10 | *.sln text eol=crlf 11 | *.vcxproj text eol=crlf 12 | -------------------------------------------------------------------------------- /specialdlp/specialdlp/res/antiLeech.rc2: -------------------------------------------------------------------------------- 1 | // 2 | // antiLeech.RC2 - Ressourcen, die Microsoft Visual C++ nicht direkt bearbeitet 3 | // 4 | 5 | #ifdef APSTUDIO_INVOKED 6 | #error Diese Datei kann nicht in Microsoft Visual C++ bearbeitet werden. 7 | #endif //APSTUDIO_INVOKED 8 | 9 | 10 | ///////////////////////////////////////////////////////////////////////////// 11 | // Fügen Sie hier manuell bearbeitete Ressourcen hinzu... 12 | 13 | 14 | ///////////////////////////////////////////////////////////////////////////// 15 | -------------------------------------------------------------------------------- /specialdlp/specialdlp/def/antiLeech.def: -------------------------------------------------------------------------------- 1 | ; antiLeech.def : Deklariert die Modulparameter für die DLL. 2 | 3 | LIBRARY "antiLeech" 4 | 5 | EXPORTS 6 | ; SDC team start 7 | ; TestFunc @1 8 | ; SDC team end 9 | GetDLPVersion @2 10 | ; DLPCheckModstring @3 11 | ; DLPCheckUsername @4 12 | ; DLPCheckNameAndHash @5 13 | DLPCheckHelloTag @6 14 | DLPCheckInfoTag @7 15 | DLPCheckModstring_Hard @8 16 | DLPCheckModstring_Soft @9 17 | DLPCheckUsername_Hard @10 18 | DLPCheckUsername_Soft @11 19 | DLPCheckNameAndHashAndMod @12 20 | DLPCheckMessageSpam @13 21 | DLPCheckUserhash @14 22 | ; Explizite Exporte können hier eingefügt werden 23 | -------------------------------------------------------------------------------- /specialdlp/specialdlp/def/antiLeecharm.def: -------------------------------------------------------------------------------- 1 | ; antiLeech.def : Deklariert die Modulparameter für die DLL. 2 | 3 | ; SDC team start 4 | LIBRARY "antiLeecharm" 5 | ; SDC team end 6 | 7 | EXPORTS 8 | ; SDC team start 9 | ; TestFunc @1 10 | ; SDC team end 11 | GetDLPVersion @2 12 | ; DLPCheckModstring @3 13 | ; DLPCheckUsername @4 14 | ; DLPCheckNameAndHash @5 15 | DLPCheckHelloTag @6 16 | DLPCheckInfoTag @7 17 | DLPCheckModstring_Hard @8 18 | DLPCheckModstring_Soft @9 19 | DLPCheckUsername_Hard @10 20 | DLPCheckUsername_Soft @11 21 | DLPCheckNameAndHashAndMod @12 22 | DLPCheckMessageSpam @13 23 | DLPCheckUserhash @14 24 | ; Explizite Exporte können hier eingefügt werden 25 | -------------------------------------------------------------------------------- /specialdlp/specialdlp/def/antiLeechx64.def: -------------------------------------------------------------------------------- 1 | ; antiLeech.def : Deklariert die Modulparameter für die DLL. 2 | 3 | ; SDC team start 4 | LIBRARY "antiLeechx64" 5 | ; SDC team end 6 | 7 | EXPORTS 8 | ; SDC team start 9 | ; TestFunc @1 10 | ; SDC team end 11 | GetDLPVersion @2 12 | ; DLPCheckModstring @3 13 | ; DLPCheckUsername @4 14 | ; DLPCheckNameAndHash @5 15 | DLPCheckHelloTag @6 16 | DLPCheckInfoTag @7 17 | DLPCheckModstring_Hard @8 18 | DLPCheckModstring_Soft @9 19 | DLPCheckUsername_Hard @10 20 | DLPCheckUsername_Soft @11 21 | DLPCheckNameAndHashAndMod @12 22 | DLPCheckMessageSpam @13 23 | DLPCheckUserhash @14 24 | ; Explizite Exporte können hier eingefügt werden 25 | -------------------------------------------------------------------------------- /specialdlp/specialdlp/def/antiLeecharm64.def: -------------------------------------------------------------------------------- 1 | ; antiLeech.def : Deklariert die Modulparameter für die DLL. 2 | 3 | ; SDC team start 4 | LIBRARY "antiLeecharm64" 5 | ; SDC team end 6 | 7 | EXPORTS 8 | ; SDC team start 9 | ; TestFunc @1 10 | ; SDC team end 11 | GetDLPVersion @2 12 | ; DLPCheckModstring @3 13 | ; DLPCheckUsername @4 14 | ; DLPCheckNameAndHash @5 15 | DLPCheckHelloTag @6 16 | DLPCheckInfoTag @7 17 | DLPCheckModstring_Hard @8 18 | DLPCheckModstring_Soft @9 19 | DLPCheckUsername_Hard @10 20 | DLPCheckUsername_Soft @11 21 | DLPCheckNameAndHashAndMod @12 22 | DLPCheckMessageSpam @13 23 | DLPCheckUserhash @14 24 | ; Explizite Exporte können hier eingefügt werden 25 | -------------------------------------------------------------------------------- /specialdlp/specialdlp/def/antiLeecharm64ec.def: -------------------------------------------------------------------------------- 1 | ; antiLeech.def : Deklariert die Modulparameter für die DLL. 2 | 3 | ; SDC team start 4 | LIBRARY "antiLeecharm64ec" 5 | ; SDC team end 6 | 7 | EXPORTS 8 | ; SDC team start 9 | ; TestFunc @1 10 | ; SDC team end 11 | GetDLPVersion @2 12 | ; DLPCheckModstring @3 13 | ; DLPCheckUsername @4 14 | ; DLPCheckNameAndHash @5 15 | DLPCheckHelloTag @6 16 | DLPCheckInfoTag @7 17 | DLPCheckModstring_Hard @8 18 | DLPCheckModstring_Soft @9 19 | DLPCheckUsername_Hard @10 20 | DLPCheckUsername_Soft @11 21 | DLPCheckNameAndHashAndMod @12 22 | DLPCheckMessageSpam @13 23 | DLPCheckUserhash @14 24 | ; Explizite Exporte können hier eingefügt werden 25 | -------------------------------------------------------------------------------- /specialdlp/specialdlpTester/specialdlpTester.vcxproj.filters: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | 18 | 19 | Source Files 20 | 21 | 22 | 23 | 24 | Header Files 25 | 26 | 27 | Header Files 28 | 29 | 30 | 31 | 32 | Resource Files 33 | 34 | 35 | -------------------------------------------------------------------------------- /readme.zh-hans.md: -------------------------------------------------------------------------------- 1 | Strict DLP Chinese (SDC) 2 | ===== 3 | 4 |

5 | 6 |

7 | 8 | Strict DLP Chinese (SDC) 是基于 eMule Xtreme Mod 的官方 DLP (动态反吸血驴保护,Dynamic Leech Protection)库的严格版本。在官方 DLP 库基础上,SDC 将 easyMule 第 2 版、easyMule 第 1 版和 VeryCD Mod 之中的部分或全部加入了软性或硬性屏蔽列表,原因是违反 GPL、使用私有网络和社区客户端等不良行为(详见 [VeryCD 客户端的问题](https://emulefans.com/strict-dlp-chinese-v44006/#toc-verycd))。 9 | 10 |

11 | English | 繁體中文介紹 12 |

13 | 14 | * [eMuleFans 电骡爱好者上的 SDC 完整介绍文章](https://emulefans.com/strict-dlp-chinese-v44006) 15 | * [不同 SDC 版本的功能表格](https://github.com/chengr28/specialdlp/blob/master/specialdlp/document/readme.zh-hans.md) 16 | * [下载某一 SDC 版本](https://github.com/chengr28/specialdlp/tree/binary) 17 | * [Releases 页面:打包下载所有 SDC 版本](https://github.com/chengr28/specialdlp/releases) 18 | * [常见问题解答和其他说明](https://github.com/chengr28/specialdlp/blob/master/specialdlp/document/readme.zh-hans.txt) 19 | * [更新日志](https://github.com/chengr28/specialdlp/blob/master/specialdlp/document/changelog.zh-hans.txt) 20 | * [文件校验码](https://github.com/chengr28/specialdlp/blob/master/specialdlp/document/checksum.md) 21 | 22 | ## 外部链接 23 | 24 | * [GitLab 项目主页](https://gitlab.com/chengr28/specialdlp) 25 | * [Sourceforge 项目主页](https://sourceforge.net/projects/specialdlp) 26 | * [eMuleFans 电骡爱好者上的 SDC 页面](https://emulefans.com/news/plugin/dlp/sdc) 27 | -------------------------------------------------------------------------------- /readme.zh-hant.md: -------------------------------------------------------------------------------- 1 | Strict DLP Chinese (SDC) 2 | ===== 3 | 4 |

5 | 6 |

7 | 8 | Strict DLP Chinese (SDC) 是基於 eMule Xtreme Mod 的官方 DLP (動態反吸血驢保護,Dynamic Leech Protection)庫的嚴格版本。在官方 DLP 庫基礎上,SDC 將 easyMule 第 2 版、easyMule 第 1 版和 VeryCD Mod 之中的部分或全部加入了軟性或硬性封禁列表,原因是違反 GPL、使用私有網路和社群客戶端等不良行為(詳見 [VeryCD 客戶端的問題](https://emulefans.com/strict-dlp-chinese-v44006/?variant=zh-tw#toc-verycd))。 9 | 10 |

11 | English | 简体中文介绍 12 |

13 | 14 | * [eMuleFans 電騾愛好者上的 SDC 完整介紹文章](https://emulefans.com/strict-dlp-chinese-v44006/?variant=zh-tw) 15 | * [不同 SDC 版本的功能表格](https://github.com/chengr28/specialdlp/blob/master/specialdlp/document/readme.zh-hant.md) 16 | * [下載某一 SDC 版本](https://github.com/chengr28/specialdlp/tree/binary) 17 | * [Releases 頁面:打包下載所有 SDC 版本](https://github.com/chengr28/specialdlp/releases) 18 | * [常見問題解答和其他說明](https://github.com/chengr28/specialdlp/blob/master/specialdlp/document/readme.zh-hant.txt) 19 | * [更新日誌](https://github.com/chengr28/specialdlp/blob/master/specialdlp/document/changelog.zh-hant.txt) 20 | * [檔案校驗碼](https://github.com/chengr28/specialdlp/blob/master/specialdlp/document/checksum.md) 21 | 22 | ## 外部連結 23 | 24 | * [GitLab 專案主頁](https://gitlab.com/chengr28/specialdlp) 25 | * [Sourceforge 專案主頁](https://sourceforge.net/projects/specialdlp) 26 | * [eMuleFans 電騾愛好者上的 SDC 頁面](https://emulefans.com/news/plugin/dlp/sdc/?variant=zh-tw) 27 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | Strict DLP Chinese (SDC) 2 | ===== 3 | 4 |

5 | 6 |

7 | 8 | Strict DLP Chinese (SDC) is a set of strict DLP (Dynamic Leech Protection) DLLs based on the eMule Xtreme Mod's official version. SDC variants put easyMule v2, easyMule v1 and/or eMule VeryCD Mod into "Soft Ban" or "Hard Ban" list because of GPL violation, private network, community leeching, and other behaviors. 9 | 10 |

11 | 简体中文介绍 | 繁體中文介紹 12 |

13 | 14 | * [Feature table for SDC variants](https://github.com/chengr28/specialdlp/blob/master/specialdlp/document/readme.en.md) 15 | * [Download a single SDC variant](https://github.com/chengr28/specialdlp/tree/binary) 16 | * [Releases page: Download all SDC variants in a signle package](https://github.com/chengr28/specialdlp/releases) 17 | * [FAQs and other tips](https://github.com/chengr28/specialdlp/blob/master/specialdlp/document/readme.en.txt) 18 | * [Changelog](https://github.com/chengr28/specialdlp/blob/master/specialdlp/document/changelog.en.txt) 19 | * [Checksum](https://github.com/chengr28/specialdlp/blob/master/specialdlp/document/checksum.md) 20 | 21 | ## External Links 22 | 23 | * [Project in GitLab](https://gitlab.com/chengr28/specialdlp) 24 | * [Project in Sourceforge](https://sourceforge.net/projects/specialdlp) 25 | * [SDC in eMuleFans 电骡爱好者](https://emulefans.com/news/plugin/dlp/sdc) 26 | -------------------------------------------------------------------------------- /specialdlp/specialdlp/specialdlp.vcxproj.filters: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 6 | h;hh;hpp;hxx;hm;inl;inc;xsd 7 | 8 | 9 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 10 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 11 | 12 | 13 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 14 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 15 | 16 | 17 | {3c5dedcd-c503-4a5f-8fa4-ecfbb52de66e} 18 | 19 | 20 | 21 | 22 | Resource Files 23 | 24 | 25 | Module-Definition Files 26 | 27 | 28 | Module-Definition Files 29 | 30 | 31 | Module-Definition Files 32 | 33 | 34 | Module-Definition Files 35 | 36 | 37 | Module-Definition Files 38 | 39 | 40 | 41 | 42 | Header Files 43 | 44 | 45 | Header Files 46 | 47 | 48 | 49 | 50 | Source Files 51 | 52 | 53 | 54 | 55 | Resource Files 56 | 57 | 58 | -------------------------------------------------------------------------------- /specialdlp/specialdlpTester/resource.h: -------------------------------------------------------------------------------- 1 | // Strict DLP Chinese (SDC) is a set of strict DLP (Dynamic Leech Protection) DLLs based on the eMule Xtreme Mod's official version. 2 | // Copyright (C) 2009-2025 SDC Team 3 | // 4 | // This program is free software: you can redistribute it and/or modify 5 | // it under the terms of the GNU General Public License as published by 6 | // the Free Software Foundation, either version 3 of the License, or 7 | // (at your option) any later version. 8 | // 9 | // This program is distributed in the hope that it will be useful, 10 | // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | // GNU General Public License for more details. 13 | // 14 | // You should have received a copy of the GNU General Public License 15 | // along with this program. If not, see . 16 | 17 | 18 | #ifndef SDC_TESTER_INCLUDE_RESOURCE_H 19 | #define SDC_TESTER_INCLUDE_RESOURCE_H 20 | 21 | //{{NO_DEPENDENCIES}} 22 | // Microsoft Visual C++ generated include file. 23 | // Used by specialdlpTester.rc 24 | 25 | // Next default values for new objects 26 | // 27 | #ifdef APSTUDIO_INVOKED 28 | #ifndef APSTUDIO_READONLY_SYMBOLS 29 | #define _APS_NEXT_RESOURCE_VALUE 101 30 | #define _APS_NEXT_COMMAND_VALUE 40001 31 | #define _APS_NEXT_CONTROL_VALUE 1001 32 | #define _APS_NEXT_SYMED_VALUE 101 33 | #endif 34 | #endif 35 | 36 | //External dependency 37 | //No dependency 38 | 39 | //Internal dependency 40 | //No dependency 41 | 42 | //Library dependency 43 | //No dependency 44 | 45 | //Size and length definition 46 | //No definition 47 | 48 | //Structure definition 49 | //No definition 50 | 51 | //Code definition 52 | #define SDC_TESTER_RESOURCE_COMPANY_NAME "SDC Team" 53 | #define SDC_TESTER_RESOURCE_FILE_DESCRIPTION "Strict DLP Chinese (SDC) is a set of strict DLP (Dynamic Leech Protection) DLLs based on the eMule Xtreme Mod's official version." 54 | #define SDC_TESTER_RESOURCE_FILE_VERSION_COMMA 44,0,0,6 55 | #define SDC_TESTER_RESOURCE_FILE_VERSION_STRING "44006" 56 | #define SDC_TESTER_RESOURCE_INTERNAL_NAME "specialdlpTester.exe" 57 | #define SDC_TESTER_RESOURCE_LEGAL_COPYRIGHT "Copyright (C) 2009-2025 SDC Team" 58 | #define SDC_TESTER_RESOURCE_ORIGINAL_FILE_NAME SDC_TESTER_RESOURCE_INTERNAL_NAME 59 | #define SDC_TESTER_RESOURCE_PRODUCT_NAME "Strict DLP Chinese (SDC) Tester" 60 | #define SDC_TESTER_RESOURCE_PRODUCT_VERSION_COMMA SDC_TESTER_RESOURCE_FILE_VERSION_COMMA 61 | #define SDC_TESTER_RESOURCE_PRODUCT_VERSION_STRING SDC_TESTER_RESOURCE_FILE_VERSION_STRING 62 | 63 | //Template definition 64 | //No definition 65 | 66 | //Class definition 67 | //No definition 68 | 69 | //Function definition 70 | //No definition 71 | 72 | #endif 73 | -------------------------------------------------------------------------------- /specialdlp/specialdlpTester/specialdlpTester.h: -------------------------------------------------------------------------------- 1 | // Strict DLP Chinese (SDC) is a set of strict DLP (Dynamic Leech Protection) DLLs based on the eMule Xtreme Mod's official version. 2 | // Copyright (C) 2009-2025 SDC Team 3 | // 4 | // This program is free software: you can redistribute it and/or modify 5 | // it under the terms of the GNU General Public License as published by 6 | // the Free Software Foundation, either version 3 of the License, or 7 | // (at your option) any later version. 8 | // 9 | // This program is distributed in the hope that it will be useful, 10 | // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | // GNU General Public License for more details. 13 | // 14 | // You should have received a copy of the GNU General Public License 15 | // along with this program. If not, see . 16 | 17 | 18 | #ifndef SDC_TESTER_INCLUDE_SPECIALDLPTESTER_H 19 | #define SDC_TESTER_INCLUDE_SPECIALDLPTESTER_H 20 | 21 | //External dependency 22 | #include 23 | #include 24 | #include 25 | 26 | //Internal dependency 27 | //No dependency 28 | 29 | //Library dependency 30 | //No dependency 31 | 32 | //Size and length definition 33 | #define SDC_PATH_MAXSIZE 0xFFFF 34 | 35 | //Structure definition 36 | //No definition 37 | 38 | //Code definition 39 | #define SDC_LOCALE_SETTING ("en_US.UTF-8") 40 | #if (defined(WIN_X86) && !defined(WIN_X64)) 41 | #define SDC_LIBRARY_NAME ("antiLeech.dll") 42 | #elif defined(WIN_X64) 43 | #define SDC_LIBRARY_NAME ("antiLeechx64.dll") 44 | #elif (defined(WIN_ARM32) && !defined(WIN_ARM64)) 45 | #define SDC_LIBRARY_NAME ("antiLeecharm.dll") 46 | #elif (defined(WIN_ARM64) && !defined(WIN_ARM64EC)) 47 | #define SDC_LIBRARY_NAME ("antiLeecharm64.dll") 48 | #elif defined(WIN_ARM64EC) 49 | #define SDC_LIBRARY_NAME ("antiLeecharm64ec.dll") 50 | #else 51 | #define SDC_LIBRARY_NAME ("antiLeech.dll") 52 | #endif 53 | typedef DWORD(__cdecl * GETDLPVERSION)(void); 54 | typedef LPCWSTR(__cdecl * DLPCHECKMODSTRING_HARD)(LPCWSTR modversion, LPCWSTR clientversion); 55 | typedef LPCWSTR(__cdecl * DLPCHECKMODSTRING_SOFT)(LPCWSTR modversion, LPCWSTR clientversion); 56 | typedef LPCWSTR(__cdecl * DLPCHECKUSERNAME_HARD)(LPCWSTR username); 57 | typedef LPCWSTR(__cdecl * DLPCHECKUSERNAME_SOFT)(LPCWSTR username); 58 | typedef LPCWSTR(__cdecl * DLPCHECKNAMEANDHASHANDMOD)(const CString username, const CString & userhash, const CString & modversion); 59 | typedef LPCWSTR(__cdecl * DLPCHECKMESSAGESPAM)(LPCWSTR messagetext); 60 | typedef LPCWSTR(__cdecl * DLPCHECKHELLOTAG)(const UINT tagnumber); 61 | typedef LPCWSTR(__cdecl * DLPCHECKINFOTAG)(const UINT tagnumber); 62 | 63 | //Template definition 64 | //No definition 65 | 66 | //Class definition 67 | //No definition 68 | 69 | //Function definition 70 | static void PressReturnToEnd( 71 | void 72 | ); 73 | 74 | #endif 75 | -------------------------------------------------------------------------------- /specialdlp/document/readme.zh-hans.md: -------------------------------------------------------------------------------- 1 | ## 不同 SDC 版本的功能表格 2 | 3 |

4 | English | 繁體中文介紹 5 |

6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 |
DLP 版本
(点击链接下载)
对问题客户端的侦测情况与屏蔽方式修正官
方问题
VeryCD
Mod
VeryCD
Tag
easyMule
v1
easyMule
v2
默认昵称的
VeryCD Mod 和
easyMule v1
其它更多
吸血驴
SDCall-verycd
easymule没有特别进行区分
lite没有特别进行区分
verycd-
nickname
verycd-tag
官方原版 DLP 库没有特别进行区分
83 | 84 | * all-verycd: 对所有 VeryCD 系列客户端进行检测的版本,其中所有 VeryCD Mod 和 easyMule 被加入了软性吸血列表。 85 | * easymule: EasyMule 被加入了软性吸血列表。 86 | * lite: Xtreme 官方 DLP 修补漏检版本。 87 | * verycd-nickname: 所有昵称中含有 VeryCD 客户端默认昵称的 VeryCD Mod 和 easyMule 加入到软性吸血列表。 88 | * verycd-tag: 对所有昵称含有 [VeryCD] 进行检测的版本。 89 | -------------------------------------------------------------------------------- /specialdlp/document/readme.zh-hant.md: -------------------------------------------------------------------------------- 1 | ## 不同 SDC 版本的功能表格 2 | 3 |

4 | English | 简体中文介绍 5 |

6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 |
DLP 版本
(點選連結下載)
對問題客戶端的偵測情況與遮蔽方式修正官
方問題
VeryCD
Mod
VeryCD
Tag
easyMule
v1
easyMule
v2
預設暱稱的
VeryCD Mod 和
easyMule v1
其它更多
吸血驢
SDCall-verycd
easymule沒有特別進行區分
lite沒有特別進行區分
verycd-
nickname
verycd-tag
官方原版 DLP 庫沒有特別進行區分
83 | 84 | * all-verycd: 對所有 VeryCD 系列客戶端進行檢測的版本,其中所有 VeryCD Mod 和 easyMule 被加入了軟性吸血列表。 85 | * easymule: EasyMule 被加入了軟性吸血列表。 86 | * lite: Xtreme 官方 DLP 修補漏檢版本。 87 | * verycd-nickname: 所有暱稱中含有 VeryCD 客戶端預設暱稱的 VeryCD Mod 和 easyMule 加入到軟性吸血列表。 88 | * verycd-tag: 對所有暱稱含有 [VeryCD] 進行檢測的版本。 89 | -------------------------------------------------------------------------------- /specialdlp/script/sdc_checksum.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Strict DLP Chinese (SDC) is a set of strict DLP (Dynamic Leech Protection) DLLs based on the eMule Xtreme Mod's official version. 3 | # Copyright (C) 2009-2025 SDC Team 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | # Strict DLP Chinese (SDC) checksum script 19 | # Contributions: SDC team 20 | # 21 | 22 | 23 | # Import external module. 24 | import hashlib 25 | import os 26 | 27 | # Mark file location. 28 | root_path = os.getcwd() 29 | file_list = [] 30 | for current_path, sub_folder, file in os.walk(root_path): 31 | for filename in file: 32 | file_list.append(os.path.join(current_path, filename)) 33 | 34 | # Hash file and store result. 35 | result_list_text_sha3 = [] 36 | result_list_text_sha2 = [] 37 | result_list_markdown_sha3 = [] 38 | result_list_markdown_sha2 = [] 39 | for filename_index in file_list: 40 | with open(filename_index, r"rb") as current_file: 41 | digest = hashlib.file_digest(current_file, r"sha3_256") 42 | digest_result = digest.hexdigest() 43 | result_list_text_sha3.append(r" * sha3_256(" + filename_index + r") = " + digest_result + "\n") 44 | result_list_markdown_sha3.append(r"sha3_256(" + filename_index + r") | " + digest_result + r" |" + "\n") 45 | for filename_index in file_list: 46 | with open(filename_index, r"rb") as current_file: 47 | digest = hashlib.file_digest(current_file, r"sha256") 48 | digest_result = digest.hexdigest() 49 | result_list_text_sha2.append(r" * sha2_256(" + filename_index + r") = " + digest_result + "\n") 50 | result_list_markdown_sha2.append(r"sha2_256(" + filename_index + r") | " + digest_result + r" |" + "\n") 51 | 52 | # Write result to text file. 53 | writefile_name = r"checksum.txt" 54 | writefile_handle = open(writefile_name, mode = r"w", encoding = r"utf_8_sig") 55 | writefile_handle.write(r"* Release checksum" + "\n") 56 | for result_index in result_list_text_sha3: 57 | writefile_handle.write(result_index) 58 | for result_index in result_list_text_sha2: 59 | writefile_handle.write(result_index) 60 | writefile_handle.close() 61 | 62 | # Write result to markdown file. 63 | writefile_name = r"checksum.md" 64 | writefile_handle = open(writefile_name, mode = r"w", encoding = r"utf_8_sig") 65 | writefile_handle.write(r"Algorithm(File) | Hash |" + "\n") 66 | writefile_handle.write(r":--- | :--- |" + "\n") 67 | for result_index in result_list_markdown_sha3: 68 | writefile_handle.write(result_index) 69 | for result_index in result_list_markdown_sha2: 70 | writefile_handle.write(result_index) 71 | writefile_handle.close() 72 | 73 | # Pause to show the result. 74 | print() 75 | input("Press \"Return\" to end.") 76 | -------------------------------------------------------------------------------- /specialdlp/document/readme.en.md: -------------------------------------------------------------------------------- 1 | ## Feature table for SDC variants 2 | 3 |

4 | 简体中文介绍 | 繁體中文介紹 5 |

6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 |
DLP variant
(click to download)
Banning methodFix
official
bugs
VeryCD
Mod
VeryCD
Tag
easyMule
v1
easyMule
v2
Default
NickNames of
VeryCD Mod &
easyMule v1
More
Leechers
SDCall-verycdSoftNoSoftHardSoftYesYes
easymuleNoNoSoftHardN/AYesYes
liteNoNoNoHardN/AYesYes
verycd-
nickname
NoNoNoHardSoftYesYes
verycd-tagSoftSoftSoftHardSoftYesYes
Official DLPNoNoNoHardN/ANoNo
83 | 84 | * all-verycd: All VeryCD-Mod and VeryCD-EasyMule-Mod. 85 | * easymule: All VeryCD-EasyMule-Mod (not includes old VeryCD-Mod version). 86 | * lite: Lite version of SDC, only fixs some bugs. 87 | * verycd-nickname: All VeryCD-Mod and VeryCD-EasyMule-Mod whose nicknames are in the black dafault list. 88 | * verycd-tag: All clients whose nick name has "[VeryCD]". 89 | -------------------------------------------------------------------------------- /specialdlp/document/readme.zh-hans.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Strict DLP Chinese 5 | 6 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 |
DLP 版本对问题客户端的侦测情况与屏蔽方式修正官
方问题
VeryCD
Mod
VeryCD
Tag
easyMule v1easyMule v2默认昵称的
VeryCD 和 easyMule v1
其它更多
吸血驴
SDC
正式版
all-verycd
easymule没有特别进行区分
lite没有特别进行区分
verycd-
nickname
verycd-tag
官方原版 DLP 库没有特别进行区分
99 |
100 | * all-verycd: 对所有 VeryCD 系列客户端进行检测的版本,其中所有 VeryCD Mod 和 easyMule 被加入了软性吸血列表。
101 | * easymule: EasyMule 被加入了软性吸血列表。
102 | * lite: Xtreme 官方 DLP 修补漏检版本。
103 | * verycd-nickname: 所有昵称中含有 VeryCD 客户端默认昵称的 VeryCD Mod 和 easyMule 加入到软性吸血列表。
104 | * verycd-tag: 对所有昵称含有 [VeryCD] 进行检测的版本。 105 | 106 | 107 | -------------------------------------------------------------------------------- /specialdlp/document/readme.zh-hant.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Strict DLP Chinese 5 | 6 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 |
DLP 版本對問題客戶端的偵測情況與屏蔽方式修正官
方問題
VeryCD
Mod
VeryCD
Tag
easyMule v1easyMule v2默認暱稱的
VeryCD 和 easyMule v1
其它更多
吸血驢
SDC
正式版
all-verycd
easymule沒有特別進行區分
lite沒有特別進行區分
verycd-
nickname
verycd-tag
官方原版 DLP 庫沒有特別進行區分
99 |
100 | * all-verycd: 對所有 VeryCD 系列客戶端進行檢測的版本,其中所有 VeryCD Mod 和 easyMule 被加入了軟性吸血列表。
101 | * easymule: EasyMule 被加入了軟性吸血列表。
102 | * lite: Xtreme 官方 DLP 修補漏檢版本。
103 | * verycd-nickname: 所有暱稱中含有 VeryCD 客戶端預設暱稱的 VeryCD Mod 和 easyMule 加入到軟性吸血列表。
104 | * verycd-tag: 對所有暱稱含有 [VeryCD] 進行檢測的版本。 105 | 106 | 107 | -------------------------------------------------------------------------------- /specialdlp/document/readme.en.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Strict DLP Chinese 5 | 6 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 |
DLP variantBanning methodFix
official
bugs
VeryCD
Mod
VeryCD
Tag
easyMule v1easyMule v2Default
NickNames of
VeryCD Mod &
easyMule v1
More
Leechers
SDCall-verycdSoftNoSoftHardSoftYesYes
easymuleNoNoSoftHardN/AYesYes
liteNoNoNoHardN/AYesYes
verycd-
nickname
NoNoNoHardSoftYesYes
verycd-tagSoftSoftSoftHardSoftYesYes
Official DLPNoNoNoHardN/ANoNo
99 |
100 | * all-verycd: All VeryCD-Mod and VeryCD-EasyMule-Mod.
101 | * easymule: All VeryCD-EasyMule-Mod (not includes old VeryCD-Mod version).
102 | * lite: Lite version of SDC, only fixs some bugs.
103 | * verycd-nickname: All VeryCD-Mod and VeryCD-EasyMule-Mod whose nicknames are in the black dafault list.
104 | * verycd-tag: All clients whose nick name has "[VeryCD]". 105 | 106 | 107 | -------------------------------------------------------------------------------- /specialdlp/specialdlpTester/specialdlpTester.rc: -------------------------------------------------------------------------------- 1 | // Strict DLP Chinese (SDC) is a set of strict DLP (Dynamic Leech Protection) DLLs based on the eMule Xtreme Mod's official version. 2 | // Copyright (C) 2009-2025 SDC Team 3 | // 4 | // This program is free software: you can redistribute it and/or modify 5 | // it under the terms of the GNU General Public License as published by 6 | // the Free Software Foundation, either version 3 of the License, or 7 | // (at your option) any later version. 8 | // 9 | // This program is distributed in the hope that it will be useful, 10 | // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | // GNU General Public License for more details. 13 | // 14 | // You should have received a copy of the GNU General Public License 15 | // along with this program. If not, see . 16 | 17 | 18 | // Microsoft Visual C++ generated resource script. 19 | // 20 | #include "resource.h" 21 | 22 | #define APSTUDIO_READONLY_SYMBOLS 23 | ///////////////////////////////////////////////////////////////////////////// 24 | // 25 | // Generated from the TEXTINCLUDE 2 resource. 26 | // 27 | #include "winres.h" 28 | 29 | ///////////////////////////////////////////////////////////////////////////// 30 | #undef APSTUDIO_READONLY_SYMBOLS 31 | 32 | ///////////////////////////////////////////////////////////////////////////// 33 | // English (United States) resources 34 | 35 | #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) 36 | LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 37 | 38 | #ifdef APSTUDIO_INVOKED 39 | ///////////////////////////////////////////////////////////////////////////// 40 | // 41 | // TEXTINCLUDE 42 | // 43 | 44 | 1 TEXTINCLUDE 45 | BEGIN 46 | "resource.h\0" 47 | END 48 | 49 | 2 TEXTINCLUDE 50 | BEGIN 51 | "#include ""winres.h""\r\n" 52 | "\0" 53 | END 54 | 55 | 3 TEXTINCLUDE 56 | BEGIN 57 | "\r\n" 58 | "\0" 59 | END 60 | 61 | #endif // APSTUDIO_INVOKED 62 | 63 | 64 | ///////////////////////////////////////////////////////////////////////////// 65 | // 66 | // Version 67 | // 68 | 69 | VS_VERSION_INFO VERSIONINFO 70 | FILEVERSION SDC_TESTER_RESOURCE_FILE_VERSION_COMMA 71 | PRODUCTVERSION SDC_TESTER_RESOURCE_PRODUCT_VERSION_COMMA 72 | FILEFLAGSMASK VS_FFI_FILEFLAGSMASK 73 | #ifdef _DEBUG 74 | FILEFLAGS VS_FF_DEBUG 75 | #else 76 | FILEFLAGS 0x0L 77 | #endif 78 | FILEOS VOS_NT_WINDOWS32 79 | FILETYPE VFT_APP 80 | FILESUBTYPE VFT2_UNKNOWN 81 | BEGIN 82 | BLOCK "StringFileInfo" 83 | BEGIN 84 | BLOCK "040904b0" 85 | BEGIN 86 | VALUE "CompanyName", SDC_TESTER_RESOURCE_COMPANY_NAME 87 | VALUE "FileDescription", SDC_TESTER_RESOURCE_FILE_DESCRIPTION 88 | VALUE "FileVersion", SDC_TESTER_RESOURCE_FILE_VERSION_STRING 89 | VALUE "InternalName", SDC_TESTER_RESOURCE_INTERNAL_NAME 90 | VALUE "LegalCopyright", SDC_TESTER_RESOURCE_LEGAL_COPYRIGHT 91 | VALUE "OriginalFilename", SDC_TESTER_RESOURCE_ORIGINAL_FILE_NAME 92 | VALUE "ProductName", SDC_TESTER_RESOURCE_PRODUCT_NAME 93 | VALUE "ProductVersion", SDC_TESTER_RESOURCE_PRODUCT_VERSION_STRING 94 | END 95 | END 96 | BLOCK "VarFileInfo" 97 | BEGIN 98 | VALUE "Translation", 0x409, 1200 99 | END 100 | END 101 | 102 | #endif // English (United States) resources 103 | ///////////////////////////////////////////////////////////////////////////// 104 | 105 | 106 | #ifndef APSTUDIO_INVOKED 107 | ///////////////////////////////////////////////////////////////////////////// 108 | // 109 | // Generated from the TEXTINCLUDE 3 resource. 110 | // 111 | 112 | 113 | ///////////////////////////////////////////////////////////////////////////// 114 | #endif // not APSTUDIO_INVOKED 115 | -------------------------------------------------------------------------------- /specialdlp/specialdlp/res/antiLeech.rc: -------------------------------------------------------------------------------- 1 | // Microsoft Visual C++ generated resource script. 2 | // 3 | 4 | //SDC team start 5 | #if defined(SPECIAL_DLP_VERSION) 6 | #include "resource.h" 7 | #else //Official 8 | #include "resource1.h" 9 | #endif 10 | //SDC team end 11 | #include "antiLeech.h" 12 | 13 | #define APSTUDIO_READONLY_SYMBOLS 14 | ///////////////////////////////////////////////////////////////////////////// 15 | // 16 | // Generated from the TEXTINCLUDE 2 resource. 17 | // 18 | 19 | #include "afxres.h" 20 | 21 | ///////////////////////////////////////////////////////////////////////////// 22 | 23 | #undef APSTUDIO_READONLY_SYMBOLS 24 | 25 | ///////////////////////////////////////////////////////////////////////////// 26 | // Deutsch (Deutschland) resources 27 | 28 | #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_DEU) 29 | #ifdef _WIN32 30 | //SDC team start 31 | #if defined(SPECIAL_DLP_VERSION) 32 | LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 33 | #pragma code_page(65001) 34 | #else //Official 35 | LANGUAGE LANG_GERMAN, SUBLANG_GERMAN 36 | #pragma code_page(1252) 37 | #endif 38 | //SDC team end 39 | #endif //_WIN32 40 | 41 | #ifdef APSTUDIO_INVOKED 42 | ///////////////////////////////////////////////////////////////////////////// 43 | // 44 | // TEXTINCLUDE 45 | // 46 | 47 | 1 TEXTINCLUDE 48 | BEGIN 49 | //SDC team start 50 | #if defined(SPECIAL_DLP_VERSION) 51 | "resource.h\0" 52 | #else //Official 53 | "resource1.h\0" 54 | #endif 55 | //SDC team end 56 | END 57 | 58 | 2 TEXTINCLUDE 59 | BEGIN 60 | "#include ""afxres.h""\r\n" 61 | "\0" 62 | END 63 | 64 | 3 TEXTINCLUDE 65 | BEGIN 66 | "\r\n" 67 | "\0" 68 | END 69 | 70 | #endif // APSTUDIO_INVOKED 71 | 72 | ///////////////////////////////////////////////////////////////////////////// 73 | // 74 | // Version 75 | // 76 | 77 | VS_VERSION_INFO VERSIONINFO 78 | //SDC team start 79 | #if defined(SPECIAL_DLP_VERSION) 80 | FILEVERSION SDC_RESOURCE_VERSION 81 | PRODUCTVERSION SDC_RESOURCE_VERSION 82 | #else //Official 83 | FILEVERSION DLPVERSION,0,0,0 84 | PRODUCTVERSION DLPVERSION,0,0,0 85 | #endif 86 | //SDC team end 87 | FILEFLAGSMASK 0x17L 88 | #ifdef _DEBUG 89 | FILEFLAGS 0x1L 90 | #else 91 | FILEFLAGS 0x0L 92 | #endif 93 | FILEOS 0x4L 94 | FILETYPE 0x2L 95 | FILESUBTYPE 0x0L 96 | 97 | BEGIN 98 | BLOCK "StringFileInfo" 99 | BEGIN 100 | BLOCK "000004b0" 101 | BEGIN 102 | //SDC team start 103 | #if defined(SPECIAL_DLP_VERSION) 104 | VALUE "CompanyName", SDC_RESOURCE_COMPANY_NAME 105 | VALUE "FileDescription", SDC_RESOURCE_FILE_DESCRIPTION 106 | VALUE "FileVersion", chSTR(DLPVERSION) 107 | VALUE "InternalName", SDC_RESOURCE_INTERNAL_NAME 108 | VALUE "LegalCopyright", SDC_RESOURCE_LEGAL_COPYRIGHT 109 | VALUE "OriginalFilename", SDC_RESOURCE_ORIGINAL_FILE_NAME 110 | VALUE "ProductName", SDC_RESOURCE_PRODUCT_NAME 111 | VALUE "ProductVersion", chSTR(DLPVERSION) 112 | #else //Official 113 | VALUE "CompanyName", "http://xtreme-mod.net" 114 | VALUE "FileDescription", "antiLeech Dynamic Link Library (DLL)" 115 | VALUE "FileVersion", chSTR(DLPVERSION) 116 | VALUE "InternalName", "antiLeech" 117 | VALUE "LegalCopyright", "Copyright © 2006 emule Xtreme" 118 | VALUE "OriginalFilename", "antiLeech.dll" 119 | VALUE "ProductName", " antiLeech Dynamic Link Library (DLL)" 120 | VALUE "ProductVersion", chSTR(DLPVERSION) 121 | #endif 122 | //SDC team end 123 | END 124 | END 125 | BLOCK "VarFileInfo" 126 | BEGIN 127 | VALUE "Translation", 0x0, 1200 128 | END 129 | END 130 | 131 | #endif // Deutsch (Deutschland) resources 132 | ///////////////////////////////////////////////////////////////////////////// 133 | 134 | #ifndef APSTUDIO_INVOKED 135 | ///////////////////////////////////////////////////////////////////////////// 136 | // 137 | // Generated from the TEXTINCLUDE 3 resource. 138 | // 139 | 140 | 141 | ///////////////////////////////////////////////////////////////////////////// 142 | #endif // not APSTUDIO_INVOKED 143 | -------------------------------------------------------------------------------- /specialdlp/specialdlp/res/resource.h: -------------------------------------------------------------------------------- 1 | //SDC team start 2 | #ifndef SDC_INCLUDE_RESOURCE_H 3 | #define SDC_INCLUDE_RESOURCE_H 4 | //SDC team end 5 | 6 | //{{NO_DEPENDENCIES}} 7 | // Microsoft Visual C++ generated include file. 8 | // Used by antiLeech.rc 9 | // 10 | 11 | // Next default values for new objects 12 | // 13 | 14 | #ifdef APSTUDIO_INVOKED 15 | #ifndef APSTUDIO_READONLY_SYMBOLS 16 | #define _APS_NEXT_RESOURCE_VALUE 101 17 | #define _APS_NEXT_COMMAND_VALUE 40001 18 | #define _APS_NEXT_CONTROL_VALUE 1001 19 | #define _APS_NEXT_SYMED_VALUE 101 20 | #endif 21 | #endif 22 | 23 | #ifndef _T 24 | #define _T(x) x 25 | #endif 26 | #define _chSTR(x) _T(#x) 27 | #define chSTR(x) _chSTR(x) 28 | 29 | //SDC team start 30 | #if defined(SPECIAL_DLP_VERSION) 31 | #define SDC_RESOURCE_COMPANY_NAME "SDC Team" 32 | #define SDC_RESOURCE_FILE_DESCRIPTION "Strict DLP Chinese (SDC) is a set of strict DLP (Dynamic Leech Protection) DLLs based on the eMule Xtreme Mod's official version." 33 | #if (defined(WIN_X86) && !defined(WIN_X64)) 34 | #if defined(SDC_ALL_VERYCD) 35 | #define SDC_RESOURCE_INTERNAL_NAME "All-VeryCD-Mod x86" 36 | #elif defined(SDC_EASYMULE) 37 | #define SDC_RESOURCE_INTERNAL_NAME "VeryCD-EasyMule-Mod x86" 38 | #elif defined(SDC_LITE) 39 | #define SDC_RESOURCE_INTERNAL_NAME "Lite x86" 40 | #elif defined(SDC_VERYCD_NICKNAME) 41 | #define SDC_RESOURCE_INTERNAL_NAME "VeryCD-Default-NickName x86" 42 | #elif defined(SDC_VERYCD_TAG) 43 | #define SDC_RESOURCE_INTERNAL_NAME "VeryCD-Tag x86" 44 | #else 45 | #define SDC_RESOURCE_INTERNAL_NAME "Release x86" 46 | #endif 47 | #elif defined(WIN_X64) 48 | #if defined(SDC_ALL_VERYCD) 49 | #define SDC_RESOURCE_INTERNAL_NAME "All-VeryCD-Mod x64" 50 | #elif defined(SDC_EASYMULE) 51 | #define SDC_RESOURCE_INTERNAL_NAME "VeryCD-EasyMule-Mod x64" 52 | #elif defined(SDC_LITE) 53 | #define SDC_RESOURCE_INTERNAL_NAME "Lite x64" 54 | #elif defined(SDC_VERYCD_NICKNAME) 55 | #define SDC_RESOURCE_INTERNAL_NAME "VeryCD-Default-NickName x64" 56 | #elif defined(SDC_VERYCD_TAG) 57 | #define SDC_RESOURCE_INTERNAL_NAME "VeryCD-Tag x64" 58 | #else 59 | #define SDC_RESOURCE_INTERNAL_NAME "Release x64" 60 | #endif 61 | #elif (defined(WIN_ARM32) && !defined(WIN_ARM64)) 62 | #if defined(SDC_ALL_VERYCD) 63 | #define SDC_RESOURCE_INTERNAL_NAME "All-VeryCD-Mod ARM" 64 | #elif defined(SDC_EASYMULE) 65 | #define SDC_RESOURCE_INTERNAL_NAME "VeryCD-EasyMule-Mod ARM" 66 | #elif defined(SDC_LITE) 67 | #define SDC_RESOURCE_INTERNAL_NAME "Lite ARM" 68 | #elif defined(SDC_VERYCD_NICKNAME) 69 | #define SDC_RESOURCE_INTERNAL_NAME "VeryCD-Default-NickName ARM" 70 | #elif defined(SDC_VERYCD_TAG) 71 | #define SDC_RESOURCE_INTERNAL_NAME "VeryCD-Tag ARM" 72 | #else 73 | #define SDC_RESOURCE_INTERNAL_NAME "Release ARM" 74 | #endif 75 | #elif (defined(WIN_ARM64) && !defined(WIN_ARM64EC)) 76 | #if defined(SDC_ALL_VERYCD) 77 | #define SDC_RESOURCE_INTERNAL_NAME "All-VeryCD-Mod ARM64" 78 | #elif defined(SDC_EASYMULE) 79 | #define SDC_RESOURCE_INTERNAL_NAME "VeryCD-EasyMule-Mod ARM64" 80 | #elif defined(SDC_LITE) 81 | #define SDC_RESOURCE_INTERNAL_NAME "Lite ARM64" 82 | #elif defined(SDC_VERYCD_NICKNAME) 83 | #define SDC_RESOURCE_INTERNAL_NAME "VeryCD-Default-NickName ARM64" 84 | #elif defined(SDC_VERYCD_TAG) 85 | #define SDC_RESOURCE_INTERNAL_NAME "VeryCD-Tag ARM64" 86 | #else 87 | #define SDC_RESOURCE_INTERNAL_NAME "Release ARM64" 88 | #endif 89 | #elif defined(WIN_ARM64EC) 90 | #if defined(SDC_ALL_VERYCD) 91 | #define SDC_RESOURCE_INTERNAL_NAME "All-VeryCD-Mod ARM64EC" 92 | #elif defined(SDC_EASYMULE) 93 | #define SDC_RESOURCE_INTERNAL_NAME "VeryCD-EasyMule-Mod ARM64EC" 94 | #elif defined(SDC_LITE) 95 | #define SDC_RESOURCE_INTERNAL_NAME "Lite ARM64EC" 96 | #elif defined(SDC_VERYCD_NICKNAME) 97 | #define SDC_RESOURCE_INTERNAL_NAME "VeryCD-Default-NickName ARM64EC" 98 | #elif defined(SDC_VERYCD_TAG) 99 | #define SDC_RESOURCE_INTERNAL_NAME "VeryCD-Tag ARM64EC" 100 | #else 101 | #define SDC_RESOURCE_INTERNAL_NAME "Release ARM64EC" 102 | #endif 103 | #else 104 | #define SDC_RESOURCE_INTERNAL_NAME "Release" 105 | #endif 106 | #define SDC_RESOURCE_LEGAL_COPYRIGHT "Copyright (C) 2009-2025 SDC Team" 107 | #if (defined(WIN_X86) && !defined(WIN_X64)) 108 | #define SDC_RESOURCE_ORIGINAL_FILE_NAME "antiLeech.dll" 109 | #elif defined(WIN_X64) 110 | #define SDC_RESOURCE_ORIGINAL_FILE_NAME "antiLeechx64.dll" 111 | #elif (defined(WIN_ARM32) && !defined(WIN_ARM64)) 112 | #define SDC_RESOURCE_ORIGINAL_FILE_NAME "antiLeecharm.dll" 113 | #elif (defined(WIN_ARM64) && !defined(WIN_ARM64EC)) 114 | #define SDC_RESOURCE_ORIGINAL_FILE_NAME "antiLeecharm64.dll" 115 | #elif defined(WIN_ARM64EC) 116 | #define SDC_RESOURCE_ORIGINAL_FILE_NAME "antiLeecharm64ec.dll" 117 | #else 118 | #define SDC_RESOURCE_ORIGINAL_FILE_NAME "antiLeech.dll" 119 | #endif 120 | #define SDC_RESOURCE_PRODUCT_NAME "Strict Dynamic Leech Protection Chinese Dynamic Link Library (SDC DLL)" 121 | #endif 122 | 123 | #endif 124 | //SDC team end 125 | -------------------------------------------------------------------------------- /specialdlp/document/readme.zh-hans.txt: -------------------------------------------------------------------------------- 1 | 警告 2 | 3 | Strict DLP Chinese (SDC) 仅供学习交流用途,请遵循相应的许可证。 4 | 切勿将其用于任何非法用途!使用前请自行估量是否有加载 SDC 的需要。 5 | 如果不能清楚判断而造成之一切不良后果,项目组所有成员均不承担任何责任。 6 | 使用 SDC 源代码前,请先务必参阅 license 的内容! 7 | 8 | 9 | ------------------------------------------------------------------------------- 10 | 11 | 12 | Strict DLP Chinese 的 GitHub 13 | https://github.com/chengr28/specialdlp 14 | 15 | Strict DLP Chinese 的 GitLab 16 | https://gitlab.com/chengr28/specialdlp 17 | 18 | Strict DLP Chinese 的 Sourceforge 19 | https://sourceforge.net/projects/specialdlp 20 | 21 | 22 | ------------------------------------------------------------------------------- 23 | 24 | 25 | SDC 与官方 DLP 的主要差别 26 | * 所有 SDC 是基于官方 eMule Xtreme DLP 的严格版本。 27 | * 在官方 eMule Xtreme DLP 的基础上,SDC 将 VeryCD-Mod 和 VeryCD-EasyMule-Mod(第 1 版)中的部分或全部加入了 Soft Ban 列表,原因是 GPL-Breaker、私有网络和社区客户端等不良行为。 28 | 29 | 30 | 加载方法 31 | * 将 eMule 关闭,把解压出来的 antiLeech.dll.new 文件放到原来 antiLeech.dll 所在的目录,并重新启动 eMule。 32 | * 强烈建议使用这种加载方法,因为这种方法可以把全部新版的检测加载到 eMule 中。 33 | * 或者直接把解压出来的 antiLeech.dll.new 文件放到原来 antiLeech.dll 所在的目录,然后在反吸血选项 (Xtreme II) 中单击 Reload。 34 | 35 | 36 | ------------------------------------------------------------------------------- 37 | 38 | 39 | 关于配置文件真实读取目录问题 40 | * 此设置可以在安装 eMule 的过程中进行选择,不过也可以在以后任何时候在『选项 - 扩展设置』里进行设置。请务必注意这个问题,否则可能会造成 SDC 未被正确加载。 41 | * 每个用户的配置和下载是独立的: %UserProfile%\AppData\Local\eMule\config 也就是 System:\Users\[您的用户名]\AppData\Local\eMule\config 42 | * 所有的用户共用相同的配置和下载: %AllUsersProfile%\eMule\Config 也就是 System:\ProgramData\eMule\Config 43 | * 在程序目录下保存配置和下载: 程序目录下的 Config 文件夹内 44 | 45 | 46 | ------------------------------------------------------------------------------- 47 | 48 | 49 | SDC 版本介绍 50 | * bin: 已编译的二进制程序 51 | * 按照不同的架构: 52 | * x86: 用于 32 位 x86 程序的 SDC 版本。多数使用的 eMule 程序为 32 位,因此您应该使用 x86 版本而不是 x64 版本。 53 | * x64: 用于 64 位 x64 程序的 SDC 版本。适用于原生 x64 编译的 eMule 版本,而 x64 的 SDC 版本只能用于原生 x64 编译的 eMule 上。 54 | * arm: 用于 32 位 ARM 程序的 SDC 版本。 55 | * arm64: 用于 64 位 ARM64 程序的 SDC 版本。 56 | * arm64ec: 用于 64 位 ARM64EC 程序的 SDC 版本。 57 | * 按照不同的功能: 58 | * all-verycd: 对所有 VeryCD 系列客户端进行检测的版本,其中所有 VeryCD Mod 和 easyMule 被加入了软性吸血列表。 59 | * easymule: EasyMule 被加入了软性吸血列表。 60 | * lite: Xtreme 官方 DLP 修补漏检版本。 61 | * verycd-nickname: 所有昵称中含有 VeryCD 客户端默认昵称的 VeryCD Mod 和 easyMule 加入到软性吸血列表。 62 | * verycd-tag: 对所有昵称含有 [VeryCD] 进行检测的版本。 63 | * src: 源代码 64 | 65 | 66 | ------------------------------------------------------------------------------- 67 | 68 | 69 | 常见问题 FAQ 70 | 71 | Q:如何查看 SDC 已经成功被 eMule 加载? 72 | A: 73 | * 查看反吸血选项中显示的 DLP 版本号是否为 SDC 的最新版本号,如果不是则说明加载失败; 74 | * 如果 SDC 对应版本不能起到预期的效果,请浏览下面 FAQ 所列举的各种情况予以参考解决。 75 | 76 | Q:加载失败如何解决? 77 | A: 78 | * 请检查文件名 antiLeech.dll.new 是否完全正确; 79 | * 请检查 antiLeech.dll.new 所放置的位置是否正确,一般放置在原 antiLeech.dll 的目录内; 80 | * 请检查对应的版本是否正确,x86/x64/arm/arm64/arm64ec 版本的 SDC 只能应用在其设计的环境内,版本之间并不通用。 81 | 82 | Q:为何 SDC 的对应版本无法实现其对应的功能? 83 | A: 84 | * 请检查自己选择的版本和自己的设想是否相符; 85 | * 请检查是否开启「防封禁」功能,已经开启的请关闭「防封禁限制」功能。 86 | 87 | Q:antiLeech.dll.old 是什么文件? 88 | A:antiLeech.dll.old 是被替换的 DLP 当 eMule 发现 antiLeech.dll.new 时会自动将 antiLeech.dll 改名为 antiLeech.dll.old 而同时将 antiLeech.dll.new 改名为 antiLeech.dll 即应用新版本 DLP。 89 | 90 | Q:发现了某些不应出现的误伤或漏检怎么办? 91 | A: 92 | * 请首先确认是否应用「失效搭配方案黑名单」中的搭配,应用者请更换 eMule 客户端或其它系列的 DLP。注意:如果使用以下搭配,将使 SDC 无法实现其应有正常的功能或者造成漏检,切记不要采用以下的失效搭配(这里提到的均为该 eMule Mod 的最新版本,其它旧版本同样不能保证可以正常工作): 93 | * eMule v0.48a eXcalibur 1.85.3 加载所有版本的 SDC:eXcalibur 不支持 Xtreme 官方版 DLP。 94 | * eMule v0.49b CN-7 Build 191 Final 加载所有版本的 SDC:CN Mod 对 Xtreme 官方版 DLP 支持不佳造成漏检。 95 | * 请联系 SDC 开发小组寻求解决方法。 96 | 97 | Q:何谓「屏蔽模式」和「减分模式」? 98 | A: 99 | * 「屏蔽模式」是将对象全部屏蔽的意思,也就是常说的彻底封杀所有吸血骡; 100 | * 「减分模式」是将被定义为 Soft Ban 的对象减少其积分的意思。 101 | 102 | Q:如何应用「屏蔽模式」和「减分模式」? 103 | A:应用方法: 104 | * 屏蔽模式:请把反吸血的惩罚方式选项中全部选中「ban」或者「屏蔽」; 105 | * 减分模式:请把反吸血的惩罚方式选项中的「社区客户端」选为「reduce score」或者「减少积分」,其它选项均为「ban」或者「屏蔽」。 106 | 107 | Q:使用 SDC 会不会影响到 eMule 的下载? 108 | A:使用「屏蔽模式」时可能会有一定的影响,而使用「减分模式」时则完全不会影响 eMule 的下载。 109 | 110 | Q:如果使用「减分模式」是否会错误对某些行为恶劣的吸血客户端进行减分? 111 | A: 112 | * 不会,因为 DLP 中分为「Hard Ban」和「Soft Ban」的机制。被定义为 Hard Ban 的对象,无论反吸血参数如何设置,都会被彻底屏蔽而不会被错误减分; 113 | * 提示:受限于 eMule 客户端调用 DLP 的顺序问题,某些本应被彻底屏蔽的客户端可能被错误减少积分,这个问题暂时无法解决。 114 | 115 | Q:为何使用 SDC 的「减分模式」后发现上传队列依然存在大量被减分的客户端? 116 | A:首先需要说明的是「减分模式」并不同于「屏蔽模式」,仅仅是依照应用 DLP 的 eMule 客户端的初始设定来对吸血骡进行减分,并不是完全封禁。 117 | 118 | Q:SDC 会修补官方 DLP 的漏检吗? 119 | A:当然会,只要收到官方 DLP 漏检的报告,SDC 小组会尽快升级以修补漏检,同时也会通知 Xtreme 官方 DLP 的维护者尽快修复。 120 | 121 | 122 | ------------------------------------------------------------------------------- 123 | 124 | 125 | 应用减分模式特别技巧: 126 | 127 | * 如果 eMule 客户端拥有「每个文件一个队列(多队列)」功能,请将其开启; 128 | 说明:「每个文件一个队列(多队列)」功能会适当对一些请求稀有文件上传的客户端的进行加分,因为上传队列得分是按比例扣减的,所以上传队列得分越高扣减的幅度也越大。 129 | 130 | * 如果 eMule 客户端支持多积分系统,建议使用「Lovelace」积分系统,然后将所有惩罚吸血骡的选项打开; 131 | 说明:选择一个合适的积分系统有利于 eMule 的文件交换及对吸血客户端的惩罚。 132 | 注意:切勿选择使用官方积分系统!官方积分系统只有奖励机制而没有惩罚机制,故不建议使用。 133 | 134 | * 如果 eMule 客户端拥有「不上传给吸血客户端」(Upload Ban)功能,请将其开启,已开启者请立即将其关闭; 135 | 说明:这个功能可以阻止对被减少积分的客户端的上传。 136 | 注意:部分 eMule 客户端的这个功能的含义是将其上传队列得分清零,但这并不能有效阻止对其的上传。 137 | 138 | * 如果应用的是「减分模式」同时 eMule 客户端的减少积分幅度可以调整,请将其调整至最大; 139 | 说明:最大限度的减分幅度能有效遏制一些社区加分客户端。 140 | 注意:一般可以调整减少积分幅度的 eMule 客户端中,上传队列得分是按比例扣减的,所以应该将减分幅度调整为×「1」时扣减幅度最大。 141 | 142 | * 如果 eMule 客户端拥有「防封禁限制」功能,切勿将其开启; 143 | 说明:「防封禁限制」功能是对「有贡献」的被屏蔽客户端解封的功能,绝不能开启,否则可能导致 SDC 部分甚至全部失效。 144 | 145 | * 如果需要转换检测模式(屏蔽模式、减分模式),设置完成后请马上重启 eMule; 146 | 说明:被屏蔽的客户端有屏蔽时间限制,而从「屏蔽模式」转到「减分模式」时,被屏蔽的客户端不会立刻释放。 147 | 注意:从「减分模式」转到「屏蔽模式」时,被减分的客户端则不会被重新检测而造成漏检,故设置完成后请马上重启 eMule。 148 | -------------------------------------------------------------------------------- /specialdlp/document/readme.zh-hant.txt: -------------------------------------------------------------------------------- 1 | 警告 2 | 3 | Strict DLP Chinese (SDC) 僅供學習交流用途,請遵循相應的許可證。 4 | 切勿將其用於任何非法用途!使用前請自行估量是否有載入 SDC 的需要。 5 | 如果不能清楚判斷而造成之一切不良後果,專案組所有成員均不承擔任何責任。 6 | 使用 SDC 原始碼前,請先務必參閱 license 的內容! 7 | 8 | 9 | ------------------------------------------------------------------------------- 10 | 11 | 12 | Strict DLP Chinese 的 GitHub 13 | https://github.com/chengr28/specialdlp 14 | 15 | Strict DLP Chinese 的 GitLab 16 | https://gitlab.com/chengr28/specialdlp 17 | 18 | Strict DLP Chinese 的 Sourceforge 19 | https://sourceforge.net/projects/specialdlp 20 | 21 | 22 | ------------------------------------------------------------------------------- 23 | 24 | 25 | SDC 與官方 DLP 的主要差別 26 | * 所有 SDC 是基於官方 eMule Xtreme DLP 的嚴格版本。 27 | * 在官方 eMule Xtreme DLP 的基礎上,SDC 將 VeryCD-Mod 和 VeryCD-EasyMule-Mod(第 1 版)中的部分或全部加入了 Soft Ban 清單,原因是 GPL-Breaker、私有網路和社區用戶端等不良行為。 28 | 29 | 30 | 載入方法 31 | * 將 eMule 關閉,把解壓出來的 antiLeech.dll.new 檔案放到原來 antiLeech.dll 所在的目錄,並重新啟動 eMule。 32 | * 強烈建議使用這種載入方法,因為這種方法可以把全部新版的檢測載入到 eMule 中。 33 | * 或者直接把解壓出來的 antiLeech.dll.new 檔案放到原來 antiLeech.dll 所在的目錄,然後在反吸血選項 (Xtreme II) 中按一下 Reload。 34 | 35 | 36 | ------------------------------------------------------------------------------- 37 | 38 | 39 | 關於設定檔案真實讀取目錄問題 40 | * 此設置可以在安裝 eMule 的過程中進行選擇,不過也可以在以後任何時候在『選項 - 擴展設置』裡進行設置。請務必注意這個問題,否則可能會造成 SDC 未被正確載入。 41 | * 每個使用者的配置和下載是獨立的: %UserProfile%\AppData\Local\eMule\config 也就是 System:\Users\[您的使用者名]\AppData\Local\eMule\config 42 | * 所有的使用者共用相同的配置和下載: %AllUsersProfile%\eMule\Config 也就是 System:\ProgramData\eMule\Config 43 | * 在程式目錄下保存配置和下載: 程式目錄下的 Config 資料夾內 44 | 45 | 46 | ------------------------------------------------------------------------------- 47 | 48 | 49 | SDC 版本介紹 50 | * bin: 已編譯的二進位程式 51 | * 按照不同的架構: 52 | * x86: 用於 32 位 x86 程式的 SDC 版本。多數使用的 eMule 程式為 32 位,因此您應該使用 x86 版本而不是 x64 版本。 53 | * x64: 用於 64 位 x64 程式的 SDC 版本。適用于原生 x64 編譯的 eMule 版本,而 x64 的 SDC 版本只能用於原生 x64 編譯的 eMule 上。 54 | * arm: 用於 32 位 ARM 程式的 SDC 版本。 55 | * arm64: 用於 64 位 ARM64 程式的 SDC 版本。 56 | * arm64ec: 用於 64 位 ARM64EC 程式的 SDC 版本。 57 | * 按照不同的功能: 58 | * all-verycd: 對所有 VeryCD 系列客戶端進行檢測的版本,其中所有 VeryCD Mod 和 easyMule 被加入了軟性吸血列表。 59 | * easymule: EasyMule 被加入了軟性吸血列表。 60 | * lite: Xtreme 官方 DLP 修補漏檢版本。 61 | * verycd-nickname: 所有暱稱中含有 VeryCD 客戶端預設暱稱的 VeryCD Mod 和 easyMule 加入到軟性吸血列表。 62 | * verycd-tag: 對所有暱稱含有 [VeryCD] 進行檢測的版本。 63 | * src: 原始程式碼 64 | 65 | 66 | ------------------------------------------------------------------------------- 67 | 68 | 69 | 常見問題 FAQ 70 | 71 | Q:如何查看 SDC 已經成功被 eMule 載入? 72 | A: 73 | * 查看反吸血選項中顯示的 DLP 版本號是否為 SDC 的最新版本號,如果不是則說明載入失敗; 74 | * 如果 SDC 對應版本不能起到預期的效果,請流覽下面 FAQ 所列舉的各種情況予以參考解決。 75 | 76 | Q:載入失敗如何解決? 77 | A: 78 | * 請檢查檔案名 antiLeech.dll.new 是否完全正確; 79 | * 請檢查 antiLeech.dll.new 所放置的位置是否正確,一般放置在原 antiLeech.dll 的目錄內; 80 | * 請檢查對應的版本是否正確,x86/x64/arm/arm64/arm64ec 版本的 SDC 只能應用在其設計的環境內,版本之間並不通用。 81 | 82 | Q:為何 SDC 的對應版本無法實現其對應的功能? 83 | A: 84 | * 請檢查自己選擇的版本和自己的設想是否相符; 85 | * 請檢查是否開啟「防封禁」功能,已經開啟的請關閉「防封禁限制」功能。 86 | 87 | Q:antiLeech.dll.old 是什麼檔案? 88 | A:antiLeech.dll.old 是被替換的 DLP 當 eMule 發現 antiLeech.dll.new 時會自動將 antiLeech.dll 改名為 antiLeech.dll.old 而同時將 antiLeech.dll.new 改名為 antiLeech.dll 即應用新版本 DLP。 89 | 90 | Q:發現了某些不應出現的誤傷或漏檢怎麼辦? 91 | A: 92 | * 請首先確認是否應用「失效搭配方案黑名單」中的搭配,應用者請更換 eMule 用戶端或其它系列的 DLP。注意:如果使用以下搭配,將使 SDC 無法實現其應有正常的功能或者造成漏檢,切記不要採用以下的失效搭配(這裡提到的均為該 eMule Mod 的最新版本,其它舊版本同樣不能保證可以正常工作): 93 | * eMule v0.48a eXcalibur 1.85.3 載入所有版本的 SDC:eXcalibur 不支援 Xtreme 官方版 DLP。 94 | * eMule v0.49b CN-7 Build 191 Final 載入所有版本的 SDC:CN Mod 對 Xtreme 官方版 DLP 支援不佳造成漏檢。 95 | * 請聯繫 SDC 開發小組尋求解決方法。 96 | 97 | Q:何謂「屏蔽模式」和「減分模式」? 98 | A: 99 | * 「屏蔽模式」是將物件全部屏蔽的意思,也就是常說的徹底封殺所有吸血騾; 100 | * 「減分模式」是將被定義為 Soft Ban 的物件減少其積分的意思。 101 | 102 | Q:如何應用「屏蔽模式」和「減分模式」? 103 | A: 104 | * 屏蔽模式:請把反吸血的懲罰方式選項中全部選中「ban」或者「屏蔽」; 105 | * 減分模式:請把反吸血的懲罰方式選項中的「社區用戶端」選為「reduce score」或者「減少積分」,其它選項均為「ban」或者「屏蔽」。 106 | 107 | Q:使用 SDC 會不會影響到 eMule 的下載? 108 | A:使用「屏蔽模式」時可能會有一定的影響,而使用「減分模式」時則完全不會影響 eMule 的下載。 109 | 110 | Q:如果使用「減分模式」是否會錯誤對某些行為惡劣的吸血用戶端進行減分? 111 | A: 112 | * 不會,因為 DLP 中分為「Hard Ban」和「Soft Ban」的機制。被定義為 Hard Ban 的物件,無論反吸血參數如何設置,都會被徹底屏蔽而不會被錯誤減分; 113 | * 提示:受限於 eMule 用戶端調用 DLP 的順序問題,某些本應被徹底屏蔽的用戶端可能被錯誤減少積分,這個問題暫時無法解決。 114 | 115 | Q:為何使用 SDC 的「減分模式」後發現上傳佇列依然存在大量被減分的用戶端? 116 | A:首先需要說明的是「減分模式」並不同于「屏蔽模式」,僅僅是依照應用 DLP 的 eMule 用戶端的初始設定來對吸血騾進行減分,並不是完全封禁。 117 | 118 | Q:SDC 會修補官方 DLP 的漏檢嗎? 119 | A:當然會,只要收到官方 DLP 漏檢的報告,SDC 小組會儘快升級以修補漏檢,同時也會通知 Xtreme 官方 DLP 的維護者儘快修復。 120 | 121 | 122 | ------------------------------------------------------------------------------- 123 | 124 | 125 | 應用減分模式特別技巧: 126 | 127 | * 如果 eMule 用戶端擁有「每個檔案一個佇列(多佇列)」功能,請將其開啟; 128 | 說明:「每個檔案一個佇列(多佇列)」功能會適當對一些請求稀有檔案上傳的用戶端的進行加分,因為上傳佇列得分是按比例扣減的,所以上傳佇列得分越高扣減的幅度也越大。 129 | 130 | * 如果 eMule 用戶端支援多積分系統,建議使用「Lovelace」積分系統,然後將所有懲罰吸血騾的選項打開; 131 | 說明:選擇一個合適的積分系統有利於 eMule 的檔案交換及對吸血用戶端的懲罰。 132 | 注意:切勿選擇使用官方積分系統!官方積分系統只有獎勵機制而沒有懲罰機制,故不建議使用。 133 | 134 | * 如果 eMule 用戶端擁有「不上傳給吸血用戶端」(Upload Ban)功能,請將其開啟,已開啟者請立即將其關閉; 135 | 說明:這個功能可以阻止對被減少積分的用戶端的上傳。 136 | 注意:部分 eMule 用戶端的這個功能的含義是將其上傳佇列得分清零,但這並不能有效阻止對其的上傳。 137 | 138 | * 如果應用的是「減分模式」同時 eMule 用戶端的減少積分幅度可以調整,請將其調整至最大; 139 | 說明:最大限度的減分幅度能有效遏制一些社區加分用戶端。 140 | 注意:一般可以調整減少積分幅度的 eMule 用戶端中,上傳佇列得分是按比例扣減的,所以應該將減分幅度調整為×「1」時扣減幅度最大。 141 | 142 | * 如果 eMule 用戶端擁有「防封禁限制」功能,切勿將其開啟; 143 | 說明:「防封禁限制」功能是對「有貢獻」的被屏蔽用戶端解封的功能,絕不能開啟,否則可能導致 SDC 部分甚至全部失效。 144 | 145 | * 如果需要轉換檢測模式(屏蔽模式、減分模式),設置完成後請馬上重啟 eMule; 146 | 說明:被屏蔽的用戶端有屏蔽時間限制,而從「屏蔽模式」轉到「減分模式」時,被屏蔽的用戶端不會立刻釋放。 147 | 注意:從「減分模式」轉到「屏蔽模式」時,被減分的用戶端則不會被重新檢測而造成漏檢,故設置完成後請馬上重啟 eMule。 148 | -------------------------------------------------------------------------------- /specialdlp/document/readme.en.txt: -------------------------------------------------------------------------------- 1 | WARNING 2 | 3 | Strict DLP Chinese (SDC) is only for academic exchange, which is following the license. 4 | Using SDC via illegal ways are prohibited. Please also confirm you are really need to use SDC. 5 | If you get troublesome results or law problems about using SDC, at your own risk. 6 | Please read the license before using the source from SDC project. 7 | 8 | 9 | ------------------------------------------------------------------------------- 10 | 11 | 12 | Strict DLP Chinese in GitHub 13 | https://github.com/chengr28/specialdlp 14 | 15 | Strict DLP Chinese in GitLab 16 | https://gitlab.com/chengr28/specialdlp 17 | 18 | Strict DLP Chinese in Sourceforge 19 | https://sourceforge.net/projects/specialdlp 20 | 21 | 22 | ------------------------------------------------------------------------------- 23 | 24 | 25 | Different between SDC and eMule Xtreme DLP (official) 26 | * All SDC are based on eMule Xtreme DLP (official). 27 | * VeryCD-Mod and VeryCD-EasyMule-Mod (1.0) are in Soft Ban list because of GPL-Breaker, private network, and community clients. 28 | 29 | 30 | Usage 31 | * Shutdown eMule first. Unpack the "antiLeech.dll.new" to the directory where original "antiLeech.dll" located, then run eMule. 32 | * This is recommended, all new DLP features will be completely loaded. 33 | * OR: Unpack the "antiLeech.dll.new" the directory where original "antiLeech.dll" located. Enter eMule - Options - AntiLeech and click "reload". 34 | 35 | 36 | ------------------------------------------------------------------------------- 37 | 38 | 39 | About the real configuration folder 40 | You can select one of below mode, which decides configuration folder location in eMule. The option is in eMule - Options - Extended. 41 | * "Each user has its own configuration and downloads": %UserProfile%\AppData\Local\eMule\config ([System Drive]:\Users\[username]\AppData\Local\eMule\config) 42 | * "Everyone has the same configuration and downloads": %AllUsersProfile%\eMule\config ([System Drive]:\ProgramData\eMule\config) 43 | * "Store config and downloads in the program directory": The folder is in eMule program folder. 44 | 45 | 46 | ------------------------------------------------------------------------------- 47 | 48 | 49 | SDC versions 50 | * bin: Binary files. 51 | * Architectures: 52 | * x86: 32-bit eMule version. Most of eMule programs are 32-bit, you should use this one. 53 | * x64: 64-bit eMule version. It's only for 64-bit eMule. 54 | * arm: 32-bit ARM version. 55 | * arm64: 64-bit ARM version. 56 | * arm64ec: 64-bit ARM (EC) version. 57 | * Variants: 58 | * all-verycd: All VeryCD-Mod and VeryCD-EasyMule-Mod. 59 | * easymule: All VeryCD-EasyMule-Mod (not includes old VeryCD-Mod version). 60 | * lite: Lite version of SDC, only fixs some bugs. 61 | * verycd-nickname: All VeryCD-Mod and VeryCD-EasyMule-Mod whose nicknames are in the black dafault list. 62 | * verycd-tag: All clients whose nick name has "[VeryCD]". 63 | * src: Source files. 64 | 65 | 66 | ------------------------------------------------------------------------------- 67 | 68 | 69 | FAQ: 70 | 71 | Q: How can I detect SDC was loaded successfully? 72 | A: 73 | * Check the antiLeech version in eMule - Options - Xtreme II/AntiLeech. 74 | * Please continue to read below if problem can't be solved. 75 | 76 | Q: What can I do if SDC loads failed? 77 | A: 78 | * Please check the file name of "antiLeech.dll". 79 | * Please check the "antiLeech.dll" location. 80 | * Please check the platform of system and version of eMule (x86/x64/arm/arm64/arm64ec). 81 | 82 | Q: It seems I select banned mode but get reduce-score, or get opposite situation. 83 | A: 84 | * Please check the SDC variant whether you need. 85 | * Please disable "Anti-Banned" or set it to "0". 86 | 87 | Q: What is antiLeech.dll.old? 88 | A: It's deprecated file and can be deleted. 89 | 90 | Q: How can I do when SDC gets false positive? 91 | A: 92 | * Please check if the environment is in blacklist. You will get false positive if you use: 93 | * eMule v0.48a eXcalibur 1.85.3: It's not support the eMule Xtreme DLP (official). 94 | * eMule v0.49b CN-7 Build 191 Final: It's not support all the eMule Xtreme DLP (official) check. 95 | * Please share feedback to us. 96 | 97 | Q: What is the "Ban" mode and the "Reduce Score" mode? 98 | A: 99 | * "Ban" mode: Ban all clients which is a leecher. 100 | * "Reduce Score" mode: Reduce the queue score of Soft Ban leechers, not includes Hard Ban leechers. 101 | 102 | Q: How to set "Ban" mode and "Reduce Score" mode? 103 | A: 104 | * "Ban" mode: eMule - Options - AntiLeech - All set "ban" 105 | * "Reduce Score" mode: eMule - Options - AntiLeech, then set the Community Mods to "reduce score" and other to "ban" 106 | 107 | Q: Would the download speed be reduced when using SDC? 108 | A: Sometimes "Ban" mode will and "Reduce Score" mode is never. 109 | 110 | Q: Would the bad leechers be passed or be false reduced score when using "Reduce Score" mode? 111 | A: 112 | * No, all leechers in Hard Ban list will be banned. No effect if it's in "Reduce Score" mode. 113 | * Notice: It will be unlikely happened because of eMule antiLeech sequence check. 114 | 115 | Q: Why leechers are still in upload queue? 116 | A: The "Reduce Score" mode does not ban all leechers. 117 | 118 | Q: Would SDC fix bugs in eMule Xtreme DLP (official)? 119 | A: Yes, we will also report to eMule Xtreme developer team. 120 | 121 | 122 | ------------------------------------------------------------------------------- 123 | 124 | 125 | Recommendation for using "Reduce Score" mode: 126 | 127 | * Enable "One File One Queue". 128 | The way to reducing score is a proportion method. This option is useful to remove leechers from queue. 129 | 130 | * Set credit system to "Lovelace" and enable all the punishing rules. 131 | Please DO NOT set the credit system to eMule official, because there are not any punishment rules. 132 | 133 | * Enable "Upload Ban". 134 | It can refuse Soft Ban leechers downloading from us, but we will not refuse their uploading. 135 | 136 | * Set reducing score proportion to maximum. 137 | It can remove Soft Ban leechers from upload queue effectively. 138 | 139 | * Disable "Anti-Banned" or set it to "0". 140 | It will remove some leechers from banned list, even in Hard Ban. 141 | 142 | * Restart eMule if you change DLP banning method. 143 | AntiLeech is not running in connection life cycle. Some leechers which were connected will not be banned or reduced score after new DLP was loaded or changing mode ("Ban" and "Reduce Score") settings. 144 | -------------------------------------------------------------------------------- /specialdlp/specialdlp/antiLeech.h: -------------------------------------------------------------------------------- 1 | //SDC team start 2 | #ifndef SDC_INCLUDE_ANTILEECH_H 3 | #define SDC_INCLUDE_ANTILEECH_H 4 | 5 | #if defined(SPECIAL_DLP_VERSION) 6 | #define DLPVERSION 44006 7 | #define SDC_RESOURCE_VERSION 44,0,0,6 8 | #else //Official 9 | #pragma once 10 | #define DLPVERSION 44 11 | 12 | class CantiLeech 13 | { 14 | public: 15 | BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved); 16 | DWORD __declspec(dllexport) GetDLPVersion() {return DLPVERSION;} 17 | //drop old version support 18 | /* 19 | LPCTSTR __declspec(dllexport) DLPCheckModstring(LPCTSTR modversion, LPCTSTR clientversion); 20 | LPCTSTR __declspec(dllexport) DLPCheckUsername(LPCTSTR username); 21 | LPCTSTR __declspec(dllexport) DLPCheckNameAndHash(CString username, CString & userhash); 22 | */ 23 | //new versions 24 | LPCTSTR __declspec(dllexport) DLPCheckModstring_Hard(LPCTSTR modversion, LPCTSTR clientversion); 25 | LPCTSTR __declspec(dllexport) DLPCheckModstring_Soft(LPCTSTR modversion, LPCTSTR clientversion); 26 | LPCTSTR __declspec(dllexport) DLPCheckUsername_Hard(LPCTSTR username); 27 | LPCTSTR __declspec(dllexport) DLPCheckUsername_Soft(LPCTSTR username); 28 | LPCTSTR __declspec(dllexport) DLPCheckNameAndHashAndMod(CString username, CString & userhash, CString & modversion); 29 | LPCTSTR __declspec(dllexport) DLPCheckMessageSpam(LPCTSTR messagetext); 30 | LPCTSTR __declspec(dllexport) DLPCheckUserhash(const PBYTE userhash); 31 | LPCTSTR __declspec(dllexport) DLPCheckHelloTag(UINT tagnumber); 32 | LPCTSTR __declspec(dllexport) DLPCheckInfoTag(UINT tagnumber); 33 | void __declspec(dllexport) TestFunc(void); 34 | 35 | private: 36 | const bool IsTypicalHex(CString & addon) const; 37 | }; 38 | #endif 39 | //SDC team end 40 | 41 | //<<< new tags from eMule 0.04x 42 | #define CT_UNKNOWNx00 0x00 //Hybrid Horde protocol 43 | #define CT_UNKNOWNx12 0x12 //http://www.haspepapa-welt.de (DodgeBoards) 44 | #define CT_UNKNOWNx13 0x13 //http://www.haspepapa-welt.de (DodgeBoards) 45 | #define CT_UNKNOWNx14 0x14 //http://www.haspepapa-welt.de (DodgeBoards) 46 | #define CT_UNKNOWNx15 0x15 //http://www.haspepapa-welt.de (DodgeBoards) & DarkMule |eVorte|X| 47 | #define CT_UNKNOWNx16 0x16 //http://www.haspepapa-welt.de (DodgeBoards) 48 | #define CT_UNKNOWNx17 0x17 //http://www.haspepapa-welt.de (DodgeBoards) 49 | #define CT_UNKNOWNx4D 0x4D //pimp my mule (00de) 50 | #define CT_UNKNOWNxE6 0xE6 //http://www.haspepapa-welt.de 51 | #define CT_UNKNOWNx22 0x22 //DarkMule |eVorte|X| 52 | #define CT_UNKNOWNx5D 0x5D //md4 53 | #define CT_UNKNOWNx63 0x63 //? 54 | #define CT_UNKNOWNx64 0x64 //? 55 | #define CT_UNKNOWNx69 0x69 //eMuleReactor //Xman don't use this, it's webcache! 56 | #define CT_UNKNOWNx6B 0x6B //md4 57 | #define CT_UNKNOWNx6C 0x6C //md4 58 | #define CT_UNKNOWNx74 0x74 //md4 59 | #define CT_UNKNOWNx76 0x76 //www.donkey2002.to 60 | #define CT_UNKNOWNx79 0x79 //Bionic 61 | #define CT_UNKNOWNx7A 0x7A //NewDarkMule 62 | #define CT_UNKNOWNx83 0x83 //Fusspi 63 | #define CT_UNKNOWNx87 0x87 //md4 64 | #define CT_UNKNOWNx88 0x88 //DarkMule v6 |eVorte|X| 65 | #define CT_UNKNOWNx8C 0x8C //eMule v0.27c [LSD7c] 66 | #define CT_UNKNOWNx8D 0x8D //unknown Leecher - (client version:60) 67 | #define CT_UNKNOWNx94 0x94 //00.de community //Xman 20.08.05 68 | #define CT_UNKNOWNx97 0x97 //Emulereactor Community Mod 69 | #define CT_UNKNOWNx98 0x98 //Emulereactor Community Mod 70 | #define CT_UNKNOWNx99 0x99 //eMule v0.26d [RAMMSTEIN 8b] 71 | #define CT_UNKNOWNx9C 0x9C //Emulereactor Community Mod 72 | #define CT_UNKNOWNxBB 0xBB //emule.de (client version:60) 73 | #define CT_UNKNOWNxC4 0xC4 //MD5 Community from new bionic - hello 74 | #define CT_UNKNOWNxC8 0xC8 //MD5 Community from new bionic - hello //Xman x4 75 | #define CT_UNKNOWNxCA 0xCA //NewDarkMule 76 | #define CT_UNKNOWNxCD 0xCD //www.donkey2002.to 77 | #define CT_UNKNOWNxCE 0xCE //FRZ community //Xman 20.08.05 78 | #define CT_UNKNOWNxCF 0xCF //FRZ community //Xman 20.08.05 79 | #define CT_UNKNOWNxDA 0xDA //Emulereactor Community Mod 80 | #define CT_UNKNOWNxEC 0xEC //SpeedMule and clones //Xman x4 81 | #define CT_UNKNOWNxF0 0xF0 //Emulereactor Community Mod 82 | #define CT_UNKNOWNxF4 0xF4 //Emulereactor Community Mod 83 | #define CT_UNKNOWNxD2 0xD2 //Chinese Leecher //SquallATF 84 | //#define CT_UNKNOWNx85 0x85 //viper-israel.org and eChanblardNext //zz_fly, viper become good 85 | #define CT_FRIENDSHARING 0x66 //eWombat [SNAFU] 86 | #define CT_DARK 0x54 //eWombat [SNAFU] 87 | #define FRIENDSHARING_ID 0x5F73F1A0 //Magic Key, DO NOT CHANGE! 88 | 89 | //unknown eMule tags 90 | #define ET_MOD_UNKNOWNx12 0x12 //http://www.haspepapa-welt.de 91 | #define ET_MOD_UNKNOWNx13 0x13 //http://www.haspepapa-welt.de 92 | #define ET_MOD_UNKNOWNx14 0x14 //http://www.haspepapa-welt.de 93 | #define ET_MOD_UNKNOWNx17 0x17 //http://www.haspepapa-welt.de 94 | #define ET_MOD_UNKNOWNx2F 0x2F //eMule v0.30 [OMEGA v.07 Heiko] 95 | #define ET_MOD_UNKNOWNx30 0x30 //aMule 1.2.0 96 | #define ET_MOD_UNKNOWNx36 0x36 //eMule v0.26 97 | #define ET_MOD_UNKNOWNx3C 0x3C //enkeyDev.6 / LamerzChoice 9.9a 98 | #define ET_MOD_UNKNOWNx41 0x41 //CrewMod (pre-release mod based on Plus) identification 99 | #define ET_MOD_UNKNOWNx42 0x42 //CrewMod (pre-release mod based on Plus) key verification 100 | #define ET_MOD_UNKNOWNx43 0x43 //CrewMod (pre-release mod based on Plus) version info 101 | #define ET_MOD_UNKNOWNx50 0x50 //Bionic 0.20 Beta] 102 | #define ET_MOD_UNKNOWNx59 0x59 //emule 0.40 / eMule v0.30 [LSD.12e] 103 | #define ET_MOD_UNKNOWNx5B 0x5B //eMule v0.26 104 | #define ET_MOD_UNKNOWNx60 0x60 //eMule v0.30a Hunter.6 + eMule v0.26 105 | #define ET_MOD_UNKNOWNx64 0x64 //LSD.9dT / Athlazan(0.29c)Alpha.3 106 | #define ET_MOD_UNKNOWNx76 0x76 //http://www.haspepapa-welt.de (DodgeBoards) 107 | #define ET_MOD_UNKNOWNx84 0x84 //eChanblardv3.2 108 | #define ET_MOD_UNKNOWNx85 0x85 //? 109 | #define ET_MOD_UNKNOWNx86 0x86 //? 110 | #define ET_MOD_UNKNOWNx93 0x93 //? 111 | #define ET_MOD_UNKNOWNxA6 0xA6 //eMule v0.26 112 | #define ET_MOD_UNKNOWNxB1 0xB1 //Bionic 0.20 Beta] 113 | #define ET_MOD_UNKNOWNxB4 0xB4 //Bionic 0.20 Beta] 114 | #define ET_MOD_UNKNOWNxC8 0xC8 //Bionic 0.20 Beta] 115 | #define ET_MOD_UNKNOWNxC9 0xC9 //Bionic 0.20 Beta] 116 | #define ET_MOD_UNKNOWNxDA 0xDA //Rumata (rus)(Plus v1f) - leecher mod? 117 | //>>> eWombat [SNAFU_V3] 118 | 119 | //SDC team start 120 | #endif 121 | //SDC team end 122 | -------------------------------------------------------------------------------- /specialdlp/document/checksum.md: -------------------------------------------------------------------------------- 1 | Algorithm(File) | Hash | 2 | :--- | :--- | 3 | sha3_256(specialdlp\arm\all-verycd\antiLeecharm.dll.new) | c9316566df78eccc116623b104a6a368e18da45ab59c9f19a81ef621065c0228 | 4 | sha3_256(specialdlp\arm\easymule\antiLeecharm.dll.new) | c85701aa6d3a94ec5d5bf9952498d5037bc1b73d7844934ca17b0ec714f4b9ec | 5 | sha3_256(specialdlp\arm\lite\antiLeecharm.dll.new) | 75d2c5448808af04a6d989bff44e08246423ace1e05501fcfd69d54a3e3252f4 | 6 | sha3_256(specialdlp\arm\verycd-nickname\antiLeecharm.dll.new) | 6aba69371398554693f8051a7aef9b0e1db39464d154d8e78a70bacbcb8e2750 | 7 | sha3_256(specialdlp\arm\verycd-tag\antiLeecharm.dll.new) | 3056a0508de0c5938af3ff2691e7e6f5e4c3c3418893311252f4a2359bdf284b | 8 | sha3_256(specialdlp\arm64\all-verycd\antiLeecharm64.dll.new) | b2d9fcc88fb8bb653a175690689dc527c6008fb422e4d7dbf38ba400dddf438d | 9 | sha3_256(specialdlp\arm64\easymule\antiLeecharm64.dll.new) | ea2bdd0bb42d032d75b26a60e987dd43b7e87f9fa2526b5c59c2a61dd47aef9d | 10 | sha3_256(specialdlp\arm64\lite\antiLeecharm64.dll.new) | 88e582b88ad402f52a6a287215df55a9d1819f896fd76e904b013e5c199793d5 | 11 | sha3_256(specialdlp\arm64\verycd-nickname\antiLeecharm64.dll.new) | 1d1385dc3a5705f6999ef18f0bddb71e848d7d78b19c081031b11e3aecd7c2b0 | 12 | sha3_256(specialdlp\arm64\verycd-tag\antiLeecharm64.dll.new) | 0a4372e51f2eab30e0db939cd38dd8caa00eedc62d949c944aacd3b72cb04606 | 13 | sha3_256(specialdlp\arm64ec\all-verycd\antiLeecharm64ec.dll.new) | 3f55ad6559727101dbf9f0b1916128653d092a4340801991a441f790cadb640d | 14 | sha3_256(specialdlp\arm64ec\easymule\antiLeecharm64ec.dll.new) | e4ae02b545b7f8268fd00e8a4fa029db76abeb03e264e37d0162edc92f28bd9d | 15 | sha3_256(specialdlp\arm64ec\lite\antiLeecharm64ec.dll.new) | 7ddfa14f57790274a072f6e414fb8f30fc7359c05a1c80aea77a6f2e7d83aa9c | 16 | sha3_256(specialdlp\arm64ec\verycd-nickname\antiLeecharm64ec.dll.new) | c3bbde926c2b66f043c9668edd2cad1ae4f41bee225913367dce66f79bd29040 | 17 | sha3_256(specialdlp\arm64ec\verycd-tag\antiLeecharm64ec.dll.new) | f6994534d052a5a442d3deb6f2e76ea64ce180db172f6691f50c7219562bdf92 | 18 | sha3_256(specialdlp\x64\all-verycd\antiLeechx64.dll.new) | 7e2d2ec2558c9b05535d2be5ba88c8a0918689878f215ec2eb5ee73f56bd7c4d | 19 | sha3_256(specialdlp\x64\easymule\antiLeechx64.dll.new) | 5fb322c0544acbf64a8d07d6c458098638b69e6ae216ba9f8579f74ae1e2da84 | 20 | sha3_256(specialdlp\x64\lite\antiLeechx64.dll.new) | 4a476616fe36ccb17f942a2ed911b4cdbe6d135163187ce3b16876d7f8f4e79e | 21 | sha3_256(specialdlp\x64\verycd-nickname\antiLeechx64.dll.new) | 58b44d6f84946c980b23667c214cfb22b219077fe00df63e7a174dc631aebe46 | 22 | sha3_256(specialdlp\x64\verycd-tag\antiLeechx64.dll.new) | 4fc80b19e2072ab78f4d4115a32fe31eebaf3973d08deca8d01965a2a6039ad5 | 23 | sha3_256(specialdlp\x86\all-verycd\antiLeech.dll.new) | 1ce317b61e543ea2dd0cf01adc5424687facfbccfc1e7c5fff2b06069977aaad | 24 | sha3_256(specialdlp\x86\easymule\antiLeech.dll.new) | 82d74b7d786c19aa7f838d7c894f332d309f22ac74c4ee769ff2178c192a3f80 | 25 | sha3_256(specialdlp\x86\lite\antiLeech.dll.new) | a29e1391c694e7764b606a71e0ec1a8ab78f1295b943d5cd7574a58ba9d64b42 | 26 | sha3_256(specialdlp\x86\verycd-nickname\antiLeech.dll.new) | b8b73916b04bca9d395ca654716d8995cd0fe9b1a1bea34458b96cb25c2a5ddb | 27 | sha3_256(specialdlp\x86\verycd-tag\antiLeech.dll.new) | 0da5145155751d69f027b254de97fca5fcd01e9fc686ed246fa2add785152ab9 | 28 | sha3_256(specialdlpTester\arm\specialdlpTester_arm.exe) | 1516f4a18dd7b45efac3ca2c35a708ced22cdceb7e1c8ea1309670192b5a7e3c | 29 | sha3_256(specialdlpTester\arm64\specialdlpTester_arm64.exe) | 53c14843858a0e1fe3e26b813d657f96aab78b3ded5e3d7353f8102b7fdcc439 | 30 | sha3_256(specialdlpTester\arm64ec\specialdlpTester_arm64ec.exe) | fac10e1c7998ba2e4b8cf96e6280106ca859d280309a9a909da9a2fff68acdbe | 31 | sha3_256(specialdlpTester\x64\specialdlpTester_x64.exe) | 4ea8a77b5302dcc728b9442c47029799d862f3182a92aca9501b004e2f560845 | 32 | sha3_256(specialdlpTester\x86\specialdlpTester.exe) | 25dc99daf38d521bcab524c9495c9b2262045b94530dcd1bedb280e4631926e1 | 33 | sha2_256(specialdlp\arm\all-verycd\antiLeecharm.dll.new) | 807a2bdedaffe5c97f02cd9955f59c54fb6ac172791bdfb5827b592040860358 | 34 | sha2_256(specialdlp\arm\easymule\antiLeecharm.dll.new) | 38b54a2bfc5035483fd22760899fd1fb5b58d911b5ce2792f8768545c866b202 | 35 | sha2_256(specialdlp\arm\lite\antiLeecharm.dll.new) | 4826b14f3fa23b4be62fb0974ed3dcd9d570775f3a0454e2ea33da96f865e14e | 36 | sha2_256(specialdlp\arm\verycd-nickname\antiLeecharm.dll.new) | 3e3b458202e0502e046e2eca1ee1b663329ee5aa372d0b37254300b4bef6b4db | 37 | sha2_256(specialdlp\arm\verycd-tag\antiLeecharm.dll.new) | c7c719689502be9e03acd5d9ca1d0548557691dbce5a9948b1ec2403baa4d8c7 | 38 | sha2_256(specialdlp\arm64\all-verycd\antiLeecharm64.dll.new) | d21da73451ee8842281f68771434238491e2e1997e90deeeddb9db4e72213e9c | 39 | sha2_256(specialdlp\arm64\easymule\antiLeecharm64.dll.new) | 30e6ef840be62e87c3ce68de0d351d663f256ee64b353de2180da386c2379a20 | 40 | sha2_256(specialdlp\arm64\lite\antiLeecharm64.dll.new) | 8ecf45829a374b8fff637c390f8eb0729fd7aee3981c1d71a9c6648e25913a40 | 41 | sha2_256(specialdlp\arm64\verycd-nickname\antiLeecharm64.dll.new) | a835dd98f133526a79a0118520265c92b339deceb24de2103b4c274b4a5e4af6 | 42 | sha2_256(specialdlp\arm64\verycd-tag\antiLeecharm64.dll.new) | 6e8c63778c29fb8bc4605234c14809a697339ce49fe452e724f178378db4d747 | 43 | sha2_256(specialdlp\arm64ec\all-verycd\antiLeecharm64ec.dll.new) | ba8eabfd0f92d57c1bb26d5ace1a640b9372f4034509e602594df01011309116 | 44 | sha2_256(specialdlp\arm64ec\easymule\antiLeecharm64ec.dll.new) | a1b44446554ff95becf0c36819bbcdf023d1d8486ea3ca3dbacd03cf49cf11c4 | 45 | sha2_256(specialdlp\arm64ec\lite\antiLeecharm64ec.dll.new) | 5927e8c14da6831bf24b8da84c34babaf91c8f1fafc679dd283611caa649b56a | 46 | sha2_256(specialdlp\arm64ec\verycd-nickname\antiLeecharm64ec.dll.new) | 16a2b68e14a9e5d6bf53551c08f6b70c2e524fef598292819038cf9b8fc4a743 | 47 | sha2_256(specialdlp\arm64ec\verycd-tag\antiLeecharm64ec.dll.new) | d774a68fce076632160436b1e6f745fe5a1732ef8db9168c153e9b1c5748b736 | 48 | sha2_256(specialdlp\x64\all-verycd\antiLeechx64.dll.new) | a08c86cf721c3a6f47e0966f315cd2bbd426d27e0060450ec738cdef6cbc7865 | 49 | sha2_256(specialdlp\x64\easymule\antiLeechx64.dll.new) | 070f912f25c8cc7e6c4ed5f7a909774254418c4b095fe7305c957f8707b5ebd9 | 50 | sha2_256(specialdlp\x64\lite\antiLeechx64.dll.new) | 8040bdea6e11e8b1cef63bf88ef09eac12afb6a4d84f31b8e974e63730d86fdb | 51 | sha2_256(specialdlp\x64\verycd-nickname\antiLeechx64.dll.new) | f1b338ef90b6eaacb97c039d0ba9d2684878f50fb5a3d60d1b93b2d8b2fd7073 | 52 | sha2_256(specialdlp\x64\verycd-tag\antiLeechx64.dll.new) | 97f08c26d43b935d270050f4b9d770619511e2c472e2781a3975dbbb09e3a49d | 53 | sha2_256(specialdlp\x86\all-verycd\antiLeech.dll.new) | c0228e91b572ff91ff0c0b99fdf82e6174b8059f4381e94cd28da1db709383bc | 54 | sha2_256(specialdlp\x86\easymule\antiLeech.dll.new) | d48a93e46c69d1e83e84abd259095a9609b2922af39bbed83afa3b232ed83093 | 55 | sha2_256(specialdlp\x86\lite\antiLeech.dll.new) | 70dde5486ec7119fbf1554bbdfaddabb1ac80bd25e06452de92c3129bf8dab18 | 56 | sha2_256(specialdlp\x86\verycd-nickname\antiLeech.dll.new) | 904833e410f6355223e4a4625f810af4db53f86a7befbcbc089dc6b54db9e93c | 57 | sha2_256(specialdlp\x86\verycd-tag\antiLeech.dll.new) | df0a0e9f67aa4e04ce6275404c4e83264cf51bde3a86460ad2b400023f943e7c | 58 | sha2_256(specialdlpTester\arm\specialdlpTester_arm.exe) | 53528e6fac46cf1ab7a274920af41fd7e4a545c5a5475388dfa8aa8456211a1b | 59 | sha2_256(specialdlpTester\arm64\specialdlpTester_arm64.exe) | 8780b04a2d5cabb2f9269426bfd0586d0b0054052e65f08d9d340d9341c1c006 | 60 | sha2_256(specialdlpTester\arm64ec\specialdlpTester_arm64ec.exe) | 07c8684a6dc6726137f8015f24579e6b830bc3e3c314b880ebe55d1de0d4fda4 | 61 | sha2_256(specialdlpTester\x64\specialdlpTester_x64.exe) | b3b586a62b105d3528486afc97bb934366b304b6b1f8c2c9a4b9c61bfdc89412 | 62 | sha2_256(specialdlpTester\x86\specialdlpTester.exe) | bd214378c4d83c2a912572e027efdbc9a656f591ac82d949a39e40cde1025ebd | 63 | -------------------------------------------------------------------------------- /specialdlp/specialdlpTester/specialdlpTester.cpp: -------------------------------------------------------------------------------- 1 | // Strict DLP Chinese (SDC) is a set of strict DLP (Dynamic Leech Protection) DLLs based on the eMule Xtreme Mod's official version. 2 | // Copyright (C) 2009-2025 SDC Team 3 | // 4 | // This program is free software: you can redistribute it and/or modify 5 | // it under the terms of the GNU General Public License as published by 6 | // the Free Software Foundation, either version 3 of the License, or 7 | // (at your option) any later version. 8 | // 9 | // This program is distributed in the hope that it will be useful, 10 | // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | // GNU General Public License for more details. 13 | // 14 | // You should have received a copy of the GNU General Public License 15 | // along with this program. If not, see . 16 | 17 | 18 | //External dependency 19 | //No dependency 20 | 21 | //Internal dependency 22 | #include "specialdlpTester.h" 23 | 24 | //Global variable 25 | //No variable 26 | 27 | //Namespace definition 28 | //No definition 29 | 30 | //Function: Main 31 | int main( 32 | // const int argc, 33 | // const char * const argv[] 34 | void 35 | ) 36 | { 37 | //Set program environment. 38 | if (_set_errno(0); 39 | std::setlocale(LC_ALL, SDC_LOCALE_SETTING) == nullptr) [[unlikely]] 40 | { 41 | std::cout << "Set locale failed, error code is " << errno << "." << std::endl; 42 | PressReturnToEnd(); 43 | 44 | return EXIT_FAILURE; 45 | } 46 | 47 | //Load library file. 48 | const auto LibraryInstance{LoadLibraryExA(SDC_LIBRARY_NAME, nullptr, LOAD_LIBRARY_SEARCH_APPLICATION_DIR)}; 49 | if (LibraryInstance == nullptr) [[unlikely]] 50 | { 51 | std::cout << "Load library file failed, error code is " << GetLastError() << "." << std::endl; 52 | PressReturnToEnd(); 53 | 54 | return EXIT_FAILURE; 55 | } 56 | 57 | //Load function from library. 58 | const auto GetDLPVersion{reinterpret_cast(GetProcAddress(LibraryInstance, "GetDLPVersion"))}; 59 | const auto DLPCheckModstring_Hard{reinterpret_cast(GetProcAddress(LibraryInstance, "DLPCheckModstring_Hard"))}; 60 | const auto DLPCheckModstring_Soft{reinterpret_cast(GetProcAddress(LibraryInstance, "DLPCheckModstring_Soft"))}; 61 | const auto DLPCheckUsername_Hard{reinterpret_cast(GetProcAddress(LibraryInstance, "DLPCheckUsername_Hard"))}; 62 | const auto DLPCheckUsername_Soft{reinterpret_cast(GetProcAddress(LibraryInstance, "DLPCheckUsername_Soft"))}; 63 | const auto DLPCheckNameAndHashAndMod{reinterpret_cast(GetProcAddress(LibraryInstance, "DLPCheckNameAndHashAndMod"))}; 64 | const auto DLPCheckMessageSpam{reinterpret_cast(GetProcAddress(LibraryInstance, "DLPCheckMessageSpam"))}; 65 | const auto DLPCheckHelloTag{reinterpret_cast(GetProcAddress(LibraryInstance, "DLPCheckHelloTag"))}; 66 | const auto DLPCheckInfoTag{reinterpret_cast(GetProcAddress(LibraryInstance, "DLPCheckInfoTag"))}; 67 | if (GetDLPVersion == nullptr || DLPCheckModstring_Hard == nullptr || DLPCheckModstring_Soft == nullptr || 68 | DLPCheckUsername_Hard == nullptr || DLPCheckUsername_Soft == nullptr || DLPCheckNameAndHashAndMod == nullptr || 69 | DLPCheckMessageSpam == nullptr || DLPCheckHelloTag == nullptr || DLPCheckInfoTag == nullptr 70 | ) [[unlikely]] 71 | { 72 | std::cout << "Load function from library failed, error code is " << GetLastError() << "." << std::endl; 73 | FreeLibrary(LibraryInstance); 74 | PressReturnToEnd(); 75 | 76 | return EXIT_FAILURE; 77 | } 78 | 79 | //Print library location. 80 | auto LocationBuffer(std::make_unique(SDC_PATH_MAXSIZE + sizeof(std::uint8_t))); 81 | if (GetModuleFileNameW(LibraryInstance, LocationBuffer.get(), SDC_PATH_MAXSIZE) <= 0 || 82 | wcsnlen(LocationBuffer.get(), SDC_PATH_MAXSIZE) <= 0) [[unlikely]] 83 | { 84 | std::cout << "Load module name from library failed, error code is " << GetLastError() << "." << std::endl; 85 | FreeLibrary(LibraryInstance); 86 | PressReturnToEnd(); 87 | 88 | return EXIT_FAILURE; 89 | } 90 | else { 91 | std::wcout << L"File location: \"" << LocationBuffer.get() << L"\"" << std::endl; 92 | std::cout << std::endl; 93 | LocationBuffer.reset(); 94 | } 95 | 96 | //Print library version. 97 | std::cout << "Dynamic Anti-Leecher Protection v" << GetDLPVersion() << " loaded." << std::endl; 98 | std::cout << std::endl; 99 | 100 | //Prepare parameter. 101 | std::wstring StringClientVersion; 102 | std::wstring StringModVersion; 103 | std::wstring StringUserName; 104 | std::wstring StringUserHash; 105 | std::wstring StringMessageText; 106 | unsigned int TagNumber{0}; 107 | std::cout << "----------------------------------------------------------------------------------------------------" << std::endl; 108 | std::cout << std::endl; 109 | std::cout << "Example: " << std::endl; 110 | std::cout << "Client version == \"eMule v0.70a\"" << std::endl; 111 | std::cout << "Mod version == \"Xtreme 8.1\"" << std::endl; 112 | std::cout << "User name == \"Hello World!\"" << std::endl; 113 | std::cout << "User hash == \"0123456789ABCDE0123456789ABCDE01\"" << std::endl; 114 | std::cout << "Message text == \"Hello World!\"" << std::endl; 115 | std::cout << "Tag number == \"0\"" << std::endl; 116 | std::cout << std::endl; 117 | std::cout << "Client version: "; 118 | std::getline(std::wcin, StringClientVersion); 119 | std::cout << std::endl; 120 | std::cout << "Mod version: "; 121 | std::getline(std::wcin, StringModVersion); 122 | std::cout << std::endl; 123 | std::cout << "User name: "; 124 | std::getline(std::wcin, StringUserName); 125 | std::cout << std::endl; 126 | std::cout << "User hash: "; 127 | std::getline(std::wcin, StringUserHash); 128 | std::cout << std::endl; 129 | std::cout << "Message text: "; 130 | std::getline(std::wcin, StringMessageText); 131 | std::cout << std::endl; 132 | std::cout << "Tag number: "; 133 | std::wcin >> std::noskipws >> TagNumber; 134 | std::cout << std::endl; 135 | 136 | //Print parameter. 137 | std::cout << "----------------------------------------------------------------------------------------------------" << std::endl; 138 | std::cout << std::endl; 139 | std::cout << "Client version == "; 140 | if (StringClientVersion.empty() == true) 141 | { 142 | StringClientVersion.clear(); 143 | std::wcout << L""; 144 | } 145 | else { 146 | std::cout << "\""; 147 | std::wcout << StringClientVersion; 148 | std::cout << "\""; 149 | } 150 | std::cout << std::endl; 151 | std::cout << "Mod version == "; 152 | if (StringModVersion.empty() == true) 153 | { 154 | StringModVersion.clear(); 155 | std::wcout << L""; 156 | } 157 | else { 158 | std::cout << "\""; 159 | std::wcout << StringModVersion; 160 | std::cout << "\""; 161 | } 162 | std::cout << std::endl; 163 | std::cout << "User name == "; 164 | if (StringUserName.empty() == true) 165 | { 166 | StringUserName.clear(); 167 | std::wcout << L""; 168 | } 169 | else { 170 | std::cout << "\""; 171 | std::wcout << StringUserName; 172 | std::cout << "\""; 173 | } 174 | std::cout << std::endl; 175 | std::cout << "User hash == "; 176 | if (StringUserHash.empty() == true) 177 | { 178 | StringUserHash.clear(); 179 | std::wcout << L""; 180 | } 181 | else { 182 | std::cout << "\""; 183 | std::wcout << StringUserHash; 184 | std::cout << "\""; 185 | } 186 | std::cout << std::endl; 187 | std::cout << "Message text == "; 188 | std::wcout << StringMessageText; 189 | if (StringMessageText.empty() == true) 190 | { 191 | StringMessageText.clear(); 192 | std::wcout << L""; 193 | } 194 | else { 195 | std::cout << "\""; 196 | std::wcout << StringMessageText; 197 | std::cout << "\""; 198 | } 199 | std::cout << std::endl; 200 | std::cout << "Tag number == \""; 201 | std::cout << std::hex << "0x" << TagNumber; 202 | std::cout << "\"" << std::endl; 203 | std::cout << std::endl; 204 | 205 | //Check parameter. 206 | LPCWSTR PointClientVersion{nullptr}; 207 | LPCWSTR PointModVersion{nullptr}; 208 | LPCWSTR PointUserName{nullptr}; 209 | LPCWSTR PointUserHash{nullptr}; 210 | LPCWSTR PointMessageText{nullptr}; 211 | if (StringClientVersion.empty() == false) 212 | PointClientVersion = StringClientVersion.c_str(); 213 | if (StringModVersion.empty() == false) 214 | PointModVersion = StringModVersion.c_str(); 215 | if (StringUserName.empty() == false) 216 | PointUserName = StringUserName.c_str(); 217 | if (StringUserHash.empty() == false) 218 | PointUserHash = StringUserHash.c_str(); 219 | if (StringMessageText.empty() == false) 220 | PointMessageText = StringMessageText.c_str(); 221 | 222 | //Start to test, order is from eMule Xtreme 8.1 sources. 223 | std::cout << "----------------------------------------------------------------------------------------------------" << std::endl; 224 | std::cout << std::endl; 225 | LPCWSTR Reason{nullptr}; 226 | Reason = DLPCheckHelloTag(TagNumber); 227 | if (Reason != nullptr) [[unlikely]] 228 | { 229 | std::cout << " DLPCheckHelloTag: Report \""; 230 | std::wcout << Reason << L"\"." << std::endl; 231 | goto JumpToEnd; 232 | } 233 | Reason = DLPCheckInfoTag(TagNumber); 234 | if (Reason != nullptr) [[unlikely]] 235 | { 236 | std::cout << " DLPCheckInfoTag: Report \""; 237 | std::wcout << Reason << L"\"." << std::endl; 238 | goto JumpToEnd; 239 | } 240 | Reason = DLPCheckModstring_Hard(PointModVersion, PointClientVersion); 241 | if (Reason != nullptr) [[unlikely]] 242 | { 243 | std::cout << " DLPCheckModstring_Hard: Report \""; 244 | std::wcout << Reason << L"\"." << std::endl; 245 | goto JumpToEnd; 246 | } 247 | Reason = DLPCheckModstring_Soft(PointModVersion, PointClientVersion); 248 | if (Reason != nullptr) [[unlikely]] 249 | { 250 | std::cout << " DLPCheckModstring_Soft: Report \""; 251 | std::wcout << Reason << L"\"." << std::endl; 252 | goto JumpToEnd; 253 | } 254 | Reason = DLPCheckNameAndHashAndMod(PointUserName, PointUserHash, PointModVersion); 255 | if (Reason != nullptr) [[unlikely]] 256 | { 257 | std::cout << " DLPCheckNameAndHashAndMod: Report \""; 258 | std::wcout << Reason << L"\"." << std::endl; 259 | goto JumpToEnd; 260 | } 261 | Reason = DLPCheckUsername_Soft(PointUserName); 262 | if (Reason != nullptr) [[unlikely]] 263 | { 264 | std::cout << " DLPCheckUsername_Soft: Report \""; 265 | std::wcout << Reason << L"\"." << std::endl; 266 | goto JumpToEnd; 267 | } 268 | Reason = DLPCheckUsername_Hard(PointUserName); 269 | if (Reason != nullptr) [[unlikely]] 270 | { 271 | std::cout << " DLPCheckUsername_Hard: Report \""; 272 | std::wcout << Reason << L"\"." << std::endl; 273 | goto JumpToEnd; 274 | } 275 | Reason = DLPCheckMessageSpam(PointMessageText); 276 | if (Reason != nullptr) [[unlikely]] 277 | { 278 | std::cout << " DLPCheckMessageSpam: Report \""; 279 | std::wcout << Reason << L"\"." << std::endl; 280 | goto JumpToEnd; 281 | } 282 | 283 | //No any leechers reported. 284 | std::cout << "No reported." << std::endl; 285 | 286 | //Jump here to end. 287 | JumpToEnd: 288 | 289 | //Free library file and pause to show result. 290 | FreeLibrary(LibraryInstance); 291 | PressReturnToEnd(); 292 | 293 | return EXIT_SUCCESS; 294 | } 295 | 296 | //Function: Press "Return" to end. 297 | static void PressReturnToEnd( 298 | void 299 | ) 300 | { 301 | std::cout << std::endl; 302 | std::cout << "Press \"Return\" to end." << std::endl; 303 | std::cin.ignore((std::numeric_limits::max)(), u8'\n'); 304 | std::cin.get(); 305 | 306 | return; 307 | } 308 | -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | 294 | Copyright (C) 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | 'Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | , 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | -------------------------------------------------------------------------------- /specialdlp/specialdlpTester/specialdlpTester.vcxproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | ARM 7 | 8 | 9 | Debug 10 | ARM64 11 | 12 | 13 | Debug 14 | ARM64EC 15 | 16 | 17 | Debug 18 | Win32 19 | 20 | 21 | Release 22 | ARM 23 | 24 | 25 | Release 26 | ARM64 27 | 28 | 29 | Release 30 | ARM64EC 31 | 32 | 33 | Release 34 | Win32 35 | 36 | 37 | Debug 38 | x64 39 | 40 | 41 | Release 42 | x64 43 | 44 | 45 | 46 | 16.0 47 | Win32Proj 48 | {beb0cd3f-35f6-48c5-8ffa-f6cff7ea2225} 49 | specialdlpTester 50 | 10.0 51 | 52 | 53 | 54 | Application 55 | true 56 | v143 57 | Unicode 58 | Static 59 | x64 60 | 61 | 62 | Application 63 | true 64 | v143 65 | Unicode 66 | Static 67 | x64 68 | SpectreLoad 69 | 70 | 71 | Application 72 | false 73 | v143 74 | true 75 | Unicode 76 | Static 77 | x64 78 | SpectreLoad 79 | 80 | 81 | Application 82 | false 83 | v143 84 | true 85 | Unicode 86 | Static 87 | x64 88 | Spectre 89 | 90 | 91 | Application 92 | true 93 | v143 94 | Unicode 95 | Static 96 | x64 97 | 98 | 99 | Application 100 | true 101 | v143 102 | Unicode 103 | Static 104 | x64 105 | SpectreLoad 106 | 107 | 108 | Application 109 | true 110 | v143 111 | Unicode 112 | Static 113 | x64 114 | SpectreLoad 115 | 116 | 117 | Application 118 | false 119 | v143 120 | true 121 | Unicode 122 | Static 123 | x64 124 | SpectreLoad 125 | 126 | 127 | Application 128 | false 129 | v143 130 | true 131 | Unicode 132 | Static 133 | x64 134 | Spectre 135 | 136 | 137 | Application 138 | false 139 | v143 140 | true 141 | Unicode 142 | Static 143 | x64 144 | Spectre 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | $(Platform)\$(Configuration)\ 184 | $(SolutionDir)$(Platform)\$(Configuration)\ 185 | false 186 | 187 | 188 | $(Platform)\$(Configuration)\ 189 | $(SolutionDir)$(Platform)\$(Configuration)\ 190 | false 191 | false 192 | 193 | 194 | $(ProjectName)_arm 195 | false 196 | 197 | 198 | $(ProjectName)_arm 199 | false 200 | false 201 | 202 | 203 | $(ProjectName)_arm64 204 | false 205 | 206 | 207 | $(ProjectName)_arm64 208 | false 209 | false 210 | 211 | 212 | $(ProjectName)_arm64ec 213 | false 214 | true 215 | 216 | 217 | $(ProjectName)_arm64ec 218 | false 219 | true 220 | false 221 | 222 | 223 | $(ProjectName)_x64 224 | false 225 | 226 | 227 | $(ProjectName)_x64 228 | false 229 | false 230 | 231 | 232 | 233 | Level4 234 | true 235 | WIN32;WIN_X86;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) 236 | true 237 | stdcpp20 238 | stdc17 239 | false 240 | false 241 | true 242 | true 243 | true 244 | true 245 | true 246 | true 247 | true 248 | /utf-8 %(AdditionalOptions) 249 | true 250 | 251 | 252 | true 253 | Console 254 | 255 | 256 | PerMonitorHighDPIAware 257 | 258 | 259 | 260 | 261 | Level4 262 | true 263 | WIN32;WIN_ARM32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) 264 | true 265 | stdcpp20 266 | stdc17 267 | false 268 | false 269 | true 270 | true 271 | true 272 | true 273 | true 274 | true 275 | true 276 | /utf-8 %(AdditionalOptions) 277 | true 278 | 279 | 280 | true 281 | Console 282 | 283 | 284 | PerMonitorHighDPIAware 285 | 286 | 287 | 288 | 289 | Level4 290 | true 291 | true 292 | true 293 | WIN32;WIN_X86;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) 294 | true 295 | stdcpp20 296 | stdc17 297 | false 298 | false 299 | true 300 | AnySuitable 301 | Speed 302 | true 303 | true 304 | true 305 | StreamingSIMDExtensions2 306 | true 307 | Guard 308 | true 309 | true 310 | true 311 | true 312 | true 313 | true 314 | true 315 | true 316 | true 317 | /utf-8 %(AdditionalOptions) 318 | true 319 | None 320 | 321 | 322 | true 323 | true 324 | Enabled 325 | true 326 | UseLinkTimeCodeGeneration 327 | false 328 | true 329 | false 330 | true 331 | Console 332 | false 333 | 334 | 335 | PerMonitorHighDPIAware 336 | 337 | 338 | 339 | 340 | Level4 341 | true 342 | true 343 | true 344 | WIN32;WIN_ARM32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) 345 | true 346 | stdcpp20 347 | stdc17 348 | false 349 | false 350 | true 351 | AnySuitable 352 | Speed 353 | true 354 | true 355 | true 356 | ARMVFPv4Instructions 357 | true 358 | Guard 359 | true 360 | true 361 | true 362 | true 363 | true 364 | true 365 | true 366 | /utf-8 %(AdditionalOptions) 367 | true 368 | None 369 | 370 | 371 | true 372 | true 373 | true 374 | false 375 | true 376 | false 377 | Console 378 | false 379 | 380 | 381 | PerMonitorHighDPIAware 382 | 383 | 384 | 385 | 386 | Level4 387 | true 388 | WIN32;WIN64;WIN_X86;WIN_X64;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) 389 | true 390 | stdcpp20 391 | stdc17 392 | false 393 | false 394 | true 395 | true 396 | true 397 | true 398 | true 399 | true 400 | true 401 | /utf-8 %(AdditionalOptions) 402 | true 403 | 404 | 405 | true 406 | Console 407 | 408 | 409 | PerMonitorHighDPIAware 410 | 411 | 412 | 413 | 414 | Level4 415 | true 416 | WIN32;WIN64;WIN_ARM32;WIN_ARM64;WIN_ARM64EC;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) 417 | true 418 | stdcpp20 419 | stdc17 420 | false 421 | false 422 | true 423 | true 424 | true 425 | true 426 | true 427 | true 428 | true 429 | /utf-8 %(AdditionalOptions) 430 | true 431 | 432 | 433 | true 434 | Console 435 | 436 | 437 | PerMonitorHighDPIAware 438 | 439 | 440 | 441 | 442 | Level4 443 | true 444 | WIN32;WIN64;WIN_ARM32;WIN_ARM64;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) 445 | true 446 | stdcpp20 447 | stdc17 448 | false 449 | false 450 | true 451 | true 452 | true 453 | true 454 | true 455 | true 456 | true 457 | /utf-8 %(AdditionalOptions) 458 | true 459 | 460 | 461 | true 462 | Console 463 | 464 | 465 | PerMonitorHighDPIAware 466 | 467 | 468 | 469 | 470 | Level4 471 | true 472 | true 473 | true 474 | WIN32;WIN64;WIN_X86;WIN_X64;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) 475 | true 476 | stdcpp20 477 | stdc17 478 | false 479 | false 480 | true 481 | AnySuitable 482 | Speed 483 | true 484 | true 485 | true 486 | true 487 | Guard 488 | true 489 | true 490 | true 491 | true 492 | true 493 | true 494 | true 495 | true 496 | true 497 | /utf-8 %(AdditionalOptions) 498 | true 499 | None 500 | 501 | 502 | true 503 | true 504 | Enabled 505 | true 506 | UseLinkTimeCodeGeneration 507 | false 508 | true 509 | false 510 | true 511 | Console 512 | false 513 | 514 | 515 | PerMonitorHighDPIAware 516 | 517 | 518 | 519 | 520 | Level4 521 | true 522 | true 523 | true 524 | WIN32;WIN64;WIN_ARM32;WIN_ARM64;WIN_ARM64EC;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) 525 | true 526 | stdcpp20 527 | stdc17 528 | false 529 | false 530 | true 531 | AnySuitable 532 | Speed 533 | true 534 | true 535 | true 536 | CPUExtensionRequirementsARMv88 537 | true 538 | Guard 539 | true 540 | true 541 | true 542 | true 543 | true 544 | true 545 | true 546 | true 547 | /utf-8 %(AdditionalOptions) 548 | true 549 | None 550 | 551 | 552 | true 553 | true 554 | true 555 | false 556 | true 557 | false 558 | Console 559 | false 560 | 561 | 562 | PerMonitorHighDPIAware 563 | 564 | 565 | 566 | 567 | Level4 568 | true 569 | true 570 | true 571 | WIN32;WIN64;WIN_ARM32;WIN_ARM64;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) 572 | true 573 | stdcpp20 574 | stdc17 575 | false 576 | false 577 | true 578 | AnySuitable 579 | Speed 580 | true 581 | true 582 | true 583 | CPUExtensionRequirementsARMv88 584 | true 585 | Guard 586 | true 587 | true 588 | true 589 | true 590 | true 591 | true 592 | true 593 | true 594 | /utf-8 %(AdditionalOptions) 595 | true 596 | None 597 | 598 | 599 | true 600 | true 601 | true 602 | false 603 | true 604 | false 605 | Console 606 | false 607 | 608 | 609 | PerMonitorHighDPIAware 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 | 624 | 625 | -------------------------------------------------------------------------------- /specialdlp/specialdlp.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31903.59 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "specialdlp", "specialdlp\specialdlp.vcxproj", "{3A9EE43B-4961-4F30-A565-A48EB043B6C4}" 7 | EndProject 8 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "specialdlp", "specialdlp", "{AC73A027-5FAF-4DEC-93AC-F92A3326A654}" 9 | EndProject 10 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "document", "document", "{480E715A-EA0B-47A0-BDCD-6484E835EF45}" 11 | ProjectSection(SolutionItems) = preProject 12 | document\changelog.en.txt = document\changelog.en.txt 13 | document\changelog.zh-hans.txt = document\changelog.zh-hans.txt 14 | document\changelog.zh-hant.txt = document\changelog.zh-hant.txt 15 | document\checksum.md = document\checksum.md 16 | document\license = document\license 17 | document\license.specialdlpTester = document\license.specialdlpTester 18 | document\readme.en.html = document\readme.en.html 19 | document\readme.en.md = document\readme.en.md 20 | document\readme.en.txt = document\readme.en.txt 21 | document\readme.zh-hans.html = document\readme.zh-hans.html 22 | document\readme.zh-hans.md = document\readme.zh-hans.md 23 | document\readme.zh-hans.txt = document\readme.zh-hans.txt 24 | document\readme.zh-hant.html = document\readme.zh-hant.html 25 | document\readme.zh-hant.md = document\readme.zh-hant.md 26 | document\readme.zh-hant.txt = document\readme.zh-hant.txt 27 | EndProjectSection 28 | EndProject 29 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "git", "git", "{9A08E279-0E63-45E8-8D88-1076FDC2A6E3}" 30 | ProjectSection(SolutionItems) = preProject 31 | document\git\.gitattributes = document\git\.gitattributes 32 | EndProjectSection 33 | EndProject 34 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "github", "github", "{8DFDE115-8BC9-494A-B734-39CBF145169A}" 35 | EndProject 36 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "gitlab", "gitlab", "{E6BD94B7-6644-4965-A6B8-B08D0D8104A0}" 37 | EndProject 38 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "script", "script", "{B8B5EA5A-BA3F-4A22-A62C-3AE925BE11B6}" 39 | ProjectSection(SolutionItems) = preProject 40 | script\sdc_checksum.py = script\sdc_checksum.py 41 | EndProjectSection 42 | EndProject 43 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "master", "master", "{20E40F21-E3D4-4516-8CE7-233D15C38844}" 44 | ProjectSection(SolutionItems) = preProject 45 | document\git\github\master\readme.md = document\git\github\master\readme.md 46 | document\git\github\master\readme.zh-hans.md = document\git\github\master\readme.zh-hans.md 47 | document\git\github\master\readme.zh-hant.md = document\git\github\master\readme.zh-hant.md 48 | EndProjectSection 49 | EndProject 50 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "binary", "binary", "{9E64FC2C-565E-4FC2-AB5B-1902C7C941E4}" 51 | ProjectSection(SolutionItems) = preProject 52 | document\git\github\binary\readme.md = document\git\github\binary\readme.md 53 | document\git\github\binary\readme.zh-hans.md = document\git\github\binary\readme.zh-hans.md 54 | document\git\github\binary\readme.zh-hant.md = document\git\github\binary\readme.zh-hant.md 55 | EndProjectSection 56 | EndProject 57 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "master", "master", "{B32B3B46-0FF9-413B-AC4F-B48749C969B4}" 58 | ProjectSection(SolutionItems) = preProject 59 | document\git\gitlab\master\readme.md = document\git\gitlab\master\readme.md 60 | document\git\gitlab\master\readme.zh-hans.md = document\git\gitlab\master\readme.zh-hans.md 61 | document\git\gitlab\master\readme.zh-hant.md = document\git\gitlab\master\readme.zh-hant.md 62 | EndProjectSection 63 | EndProject 64 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "binary", "binary", "{41CB23C9-A1C9-4ABF-97D6-6969EA885078}" 65 | ProjectSection(SolutionItems) = preProject 66 | document\git\gitlab\binary\readme.md = document\git\gitlab\binary\readme.md 67 | document\git\gitlab\binary\readme.zh-hans.md = document\git\gitlab\binary\readme.zh-hans.md 68 | document\git\gitlab\binary\readme.zh-hant.md = document\git\gitlab\binary\readme.zh-hant.md 69 | EndProjectSection 70 | EndProject 71 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "target", "target", "{986C1212-FE51-4509-BD30-055C82410BBF}" 72 | EndProject 73 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "specialdlpTester", "specialdlpTester\specialdlpTester.vcxproj", "{BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}" 74 | EndProject 75 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "archive", "archive", "{48BF678A-CF1F-42E8-B024-E0990C1F206B}" 76 | EndProject 77 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "arm", "arm", "{CF942649-6102-4E94-8918-D362AE6A9A62}" 78 | EndProject 79 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "arm64", "arm64", "{0085204F-D0FB-489B-874D-EE492513EEAE}" 80 | EndProject 81 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "arm64ec", "arm64ec", "{8F32A07B-C968-4B28-A540-9E43E5504221}" 82 | EndProject 83 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "x86", "x86", "{357299DC-7753-4EAB-BBFD-D4CA50B91BCC}" 84 | EndProject 85 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "x64", "x64", "{E7AEA776-F51F-4964-BE93-798EC240BFC9}" 86 | EndProject 87 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "all-verycd", "all-verycd", "{3B492BC9-AB45-4FA3-B139-8E5D63694A1B}" 88 | ProjectSection(SolutionItems) = preProject 89 | target\specialdlp\arm\all-verycd\antiLeecharm.dll.new = target\specialdlp\arm\all-verycd\antiLeecharm.dll.new 90 | EndProjectSection 91 | EndProject 92 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "all-verycd", "all-verycd", "{84E72D04-DAE7-4A3B-9651-D0E569F2637B}" 93 | ProjectSection(SolutionItems) = preProject 94 | target\specialdlp\arm64\all-verycd\antiLeecharm64.dll.new = target\specialdlp\arm64\all-verycd\antiLeecharm64.dll.new 95 | EndProjectSection 96 | EndProject 97 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "all-verycd", "all-verycd", "{64E43285-EC0A-4774-B6F3-F049AB3D9C77}" 98 | ProjectSection(SolutionItems) = preProject 99 | target\specialdlp\arm64ec\all-verycd\antiLeecharm64ec.dll.new = target\specialdlp\arm64ec\all-verycd\antiLeecharm64ec.dll.new 100 | EndProjectSection 101 | EndProject 102 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "all-verycd", "all-verycd", "{FA9A2E71-4D1C-4F6C-9ED7-19F71A2361C9}" 103 | ProjectSection(SolutionItems) = preProject 104 | target\specialdlp\x64\all-verycd\antiLeechx64.dll.new = target\specialdlp\x64\all-verycd\antiLeechx64.dll.new 105 | EndProjectSection 106 | EndProject 107 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "all-verycd", "all-verycd", "{B88B61A4-43CF-43CB-B004-48C4C82C710D}" 108 | ProjectSection(SolutionItems) = preProject 109 | target\specialdlp\x86\all-verycd\antiLeech.dll.new = target\specialdlp\x86\all-verycd\antiLeech.dll.new 110 | EndProjectSection 111 | EndProject 112 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "easymule", "easymule", "{8C9E3DDD-1451-4ACA-9F26-890525648515}" 113 | ProjectSection(SolutionItems) = preProject 114 | target\specialdlp\arm\easymule\antiLeecharm.dll.new = target\specialdlp\arm\easymule\antiLeecharm.dll.new 115 | EndProjectSection 116 | EndProject 117 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "easymule", "easymule", "{6DCD3A66-7E1B-4E02-B571-F80A2DB27F80}" 118 | ProjectSection(SolutionItems) = preProject 119 | target\specialdlp\arm64\easymule\antiLeecharm64.dll.new = target\specialdlp\arm64\easymule\antiLeecharm64.dll.new 120 | EndProjectSection 121 | EndProject 122 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "easymule", "easymule", "{0E4F029D-F819-45CB-9CB4-1246F28C75CE}" 123 | ProjectSection(SolutionItems) = preProject 124 | target\specialdlp\arm64ec\easymule\antiLeecharm64ec.dll.new = target\specialdlp\arm64ec\easymule\antiLeecharm64ec.dll.new 125 | EndProjectSection 126 | EndProject 127 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "easymule", "easymule", "{8045DD46-3BF2-4473-B6D1-4A7D4E73DF47}" 128 | ProjectSection(SolutionItems) = preProject 129 | target\specialdlp\x64\easymule\antiLeechx64.dll.new = target\specialdlp\x64\easymule\antiLeechx64.dll.new 130 | EndProjectSection 131 | EndProject 132 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "easymule", "easymule", "{A61B8F5F-7952-4F1C-89BB-EFC2B29C4139}" 133 | ProjectSection(SolutionItems) = preProject 134 | target\specialdlp\x86\easymule\antiLeech.dll.new = target\specialdlp\x86\easymule\antiLeech.dll.new 135 | EndProjectSection 136 | EndProject 137 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "lite", "lite", "{F43A64FB-007E-4730-B13B-8D7C420B0514}" 138 | ProjectSection(SolutionItems) = preProject 139 | target\specialdlp\arm\lite\antiLeecharm.dll.new = target\specialdlp\arm\lite\antiLeecharm.dll.new 140 | EndProjectSection 141 | EndProject 142 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "lite", "lite", "{8CF411EA-E1FE-486D-B361-7D67AF965C36}" 143 | ProjectSection(SolutionItems) = preProject 144 | target\specialdlp\arm64\lite\antiLeecharm64.dll.new = target\specialdlp\arm64\lite\antiLeecharm64.dll.new 145 | EndProjectSection 146 | EndProject 147 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "lite", "lite", "{DF2390FA-F296-4D39-A1E7-721BD74EF879}" 148 | ProjectSection(SolutionItems) = preProject 149 | target\specialdlp\arm64ec\lite\antiLeecharm64ec.dll.new = target\specialdlp\arm64ec\lite\antiLeecharm64ec.dll.new 150 | EndProjectSection 151 | EndProject 152 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "lite", "lite", "{0E424596-8104-4E2E-86DD-7C8C37CF5069}" 153 | ProjectSection(SolutionItems) = preProject 154 | target\specialdlp\x64\lite\antiLeechx64.dll.new = target\specialdlp\x64\lite\antiLeechx64.dll.new 155 | EndProjectSection 156 | EndProject 157 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "lite", "lite", "{6576DC3E-7B3E-49DC-BA57-5D65F9D0B36C}" 158 | ProjectSection(SolutionItems) = preProject 159 | target\specialdlp\x86\lite\antiLeech.dll.new = target\specialdlp\x86\lite\antiLeech.dll.new 160 | EndProjectSection 161 | EndProject 162 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "verycd-nickname", "verycd-nickname", "{7D8D64E2-874B-4058-9290-56BB7B559965}" 163 | ProjectSection(SolutionItems) = preProject 164 | target\specialdlp\arm\verycd-nickname\antiLeecharm.dll.new = target\specialdlp\arm\verycd-nickname\antiLeecharm.dll.new 165 | EndProjectSection 166 | EndProject 167 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "verycd-nickname", "verycd-nickname", "{A749225A-1CE2-474C-814B-7C7A2BEE39A6}" 168 | ProjectSection(SolutionItems) = preProject 169 | target\specialdlp\arm64\verycd-nickname\antiLeecharm64.dll.new = target\specialdlp\arm64\verycd-nickname\antiLeecharm64.dll.new 170 | EndProjectSection 171 | EndProject 172 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "verycd-nickname", "verycd-nickname", "{B231876B-7D77-4BDA-91E0-CEA49C1B4C4B}" 173 | ProjectSection(SolutionItems) = preProject 174 | target\specialdlp\arm64ec\verycd-nickname\antiLeecharm64ec.dll.new = target\specialdlp\arm64ec\verycd-nickname\antiLeecharm64ec.dll.new 175 | EndProjectSection 176 | EndProject 177 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "verycd-nickname", "verycd-nickname", "{6FC868E7-13B9-4D57-8930-18E70C6D20AE}" 178 | ProjectSection(SolutionItems) = preProject 179 | target\specialdlp\x64\verycd-nickname\antiLeechx64.dll.new = target\specialdlp\x64\verycd-nickname\antiLeechx64.dll.new 180 | EndProjectSection 181 | EndProject 182 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "verycd-nickname", "verycd-nickname", "{CC7CE055-6255-4BAE-AA48-C76F13C4173F}" 183 | ProjectSection(SolutionItems) = preProject 184 | target\specialdlp\x86\verycd-nickname\antiLeech.dll.new = target\specialdlp\x86\verycd-nickname\antiLeech.dll.new 185 | EndProjectSection 186 | EndProject 187 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "verycd-tag", "verycd-tag", "{F6FA0316-D6BD-4B9D-8B96-E4085957791F}" 188 | ProjectSection(SolutionItems) = preProject 189 | target\specialdlp\arm\verycd-tag\antiLeecharm.dll.new = target\specialdlp\arm\verycd-tag\antiLeecharm.dll.new 190 | EndProjectSection 191 | EndProject 192 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "verycd-tag", "verycd-tag", "{535CA565-4D68-4746-94F2-05CC99B4B4F9}" 193 | ProjectSection(SolutionItems) = preProject 194 | target\specialdlp\arm64\verycd-tag\antiLeecharm64.dll.new = target\specialdlp\arm64\verycd-tag\antiLeecharm64.dll.new 195 | EndProjectSection 196 | EndProject 197 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "verycd-tag", "verycd-tag", "{CC1A0640-0B66-4BAE-A21F-DEF5ABA2EB0F}" 198 | ProjectSection(SolutionItems) = preProject 199 | target\specialdlp\arm64ec\verycd-tag\antiLeecharm64ec.dll.new = target\specialdlp\arm64ec\verycd-tag\antiLeecharm64ec.dll.new 200 | EndProjectSection 201 | EndProject 202 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "verycd-tag", "verycd-tag", "{CD182508-EAF9-4DE3-BD8E-280C658ECD7E}" 203 | ProjectSection(SolutionItems) = preProject 204 | target\specialdlp\x64\verycd-tag\antiLeechx64.dll.new = target\specialdlp\x64\verycd-tag\antiLeechx64.dll.new 205 | EndProjectSection 206 | EndProject 207 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "verycd-tag", "verycd-tag", "{07E5158B-45D6-4017-A4E3-D249D49986DF}" 208 | ProjectSection(SolutionItems) = preProject 209 | target\specialdlp\x86\verycd-tag\antiLeech.dll.new = target\specialdlp\x86\verycd-tag\antiLeech.dll.new 210 | EndProjectSection 211 | EndProject 212 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "specialdlp", "specialdlp", "{998CF04B-AC9B-4E3B-AEFE-334D29BE777E}" 213 | EndProject 214 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "specialdlpTester", "specialdlpTester", "{E574BDA1-E294-4643-936D-6691A9E116FD}" 215 | EndProject 216 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "arm", "arm", "{476BB462-4E1F-4AE9-9692-CE65F9A0DED2}" 217 | ProjectSection(SolutionItems) = preProject 218 | target\specialdlpTester\arm\specialdlpTester_arm.exe = target\specialdlpTester\arm\specialdlpTester_arm.exe 219 | EndProjectSection 220 | EndProject 221 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "arm64", "arm64", "{1F57BF46-24B8-4ED6-956C-D66D886B98D0}" 222 | ProjectSection(SolutionItems) = preProject 223 | target\specialdlpTester\arm64\specialdlpTester_arm64.exe = target\specialdlpTester\arm64\specialdlpTester_arm64.exe 224 | EndProjectSection 225 | EndProject 226 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "arm64ec", "arm64ec", "{427CA8C4-01C7-49D1-B942-9FF82E13B408}" 227 | ProjectSection(SolutionItems) = preProject 228 | target\specialdlpTester\arm64ec\specialdlpTester_arm64ec.exe = target\specialdlpTester\arm64ec\specialdlpTester_arm64ec.exe 229 | EndProjectSection 230 | EndProject 231 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "x64", "x64", "{C032E0CC-8853-42E3-8087-E4DB90C94BFF}" 232 | ProjectSection(SolutionItems) = preProject 233 | target\specialdlpTester\x64\specialdlpTester_x64.exe = target\specialdlpTester\x64\specialdlpTester_x64.exe 234 | EndProjectSection 235 | EndProject 236 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "x86", "x86", "{DE7F5C42-B61D-487A-B9E6-95193B266430}" 237 | ProjectSection(SolutionItems) = preProject 238 | target\specialdlpTester\x86\specialdlpTester.exe = target\specialdlpTester\x86\specialdlpTester.exe 239 | EndProjectSection 240 | EndProject 241 | Global 242 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 243 | Debug|ARM = Debug|ARM 244 | Debug|ARM64 = Debug|ARM64 245 | Debug|ARM64EC = Debug|ARM64EC 246 | Debug|x64 = Debug|x64 247 | Debug|x86 = Debug|x86 248 | Release_SDC_ALL_VERYCD|ARM = Release_SDC_ALL_VERYCD|ARM 249 | Release_SDC_ALL_VERYCD|ARM64 = Release_SDC_ALL_VERYCD|ARM64 250 | Release_SDC_ALL_VERYCD|ARM64EC = Release_SDC_ALL_VERYCD|ARM64EC 251 | Release_SDC_ALL_VERYCD|x64 = Release_SDC_ALL_VERYCD|x64 252 | Release_SDC_ALL_VERYCD|x86 = Release_SDC_ALL_VERYCD|x86 253 | Release_SDC_EASYMULE|ARM = Release_SDC_EASYMULE|ARM 254 | Release_SDC_EASYMULE|ARM64 = Release_SDC_EASYMULE|ARM64 255 | Release_SDC_EASYMULE|ARM64EC = Release_SDC_EASYMULE|ARM64EC 256 | Release_SDC_EASYMULE|x64 = Release_SDC_EASYMULE|x64 257 | Release_SDC_EASYMULE|x86 = Release_SDC_EASYMULE|x86 258 | Release_SDC_LITE|ARM = Release_SDC_LITE|ARM 259 | Release_SDC_LITE|ARM64 = Release_SDC_LITE|ARM64 260 | Release_SDC_LITE|ARM64EC = Release_SDC_LITE|ARM64EC 261 | Release_SDC_LITE|x64 = Release_SDC_LITE|x64 262 | Release_SDC_LITE|x86 = Release_SDC_LITE|x86 263 | Release_SDC_VERYCD_NICKNAME|ARM = Release_SDC_VERYCD_NICKNAME|ARM 264 | Release_SDC_VERYCD_NICKNAME|ARM64 = Release_SDC_VERYCD_NICKNAME|ARM64 265 | Release_SDC_VERYCD_NICKNAME|ARM64EC = Release_SDC_VERYCD_NICKNAME|ARM64EC 266 | Release_SDC_VERYCD_NICKNAME|x64 = Release_SDC_VERYCD_NICKNAME|x64 267 | Release_SDC_VERYCD_NICKNAME|x86 = Release_SDC_VERYCD_NICKNAME|x86 268 | Release_SDC_VERYCD_TAG|ARM = Release_SDC_VERYCD_TAG|ARM 269 | Release_SDC_VERYCD_TAG|ARM64 = Release_SDC_VERYCD_TAG|ARM64 270 | Release_SDC_VERYCD_TAG|ARM64EC = Release_SDC_VERYCD_TAG|ARM64EC 271 | Release_SDC_VERYCD_TAG|x64 = Release_SDC_VERYCD_TAG|x64 272 | Release_SDC_VERYCD_TAG|x86 = Release_SDC_VERYCD_TAG|x86 273 | Release|ARM = Release|ARM 274 | Release|ARM64 = Release|ARM64 275 | Release|ARM64EC = Release|ARM64EC 276 | Release|x64 = Release|x64 277 | Release|x86 = Release|x86 278 | EndGlobalSection 279 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 280 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Debug|ARM.ActiveCfg = Debug|ARM 281 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Debug|ARM.Build.0 = Debug|ARM 282 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Debug|ARM64.ActiveCfg = Debug|ARM64 283 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Debug|ARM64.Build.0 = Debug|ARM64 284 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Debug|ARM64EC.ActiveCfg = Debug|ARM64EC 285 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Debug|ARM64EC.Build.0 = Debug|ARM64EC 286 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Debug|x64.ActiveCfg = Debug|x64 287 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Debug|x64.Build.0 = Debug|x64 288 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Debug|x86.ActiveCfg = Debug|Win32 289 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Debug|x86.Build.0 = Debug|Win32 290 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_ALL_VERYCD|ARM.ActiveCfg = Release_SDC_ALL_VERYCD|ARM 291 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_ALL_VERYCD|ARM.Build.0 = Release_SDC_ALL_VERYCD|ARM 292 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_ALL_VERYCD|ARM64.ActiveCfg = Release_SDC_ALL_VERYCD|ARM64 293 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_ALL_VERYCD|ARM64.Build.0 = Release_SDC_ALL_VERYCD|ARM64 294 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_ALL_VERYCD|ARM64EC.ActiveCfg = Release_SDC_ALL_VERYCD|ARM64EC 295 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_ALL_VERYCD|ARM64EC.Build.0 = Release_SDC_ALL_VERYCD|ARM64EC 296 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_ALL_VERYCD|x64.ActiveCfg = Release_SDC_ALL_VERYCD|x64 297 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_ALL_VERYCD|x64.Build.0 = Release_SDC_ALL_VERYCD|x64 298 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_ALL_VERYCD|x86.ActiveCfg = Release_SDC_ALL_VERYCD|Win32 299 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_ALL_VERYCD|x86.Build.0 = Release_SDC_ALL_VERYCD|Win32 300 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_EASYMULE|ARM.ActiveCfg = Release_SDC_EASYMULE|ARM 301 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_EASYMULE|ARM.Build.0 = Release_SDC_EASYMULE|ARM 302 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_EASYMULE|ARM64.ActiveCfg = Release_SDC_EASYMULE|ARM64 303 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_EASYMULE|ARM64.Build.0 = Release_SDC_EASYMULE|ARM64 304 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_EASYMULE|ARM64EC.ActiveCfg = Release_SDC_EASYMULE|ARM64EC 305 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_EASYMULE|ARM64EC.Build.0 = Release_SDC_EASYMULE|ARM64EC 306 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_EASYMULE|x64.ActiveCfg = Release_SDC_EASYMULE|x64 307 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_EASYMULE|x64.Build.0 = Release_SDC_EASYMULE|x64 308 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_EASYMULE|x86.ActiveCfg = Release_SDC_EASYMULE|Win32 309 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_EASYMULE|x86.Build.0 = Release_SDC_EASYMULE|Win32 310 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_LITE|ARM.ActiveCfg = Release_SDC_LITE|ARM 311 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_LITE|ARM.Build.0 = Release_SDC_LITE|ARM 312 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_LITE|ARM64.ActiveCfg = Release_SDC_LITE|ARM64 313 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_LITE|ARM64.Build.0 = Release_SDC_LITE|ARM64 314 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_LITE|ARM64EC.ActiveCfg = Release_SDC_LITE|ARM64EC 315 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_LITE|ARM64EC.Build.0 = Release_SDC_LITE|ARM64EC 316 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_LITE|x64.ActiveCfg = Release_SDC_LITE|x64 317 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_LITE|x64.Build.0 = Release_SDC_LITE|x64 318 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_LITE|x86.ActiveCfg = Release_SDC_LITE|Win32 319 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_LITE|x86.Build.0 = Release_SDC_LITE|Win32 320 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_VERYCD_NICKNAME|ARM.ActiveCfg = Release_SDC_VERYCD_NICKNAME|ARM 321 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_VERYCD_NICKNAME|ARM.Build.0 = Release_SDC_VERYCD_NICKNAME|ARM 322 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_VERYCD_NICKNAME|ARM64.ActiveCfg = Release_SDC_VERYCD_NICKNAME|ARM64 323 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_VERYCD_NICKNAME|ARM64.Build.0 = Release_SDC_VERYCD_NICKNAME|ARM64 324 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_VERYCD_NICKNAME|ARM64EC.ActiveCfg = Release_SDC_VERYCD_NICKNAME|ARM64EC 325 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_VERYCD_NICKNAME|ARM64EC.Build.0 = Release_SDC_VERYCD_NICKNAME|ARM64EC 326 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_VERYCD_NICKNAME|x64.ActiveCfg = Release_SDC_VERYCD_NICKNAME|x64 327 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_VERYCD_NICKNAME|x64.Build.0 = Release_SDC_VERYCD_NICKNAME|x64 328 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_VERYCD_NICKNAME|x86.ActiveCfg = Release_SDC_VERYCD_NICKNAME|Win32 329 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_VERYCD_NICKNAME|x86.Build.0 = Release_SDC_VERYCD_NICKNAME|Win32 330 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_VERYCD_TAG|ARM.ActiveCfg = Release_SDC_VERYCD_TAG|ARM 331 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_VERYCD_TAG|ARM.Build.0 = Release_SDC_VERYCD_TAG|ARM 332 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_VERYCD_TAG|ARM64.ActiveCfg = Release_SDC_VERYCD_TAG|ARM64 333 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_VERYCD_TAG|ARM64.Build.0 = Release_SDC_VERYCD_TAG|ARM64 334 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_VERYCD_TAG|ARM64EC.ActiveCfg = Release_SDC_VERYCD_TAG|ARM64EC 335 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_VERYCD_TAG|ARM64EC.Build.0 = Release_SDC_VERYCD_TAG|ARM64EC 336 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_VERYCD_TAG|x64.ActiveCfg = Release_SDC_VERYCD_TAG|x64 337 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_VERYCD_TAG|x64.Build.0 = Release_SDC_VERYCD_TAG|x64 338 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_VERYCD_TAG|x86.ActiveCfg = Release_SDC_VERYCD_TAG|Win32 339 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release_SDC_VERYCD_TAG|x86.Build.0 = Release_SDC_VERYCD_TAG|Win32 340 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release|ARM.ActiveCfg = Release|ARM 341 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release|ARM.Build.0 = Release|ARM 342 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release|ARM64.ActiveCfg = Release|ARM64 343 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release|ARM64.Build.0 = Release|ARM64 344 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release|ARM64EC.ActiveCfg = Release|ARM64EC 345 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release|ARM64EC.Build.0 = Release|ARM64EC 346 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release|x64.ActiveCfg = Release|x64 347 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release|x64.Build.0 = Release|x64 348 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release|x86.ActiveCfg = Release|Win32 349 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4}.Release|x86.Build.0 = Release|Win32 350 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Debug|ARM.ActiveCfg = Debug|ARM 351 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Debug|ARM.Build.0 = Debug|ARM 352 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Debug|ARM64.ActiveCfg = Debug|ARM64 353 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Debug|ARM64.Build.0 = Debug|ARM64 354 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Debug|ARM64EC.ActiveCfg = Debug|ARM64EC 355 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Debug|ARM64EC.Build.0 = Debug|ARM64EC 356 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Debug|x64.ActiveCfg = Debug|x64 357 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Debug|x64.Build.0 = Debug|x64 358 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Debug|x86.ActiveCfg = Debug|Win32 359 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Debug|x86.Build.0 = Debug|Win32 360 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_ALL_VERYCD|ARM.ActiveCfg = Release|ARM 361 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_ALL_VERYCD|ARM.Build.0 = Release|ARM 362 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_ALL_VERYCD|ARM64.ActiveCfg = Release|ARM64 363 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_ALL_VERYCD|ARM64.Build.0 = Release|ARM64 364 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_ALL_VERYCD|ARM64EC.ActiveCfg = Release|ARM64EC 365 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_ALL_VERYCD|ARM64EC.Build.0 = Release|ARM64EC 366 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_ALL_VERYCD|x64.ActiveCfg = Release|x64 367 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_ALL_VERYCD|x64.Build.0 = Release|x64 368 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_ALL_VERYCD|x86.ActiveCfg = Release|Win32 369 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_ALL_VERYCD|x86.Build.0 = Release|Win32 370 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_EASYMULE|ARM.ActiveCfg = Release|ARM 371 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_EASYMULE|ARM.Build.0 = Release|ARM 372 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_EASYMULE|ARM64.ActiveCfg = Release|ARM64 373 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_EASYMULE|ARM64.Build.0 = Release|ARM64 374 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_EASYMULE|ARM64EC.ActiveCfg = Release|ARM64EC 375 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_EASYMULE|ARM64EC.Build.0 = Release|ARM64EC 376 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_EASYMULE|x64.ActiveCfg = Release|x64 377 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_EASYMULE|x64.Build.0 = Release|x64 378 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_EASYMULE|x86.ActiveCfg = Release|Win32 379 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_EASYMULE|x86.Build.0 = Release|Win32 380 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_LITE|ARM.ActiveCfg = Release|ARM 381 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_LITE|ARM.Build.0 = Release|ARM 382 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_LITE|ARM64.ActiveCfg = Release|ARM64 383 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_LITE|ARM64.Build.0 = Release|ARM64 384 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_LITE|ARM64EC.ActiveCfg = Release|ARM64EC 385 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_LITE|ARM64EC.Build.0 = Release|ARM64EC 386 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_LITE|x64.ActiveCfg = Release|x64 387 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_LITE|x64.Build.0 = Release|x64 388 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_LITE|x86.ActiveCfg = Release|Win32 389 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_LITE|x86.Build.0 = Release|Win32 390 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_VERYCD_NICKNAME|ARM.ActiveCfg = Release|ARM 391 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_VERYCD_NICKNAME|ARM.Build.0 = Release|ARM 392 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_VERYCD_NICKNAME|ARM64.ActiveCfg = Release|ARM64 393 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_VERYCD_NICKNAME|ARM64.Build.0 = Release|ARM64 394 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_VERYCD_NICKNAME|ARM64EC.ActiveCfg = Release|ARM64EC 395 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_VERYCD_NICKNAME|ARM64EC.Build.0 = Release|ARM64EC 396 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_VERYCD_NICKNAME|x64.ActiveCfg = Release|x64 397 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_VERYCD_NICKNAME|x64.Build.0 = Release|x64 398 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_VERYCD_NICKNAME|x86.ActiveCfg = Release|Win32 399 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_VERYCD_NICKNAME|x86.Build.0 = Release|Win32 400 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_VERYCD_TAG|ARM.ActiveCfg = Release|ARM 401 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_VERYCD_TAG|ARM.Build.0 = Release|ARM 402 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_VERYCD_TAG|ARM64.ActiveCfg = Release|ARM64 403 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_VERYCD_TAG|ARM64.Build.0 = Release|ARM64 404 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_VERYCD_TAG|ARM64EC.ActiveCfg = Release|ARM64EC 405 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_VERYCD_TAG|ARM64EC.Build.0 = Release|ARM64EC 406 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_VERYCD_TAG|x64.ActiveCfg = Release|x64 407 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_VERYCD_TAG|x64.Build.0 = Release|x64 408 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_VERYCD_TAG|x86.ActiveCfg = Release|Win32 409 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release_SDC_VERYCD_TAG|x86.Build.0 = Release|Win32 410 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release|ARM.ActiveCfg = Release|ARM 411 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release|ARM.Build.0 = Release|ARM 412 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release|ARM64.ActiveCfg = Release|ARM64 413 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release|ARM64.Build.0 = Release|ARM64 414 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release|ARM64EC.ActiveCfg = Release|ARM64EC 415 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release|ARM64EC.Build.0 = Release|ARM64EC 416 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release|x64.ActiveCfg = Release|x64 417 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release|x64.Build.0 = Release|x64 418 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release|x86.ActiveCfg = Release|Win32 419 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225}.Release|x86.Build.0 = Release|Win32 420 | EndGlobalSection 421 | GlobalSection(SolutionProperties) = preSolution 422 | HideSolutionNode = FALSE 423 | EndGlobalSection 424 | GlobalSection(NestedProjects) = preSolution 425 | {3A9EE43B-4961-4F30-A565-A48EB043B6C4} = {AC73A027-5FAF-4DEC-93AC-F92A3326A654} 426 | {480E715A-EA0B-47A0-BDCD-6484E835EF45} = {AC73A027-5FAF-4DEC-93AC-F92A3326A654} 427 | {9A08E279-0E63-45E8-8D88-1076FDC2A6E3} = {480E715A-EA0B-47A0-BDCD-6484E835EF45} 428 | {8DFDE115-8BC9-494A-B734-39CBF145169A} = {9A08E279-0E63-45E8-8D88-1076FDC2A6E3} 429 | {E6BD94B7-6644-4965-A6B8-B08D0D8104A0} = {9A08E279-0E63-45E8-8D88-1076FDC2A6E3} 430 | {B8B5EA5A-BA3F-4A22-A62C-3AE925BE11B6} = {AC73A027-5FAF-4DEC-93AC-F92A3326A654} 431 | {20E40F21-E3D4-4516-8CE7-233D15C38844} = {8DFDE115-8BC9-494A-B734-39CBF145169A} 432 | {9E64FC2C-565E-4FC2-AB5B-1902C7C941E4} = {8DFDE115-8BC9-494A-B734-39CBF145169A} 433 | {B32B3B46-0FF9-413B-AC4F-B48749C969B4} = {E6BD94B7-6644-4965-A6B8-B08D0D8104A0} 434 | {41CB23C9-A1C9-4ABF-97D6-6969EA885078} = {E6BD94B7-6644-4965-A6B8-B08D0D8104A0} 435 | {986C1212-FE51-4509-BD30-055C82410BBF} = {AC73A027-5FAF-4DEC-93AC-F92A3326A654} 436 | {BEB0CD3F-35F6-48C5-8FFA-F6CFF7EA2225} = {AC73A027-5FAF-4DEC-93AC-F92A3326A654} 437 | {48BF678A-CF1F-42E8-B024-E0990C1F206B} = {AC73A027-5FAF-4DEC-93AC-F92A3326A654} 438 | {CF942649-6102-4E94-8918-D362AE6A9A62} = {998CF04B-AC9B-4E3B-AEFE-334D29BE777E} 439 | {0085204F-D0FB-489B-874D-EE492513EEAE} = {998CF04B-AC9B-4E3B-AEFE-334D29BE777E} 440 | {8F32A07B-C968-4B28-A540-9E43E5504221} = {998CF04B-AC9B-4E3B-AEFE-334D29BE777E} 441 | {357299DC-7753-4EAB-BBFD-D4CA50B91BCC} = {998CF04B-AC9B-4E3B-AEFE-334D29BE777E} 442 | {E7AEA776-F51F-4964-BE93-798EC240BFC9} = {998CF04B-AC9B-4E3B-AEFE-334D29BE777E} 443 | {3B492BC9-AB45-4FA3-B139-8E5D63694A1B} = {CF942649-6102-4E94-8918-D362AE6A9A62} 444 | {84E72D04-DAE7-4A3B-9651-D0E569F2637B} = {0085204F-D0FB-489B-874D-EE492513EEAE} 445 | {64E43285-EC0A-4774-B6F3-F049AB3D9C77} = {8F32A07B-C968-4B28-A540-9E43E5504221} 446 | {FA9A2E71-4D1C-4F6C-9ED7-19F71A2361C9} = {E7AEA776-F51F-4964-BE93-798EC240BFC9} 447 | {B88B61A4-43CF-43CB-B004-48C4C82C710D} = {357299DC-7753-4EAB-BBFD-D4CA50B91BCC} 448 | {8C9E3DDD-1451-4ACA-9F26-890525648515} = {CF942649-6102-4E94-8918-D362AE6A9A62} 449 | {6DCD3A66-7E1B-4E02-B571-F80A2DB27F80} = {0085204F-D0FB-489B-874D-EE492513EEAE} 450 | {0E4F029D-F819-45CB-9CB4-1246F28C75CE} = {8F32A07B-C968-4B28-A540-9E43E5504221} 451 | {8045DD46-3BF2-4473-B6D1-4A7D4E73DF47} = {E7AEA776-F51F-4964-BE93-798EC240BFC9} 452 | {A61B8F5F-7952-4F1C-89BB-EFC2B29C4139} = {357299DC-7753-4EAB-BBFD-D4CA50B91BCC} 453 | {F43A64FB-007E-4730-B13B-8D7C420B0514} = {CF942649-6102-4E94-8918-D362AE6A9A62} 454 | {8CF411EA-E1FE-486D-B361-7D67AF965C36} = {0085204F-D0FB-489B-874D-EE492513EEAE} 455 | {DF2390FA-F296-4D39-A1E7-721BD74EF879} = {8F32A07B-C968-4B28-A540-9E43E5504221} 456 | {0E424596-8104-4E2E-86DD-7C8C37CF5069} = {E7AEA776-F51F-4964-BE93-798EC240BFC9} 457 | {6576DC3E-7B3E-49DC-BA57-5D65F9D0B36C} = {357299DC-7753-4EAB-BBFD-D4CA50B91BCC} 458 | {7D8D64E2-874B-4058-9290-56BB7B559965} = {CF942649-6102-4E94-8918-D362AE6A9A62} 459 | {A749225A-1CE2-474C-814B-7C7A2BEE39A6} = {0085204F-D0FB-489B-874D-EE492513EEAE} 460 | {B231876B-7D77-4BDA-91E0-CEA49C1B4C4B} = {8F32A07B-C968-4B28-A540-9E43E5504221} 461 | {6FC868E7-13B9-4D57-8930-18E70C6D20AE} = {E7AEA776-F51F-4964-BE93-798EC240BFC9} 462 | {CC7CE055-6255-4BAE-AA48-C76F13C4173F} = {357299DC-7753-4EAB-BBFD-D4CA50B91BCC} 463 | {F6FA0316-D6BD-4B9D-8B96-E4085957791F} = {CF942649-6102-4E94-8918-D362AE6A9A62} 464 | {535CA565-4D68-4746-94F2-05CC99B4B4F9} = {0085204F-D0FB-489B-874D-EE492513EEAE} 465 | {CC1A0640-0B66-4BAE-A21F-DEF5ABA2EB0F} = {8F32A07B-C968-4B28-A540-9E43E5504221} 466 | {CD182508-EAF9-4DE3-BD8E-280C658ECD7E} = {E7AEA776-F51F-4964-BE93-798EC240BFC9} 467 | {07E5158B-45D6-4017-A4E3-D249D49986DF} = {357299DC-7753-4EAB-BBFD-D4CA50B91BCC} 468 | {998CF04B-AC9B-4E3B-AEFE-334D29BE777E} = {986C1212-FE51-4509-BD30-055C82410BBF} 469 | {E574BDA1-E294-4643-936D-6691A9E116FD} = {986C1212-FE51-4509-BD30-055C82410BBF} 470 | {476BB462-4E1F-4AE9-9692-CE65F9A0DED2} = {E574BDA1-E294-4643-936D-6691A9E116FD} 471 | {1F57BF46-24B8-4ED6-956C-D66D886B98D0} = {E574BDA1-E294-4643-936D-6691A9E116FD} 472 | {427CA8C4-01C7-49D1-B942-9FF82E13B408} = {E574BDA1-E294-4643-936D-6691A9E116FD} 473 | {C032E0CC-8853-42E3-8087-E4DB90C94BFF} = {E574BDA1-E294-4643-936D-6691A9E116FD} 474 | {DE7F5C42-B61D-487A-B9E6-95193B266430} = {E574BDA1-E294-4643-936D-6691A9E116FD} 475 | EndGlobalSection 476 | GlobalSection(ExtensibilityGlobals) = postSolution 477 | SolutionGuid = {7287AF59-7DAB-4489-BEAB-9BB5AE40ABFE} 478 | EndGlobalSection 479 | EndGlobal 480 | -------------------------------------------------------------------------------- /license.specialdlpTester: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | --------------------------------------------------------------------------------