huan-simple-html 1.2.0 → 1.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/.eslintignore +30 -30
  2. package/.npmignore +71 -70
  3. package/LICENSE +7 -7
  4. package/LICENSE_CN +7 -7
  5. package/README.md +31 -29
  6. package/README_EN.md +31 -29
  7. package/REEPORT +14 -14
  8. package/REPORT_EN +14 -14
  9. package/config.json +4 -4
  10. package/crlf2lf.sh +9 -0
  11. package/package.json +2 -2
  12. package/src/assets/image/logo.png +0 -0
  13. package/src/common.js +0 -4
  14. package/src/html/LICENSE_CN.html +47 -47
  15. package/src/html/LICENSE_US.html +45 -45
  16. package/src/html/error/4xx/400.html +11 -11
  17. package/src/html/error/4xx/403.html +12 -12
  18. package/src/html/error/4xx/404.html +18 -18
  19. package/src/html/error/4xx/404.signal.html +56 -56
  20. package/src/html/error/4xx/404.songzihuan.signal.html +57 -57
  21. package/src/html/error/4xx/405.html +12 -12
  22. package/src/html/error/4xx/4xx.html +12 -12
  23. package/src/html/error/5xx/500.html +12 -12
  24. package/src/html/error/5xx/500.signal.html +29 -29
  25. package/src/html/error/5xx/500.songzihuan.signal.html +30 -30
  26. package/src/html/error/5xx/501.html +12 -12
  27. package/src/html/error/5xx/502.html +11 -11
  28. package/src/html/error/5xx/503.html +12 -12
  29. package/src/html/error/5xx/504.html +11 -11
  30. package/src/html/error/5xx/505.html +12 -12
  31. package/src/html/error/5xx/506.html +11 -11
  32. package/src/html/error/5xx/507.html +12 -12
  33. package/src/html/error/5xx/508.html +12 -12
  34. package/src/html/error/5xx/509.html +12 -12
  35. package/src/html/error/5xx/510.html +11 -11
  36. package/src/html/error/5xx/511.html +14 -14
  37. package/src/html/error/5xx/5xx.html +12 -12
  38. package/src/html/index.html +124 -124
  39. package/src/html/index.new.html +15 -15
  40. package/src/html/index.new.signal.html +42 -42
  41. package/src/html/mitorg.html +5072 -5072
  42. package/src/style/error/404.css +30 -30
  43. package/src/style/error/4xx.css +16 -16
  44. package/src/style/error/5xx.css +15 -15
  45. package/src/style/index/index.css +34 -34
  46. package/src/style/index/license.css +3 -3
  47. package/src/style/index/mitorg.css +106 -106
  48. package/src/style/index/new.css +21 -21
  49. package/src/assets/image/logo_big.png +0 -0
  50. package/src/assets/image/songzihuan.jpg +0 -0
@@ -1,46 +1,46 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>美国麻省理工学院授权协议(MIT LICENSE)</title>
7
- <link rel="stylesheet" href="../style/index/license.css">
8
- </head>
9
- <body>
10
- <pre id="license-content"></pre>
11
-
12
- <hr>
13
-
14
- <pre><a href="./LICENSE_CN.html" target="_blank">前往浏览中文译文</a></pre>
15
- <pre><a href="https://mit-license.org/" target="_blank">访问 MIT LICENSE 官网</a></pre>
16
- <pre><a href="https://mit-license-org.song-zh.com/" target="_blank">访问 MIT LICENSE 官网(CDN)</a></pre>
17
- <pre><a href="./mitorg.html" target="_blank">访问 MIT LICENSE 官网(备份)</a></pre>
18
- <pre><a href="/LICENSE" target="_blank">下载 LICENSE 文件</a></pre>
19
-
20
- <script>
21
- const LICENSE_BAK = `The MIT License (MIT)
22
- Copyright (c) 2025 宋子桓(Song Zihuan)
23
-
24
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
25
-
26
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
27
-
28
- THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.`
29
-
30
- fetch('/LICENSE')
31
- .then(response => {
32
- if (!response.ok) {
33
- throw new Error('Network response was not ok');
34
- }
35
- return response.text();
36
- })
37
- .then(licenseText => {
38
- document.getElementById('license-content').innerText = licenseText;
39
- })
40
- .catch(error => {
41
- document.getElementById('license-content').innerText = LICENSE_BAK;
42
- console.error('There has been a problem with your fetch operation:', error);
43
- });
44
- </script>
45
- </body>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>美国麻省理工学院授权协议(MIT LICENSE)</title>
7
+ <link rel="stylesheet" href="../style/index/license.css">
8
+ </head>
9
+ <body>
10
+ <pre id="license-content"></pre>
11
+
12
+ <hr>
13
+
14
+ <pre><a href="./LICENSE_CN.html" target="_blank">前往浏览中文译文</a></pre>
15
+ <pre><a href="https://mit-license.org/" target="_blank">访问 MIT LICENSE 官网</a></pre>
16
+ <pre><a href="https://mit-license-org.song-zh.com/" target="_blank">访问 MIT LICENSE 官网(CDN)</a></pre>
17
+ <pre><a href="./mitorg.html" target="_blank">访问 MIT LICENSE 官网(备份)</a></pre>
18
+ <pre><a href="/LICENSE" target="_blank">下载 LICENSE 文件</a></pre>
19
+
20
+ <script>
21
+ const LICENSE_BAK = `The MIT License (MIT)
22
+ Copyright (c) 2025 宋子桓(Song Zihuan)
23
+
24
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
25
+
26
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
27
+
28
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.`
29
+
30
+ fetch('/LICENSE')
31
+ .then(response => {
32
+ if (!response.ok) {
33
+ throw new Error('Network response was not ok');
34
+ }
35
+ return response.text();
36
+ })
37
+ .then(licenseText => {
38
+ document.getElementById('license-content').innerText = licenseText;
39
+ })
40
+ .catch(error => {
41
+ document.getElementById('license-content').innerText = LICENSE_BAK;
42
+ console.error('There has been a problem with your fetch operation:', error);
43
+ });
44
+ </script>
45
+ </body>
46
46
  </html>
@@ -1,12 +1,12 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Error 400</title>
7
- </head>
8
- <body>
9
- <h1>Error 400 - Bad Request</h1>
10
- <p>The request sent to the server was invalid or cannot be otherwise served.</p>
11
- </body>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Error 400</title>
7
+ </head>
8
+ <body>
9
+ <h1>Error 400 - Bad Request</h1>
10
+ <p>The request sent to the server was invalid or cannot be otherwise served.</p>
11
+ </body>
12
12
  </html>
@@ -1,13 +1,13 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>403 Forbidden</title>
7
- </head>
8
- <body>
9
- <h1>403</h1>
10
- <p>Forbidden</p>
11
- <p>The requested resource is forbidden.</p>
12
- </body>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>403 Forbidden</title>
7
+ </head>
8
+ <body>
9
+ <h1>403</h1>
10
+ <p>Forbidden</p>
11
+ <p>The requested resource is forbidden.</p>
12
+ </body>
13
13
  </html>
@@ -1,19 +1,19 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>404 Error - Page Not Found</title>
7
- </head>
8
- <body>
9
- <h1>404</h1>
10
- <h2>Oops! The page you're looking for isn't here.</h2>
11
- <p>We can't seem to find the page you were trying to reach. This might be because of:</p>
12
- <ul>
13
- <li>An outdated link</li>
14
- <li>A mistyped address</li>
15
- <li>Or the page has been moved</li>
16
- </ul>
17
- <p>Try going back to the <a href="/">homepage</a> or contact us if the problem persists.</p>
18
- </body>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>404 Error - Page Not Found</title>
7
+ </head>
8
+ <body>
9
+ <h1>404</h1>
10
+ <h2>Oops! The page you're looking for isn't here.</h2>
11
+ <p>We can't seem to find the page you were trying to reach. This might be because of:</p>
12
+ <ul>
13
+ <li>An outdated link</li>
14
+ <li>A mistyped address</li>
15
+ <li>Or the page has been moved</li>
16
+ </ul>
17
+ <p>Try going back to the <a href="/">homepage</a> or contact us if the problem persists.</p>
18
+ </body>
19
19
  </html>
@@ -1,57 +1,57 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <!--
5
- 此HTML文件已被压缩为单一文件,无需额外加载样式表或脚本。
6
- 所有必要的样式已内联编写,确保页面在无外部资源的情况下正常显示。
7
- 这样的设计有利于简化部署和提高加载速度,特别适合静态页面展示。
8
- -->
9
- <meta charset="UTF-8">
10
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
11
- <title>404 Error - Page Not Found</title>
12
- <style>
13
- body {
14
- font-family: Arial, sans-serif;
15
- text-align: center;
16
- padding-top: 50px;
17
- background-color: #f8f8f8;
18
- }
19
-
20
- h1 {
21
- font-size: 7em;
22
- margin-bottom: 0.5em;
23
- color: #cc0000;
24
- }
25
-
26
- h2 {
27
- font-size: 2em;
28
- color: #666;
29
- }
30
-
31
- p {
32
- font-size: 1.2em;
33
- color: #333;
34
- }
35
-
36
- a {
37
- color: #007bff;
38
- text-decoration: none;
39
- }
40
-
41
- a:hover {
42
- text-decoration: underline;
43
- }
44
- </style>
45
- </head>
46
- <body>
47
- <h1>404</h1>
48
- <h2>Oops! The page you're looking for isn't here.</h2>
49
- <p>We can't seem to find the page you were trying to reach. This might be because of:</p>
50
- <ul>
51
- <li>An outdated link</li>
52
- <li>A mistyped address</li>
53
- <li>Or the page has been moved</li>
54
- </ul>
55
- <p>Try going back to the <a href="/">homepage</a> or contact us if the problem persists.</p>
56
- </body>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <!--
5
+ 此HTML文件已被压缩为单一文件,无需额外加载样式表或脚本。
6
+ 所有必要的样式已内联编写,确保页面在无外部资源的情况下正常显示。
7
+ 这样的设计有利于简化部署和提高加载速度,特别适合静态页面展示。
8
+ -->
9
+ <meta charset="UTF-8">
10
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
11
+ <title>404 Error - Page Not Found</title>
12
+ <style>
13
+ body {
14
+ font-family: Arial, sans-serif;
15
+ text-align: center;
16
+ padding-top: 50px;
17
+ background-color: #f8f8f8;
18
+ }
19
+
20
+ h1 {
21
+ font-size: 7em;
22
+ margin-bottom: 0.5em;
23
+ color: #cc0000;
24
+ }
25
+
26
+ h2 {
27
+ font-size: 2em;
28
+ color: #666;
29
+ }
30
+
31
+ p {
32
+ font-size: 1.2em;
33
+ color: #333;
34
+ }
35
+
36
+ a {
37
+ color: #007bff;
38
+ text-decoration: none;
39
+ }
40
+
41
+ a:hover {
42
+ text-decoration: underline;
43
+ }
44
+ </style>
45
+ </head>
46
+ <body>
47
+ <h1>404</h1>
48
+ <h2>Oops! The page you're looking for isn't here.</h2>
49
+ <p>We can't seem to find the page you were trying to reach. This might be because of:</p>
50
+ <ul>
51
+ <li>An outdated link</li>
52
+ <li>A mistyped address</li>
53
+ <li>Or the page has been moved</li>
54
+ </ul>
55
+ <p>Try going back to the <a href="/">homepage</a> or contact us if the problem persists.</p>
56
+ </body>
57
57
  </html>
@@ -1,58 +1,58 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <!--
5
- 此HTML文件已被压缩为单一文件,无需额外加载样式表或脚本。
6
- 所有必要的样式已内联编写,确保页面在无外部资源的情况下正常显示。
7
- 这样的设计有利于简化部署和提高加载速度,特别适合静态页面展示。
8
- -->
9
- <meta charset="UTF-8">
10
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
11
- <title>404 Error - Page Not Found</title>
12
- <link rel="icon" type="image/png" href="data:image/png;base64,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">
13
- <style>
14
- body {
15
- font-family: Arial, sans-serif;
16
- text-align: center;
17
- padding-top: 50px;
18
- background-color: #f8f8f8;
19
- }
20
-
21
- h1 {
22
- font-size: 7em;
23
- margin-bottom: 0.5em;
24
- color: #cc0000;
25
- }
26
-
27
- h2 {
28
- font-size: 2em;
29
- color: #666;
30
- }
31
-
32
- p {
33
- font-size: 1.2em;
34
- color: #333;
35
- }
36
-
37
- a {
38
- color: #007bff;
39
- text-decoration: none;
40
- }
41
-
42
- a:hover {
43
- text-decoration: underline;
44
- }
45
- </style>
46
- </head>
47
- <body>
48
- <h1>404</h1>
49
- <h2>Oops! The page you're looking for isn't here.</h2>
50
- <p>We can't seem to find the page you were trying to reach. This might be because of:</p>
51
- <ul>
52
- <li>An outdated link</li>
53
- <li>A mistyped address</li>
54
- <li>Or the page has been moved</li>
55
- </ul>
56
- <p>Try going back to the <a href="https://song-zh.com"> Song Zihuan Website </a> or <a href="mailto://songzihuan@song-zh.com"> contact us </a> if the problem persists.</p>
57
- </body>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <!--
5
+ 此HTML文件已被压缩为单一文件,无需额外加载样式表或脚本。
6
+ 所有必要的样式已内联编写,确保页面在无外部资源的情况下正常显示。
7
+ 这样的设计有利于简化部署和提高加载速度,特别适合静态页面展示。
8
+ -->
9
+ <meta charset="UTF-8">
10
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
11
+ <title>404 Error - Page Not Found</title>
12
+ <link rel="icon" type="image/png" href="data:image/png;base64,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">
13
+ <style>
14
+ body {
15
+ font-family: Arial, sans-serif;
16
+ text-align: center;
17
+ padding-top: 50px;
18
+ background-color: #f8f8f8;
19
+ }
20
+
21
+ h1 {
22
+ font-size: 7em;
23
+ margin-bottom: 0.5em;
24
+ color: #cc0000;
25
+ }
26
+
27
+ h2 {
28
+ font-size: 2em;
29
+ color: #666;
30
+ }
31
+
32
+ p {
33
+ font-size: 1.2em;
34
+ color: #333;
35
+ }
36
+
37
+ a {
38
+ color: #007bff;
39
+ text-decoration: none;
40
+ }
41
+
42
+ a:hover {
43
+ text-decoration: underline;
44
+ }
45
+ </style>
46
+ </head>
47
+ <body>
48
+ <h1>404</h1>
49
+ <h2>Oops! The page you're looking for isn't here.</h2>
50
+ <p>We can't seem to find the page you were trying to reach. This might be because of:</p>
51
+ <ul>
52
+ <li>An outdated link</li>
53
+ <li>A mistyped address</li>
54
+ <li>Or the page has been moved</li>
55
+ </ul>
56
+ <p>Try going back to the <a href="https://song-zh.com"> Song Zihuan Website </a> or <a href="mailto://songzihuan@song-zh.com"> contact us </a> if the problem persists.</p>
57
+ </body>
58
58
  </html>
@@ -1,13 +1,13 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>405 Method Not Allowed</title>
7
- </head>
8
- <body>
9
- <h1>405 Method Not Allowed</h1>
10
- <p>The method specified in the Request-Line is not allowed for the resource identified by the Request-URI.</p>
11
- <p>Please refer to our <a href="/">homepage</a> or contact support if you need assistance.</p>
12
- </body>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>405 Method Not Allowed</title>
7
+ </head>
8
+ <body>
9
+ <h1>405 Method Not Allowed</h1>
10
+ <p>The method specified in the Request-Line is not allowed for the resource identified by the Request-URI.</p>
11
+ <p>Please refer to our <a href="/">homepage</a> or contact support if you need assistance.</p>
12
+ </body>
13
13
  </html>
@@ -1,13 +1,13 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Client Error Page</title>
7
- </head>
8
- <body>
9
- <h1>Client Error</h1>
10
- <p>Sorry, but the page you are looking for cannot be accessed.</p>
11
- <p>If you believe this is an error, please check the URL or contact support.</p>
12
- </body>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Client Error Page</title>
7
+ </head>
8
+ <body>
9
+ <h1>Client Error</h1>
10
+ <p>Sorry, but the page you are looking for cannot be accessed.</p>
11
+ <p>If you believe this is an error, please check the URL or contact support.</p>
12
+ </body>
13
13
  </html>
@@ -1,13 +1,13 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>500 Internal Server Error</title>
7
- </head>
8
- <body>
9
- <h1>500</h1>
10
- <p>Oops! Something went wrong on our end.</p>
11
- <p>We're working on getting it fixed. Please try again later.</p>
12
- </body>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>500 Internal Server Error</title>
7
+ </head>
8
+ <body>
9
+ <h1>500</h1>
10
+ <p>Oops! Something went wrong on our end.</p>
11
+ <p>We're working on getting it fixed. Please try again later.</p>
12
+ </body>
13
13
  </html>
@@ -1,30 +1,30 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>500 Internal Server Error</title>
7
- <style>
8
- body {
9
- font-family: Arial, sans-serif;
10
- text-align: center;
11
- margin-top: 50px;
12
- }
13
-
14
- h1 {
15
- font-size: 3em;
16
- color: #990000;
17
- }
18
-
19
- p {
20
- font-size: 1.5em;
21
- color: #666;
22
- }
23
- </style>
24
- </head>
25
- <body>
26
- <h1>500</h1>
27
- <p>Oops! Something went wrong on our end.</p>
28
- <p>We're working on getting it fixed. Please try again later.</p>
29
- </body>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>500 Internal Server Error</title>
7
+ <style>
8
+ body {
9
+ font-family: Arial, sans-serif;
10
+ text-align: center;
11
+ margin-top: 50px;
12
+ }
13
+
14
+ h1 {
15
+ font-size: 3em;
16
+ color: #990000;
17
+ }
18
+
19
+ p {
20
+ font-size: 1.5em;
21
+ color: #666;
22
+ }
23
+ </style>
24
+ </head>
25
+ <body>
26
+ <h1>500</h1>
27
+ <p>Oops! Something went wrong on our end.</p>
28
+ <p>We're working on getting it fixed. Please try again later.</p>
29
+ </body>
30
30
  </html>
@@ -1,31 +1,31 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>500 Internal Server Error</title>
7
- <link rel="icon" type="image/png" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAMAAABHPGVmAAAAh1BMVEVHcExbV15jX2dZVVxdWWEdHCRkX2dkYGgdGyRjX2ZraG9iXWUaGSHk4OzVytPbtK3RqqPLnZO5j4epf3iKf4aXc26DZWNva3JrZ25oZGtnY2plYWhlYGdjX2ZiXmZvV1dgXGRcV19RS1FBO0ExLTUiICkeHSYbGiMZGCAXFh0VFBoSERcODRK5+qUoAAAADXRSTlMAES9Aa5OYvMvS4uruZOCaWwAACaVJREFUeNqtmn1zG7cRxp9ngSNFxbEbq4riJH+n3//rdNrOpE3SJo4tWZYlkTzs0+gIAsfDkaNJsjO29gDc/rAveKHEgOcJLViMi+U3f/lNXvYxBBqeK3zOGJoFuwRFlTYBbz25S38ChBaeALNCPYGS649BzEIcCDxu6G2f3H8/xGJ32Vif5Wx7/32QELqRE6dh/OUUhqe8QBY3VHEAdsKb50MYuiuMGA7bkQgDJM3UAH7eJuH5EOveZK1QDPBAYzB3usvd0Mh/tz5rDjMSVyOGO+DDjxiXy2VI7OIihhi8RA977c0qPhPCxdeXzRADwmJh8GQGCLaI0UtvGXf57YJohKdDVfPuMSwBJTG/xW2v0t+E7DQkLK6m9gGHMZwNako0kIDw6BUwkp83CafDFc6uZrrN3EIe0IE2cGn7nPjBnK/OQgOZMMbpcHfPJgIJpIf7+4cNHS5IMMJhB0YEAJdTijWMSa873L0nhe39zc3N9YdN8gGsyMENbxJwMaHwBMNhJRKxA7YfHAL5eRdhvRnWGx6JyNvHdMQTW0wYcK968DtBkvvHrWPAITMaf/xyYfMQdlcTRhWTqCQJgPzOgUAcio84hquOs5D9+hiSMI20dpECABocJCHo0JB7xb3p5nISv7bqRCPquscHKLlohL1cENz06dQe8kPfQGx1me3Pi5a3ySEKBMFXNPbFyizn7YNPuOwu4fCjDNAli8NwC9TNja8/Oqq06bzsOIGEN2UTmZeUHEoCCe8dQn+XMkSaR12FQ4h188moFkKCfDArd0/Agxj2A9RU2s6oHUDiFXyWUC1oxxOZn2DcIeb88cGVmK1nR1qCCBUNedqDRg0KO1TCbF686we7u7B1X04AIKbCJIGGHZsBYdEMmz6/+JTqsdc1aRAaMRBA8W+5bIY1z95Z8aT7Ss241i3rRWSdFuJ4PI84c36fMsSWK8wID5mkC7SAAJBxydp1ArNOAjhsKPN+6NAOtxuBgCAynicdyQehEeanfvCE3YtZRJsUaddOhnP6Md85JuLeAQMsohUJrSyiQbuYPYTuyLKCNJ7ipQ3ExVfN5IWRxvIYwqckwcyBV9ZvWcLapKPq/9sgggETOVZq6iCQ5knQ7ZfAFmCzrDKytJIibHUxtihqlgDF2G1v8o4Cj2/4mDbg3OLlWHn34ET8ehKeecTCbMGfew4Iul68prZJfX8YK6pSsvZTH2HHGFURlsEWgLvb0O7iZwK6zi1qM5uTKgZjmLWsChCW591qCcC9tC/ioNrZqludwQWQqu+NDQUa7XjZCnLxbLVYLaHMJACBL21fqt2yWz1NQUcqRsZoXzTt44YzWhx8VU2xCxaHJgkEY8TWfCtKNWDioAuABXuJRgpSq27ZsewW/b0ASsBnnwEgtR8ZIoMlTrYXDn2rO7O6WIuUpxg6aAwFFwsCfGKAKqOFsAxQHVmPUsCMAo+tRnUREEb/+NeLVxcRMWoSeJdsoSllJ8EsH0StH5JIlZIhoMEaxFdWHKkSqeILDyhmkKQ5BGAsTiu78hF6lyx6boNLnt8gOa1h7RlTL0bPC5ZkFDhSQowou1Y9dWiGOl6oYl9kbM1hnYlZCdwowuQr5eC5dp5SgGRRBTwOy+tINBtofaxTywi+FBGDOFl8BKBg+b2pMYNQZewGYJPTQcTCADsPkx2C5donVU7NixVGCaRqSqqesa8g2VKTHYL5gXbQyr1i101ZlQhZkMBx0S8NgFF5syyMnersMMgkxu9sgqgikIdFwt1CfxkwOaPqqtMoSgJzr/mx1Y5GZGEwNVm9JLLp0JgSALp560iWQEwyzwCANoHU0gNHj8UhuenoebgMmoaPADkwmisqmyNPkAgBMj9k1LdphEhWaiaMIMxtTUFp7Ivb0FXYB8cVWEIgoUJIr5sDWRemQMxRzK8BCQ2DDKwNklTCbirlniEsnghZqskbNzmEuTwa80xrYABj2HcUJohxMhpLLlOaL94loYogSBo3azlNmlRdsc84c9VNMvj8orDgQAwEmSOfHn59f/3hJsGbGq6XzJmgOAx+DbWOgAKNg2YkSH+87hEBegkvx84oa1P8jcOgHjOM80ALoeTT6I93oPXbzXpgiPXKz3oAAQ2lFyIkNR2ideAonUyPd4L3oA1ksfqgUU01p5MgIQJJnFYWV5GH15T+ToLDuhVScEHgGFb1pjUBEfD3FxMGRBMcReS3EkBps8Gr8zrvYi1TSeFQ3jtgO1ZlFPHxsZ+S9rtOiK7JR0SyJMeml5WkXaPfYCIkswfuA0SqMzeRqKKxZh2a2sqQHhNRjivzf7o7sCi1ix2SdmMP7PR7CPoP00n5tm67Ej1HlMbutYEA6xuEuNNUevKjPvTYQ3w7TchDyrs8B0HoukgQwnloPodse3Do1HQb5NZ3kOIKVQ8VfVr3KBTo89cXF69/k4uLVV5XlaEkkgZQgsRRz20/6BHVlYNN4n6VujLpzhJC0IAXZjJoQJ+9aBwpZ7/SWR4h5uLZbuH7S6GRVL5a6/AQJNmr258qaa2KwIeNUMMF35SXa9ge7j49rmVkPt9JsmHkNLhbDCHAocLAxjGGoH/PkhFiL+nT3eMjadmSgshqu85qk0Cl5OJ4y3ufcAjBNpcxcRB23ecqdUEUhamQtDgMkAQrdN1u92oESsCaza3uL5Syqma/VZBJkgjI9x3UxlE9KQHLnc1My+5SrQujx7iEcre20D5YPVoIttcAhIYhju4eM2cHQVKFnpuvt5iD6CktRENxL431Fr3PRtl1pYNPgx+2QpGIKr6+fdkwzsA2D3lVKDvQQzu4K+f0duNoPCmUBvJYxxRUnnqdvnJPegAGxjrhGARpfasJJJJStc6ZO4ksR8/kLWPmI4Wn5SRcS3hWWe7brBmn5U2UMPVbAMyMNifVFx3mhfKi5iVTr/MDFvJM7DdDzmf+LNtQbiaQohmJEcAsN+SA5iP2JvtxCgLfXBdgc/Dz4GZNZrpRgFwArnNdnYZAm3cfa8JYGTX5Km6UTgH9Iz6+2wjPgTyNvsFUCEr1diWy/hrF3UGmdbp57DEjEXPi63eLzxuKRglSMgrK0yRg5K/P/CJGFXbxCbM8M+0PRwFpYKHQiJDLj/9eJ8e8BByTlDb9EvVXkAaJml7/EIZm/ueX8m2Gkzlpy+zx+iNZPJbcy6KXBAJZ/eEfD9v0B76wFOM3eZG4i1Sb1O/7lPy0FZwU79cP//r+x1yjUJ1XdvHHf/79Yb31P+FLZEaG+C0kWT2eqR/7JLnwZ8kTpevOzl68+O67v3334sXZWdfFwGe+/X+xKeEjpwTB1wAAAABJRU5ErkJggg==">
8
- <style>
9
- body {
10
- font-family: Arial, sans-serif;
11
- text-align: center;
12
- margin-top: 50px;
13
- }
14
-
15
- h1 {
16
- font-size: 3em;
17
- color: #990000;
18
- }
19
-
20
- p {
21
- font-size: 1.5em;
22
- color: #666;
23
- }
24
- </style>
25
- </head>
26
- <body>
27
- <h1>500</h1>
28
- <p>Oops! Something went wrong on our end.</p>
29
- <p>We're working on getting it fixed. Please try again later.</p>
30
- </body>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>500 Internal Server Error</title>
7
+ <link rel="icon" type="image/png" href="data:image/png;base64,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">
8
+ <style>
9
+ body {
10
+ font-family: Arial, sans-serif;
11
+ text-align: center;
12
+ margin-top: 50px;
13
+ }
14
+
15
+ h1 {
16
+ font-size: 3em;
17
+ color: #990000;
18
+ }
19
+
20
+ p {
21
+ font-size: 1.5em;
22
+ color: #666;
23
+ }
24
+ </style>
25
+ </head>
26
+ <body>
27
+ <h1>500</h1>
28
+ <p>Oops! Something went wrong on our end.</p>
29
+ <p>We're working on getting it fixed. Please try again later.</p>
30
+ </body>
31
31
  </html>