cloudflare
tcp/443 tcp/80 tcp/8443
Open service 2a06:98c1:3120::3:8443 · spichard.digital
2026-01-26 16:03
HTTP/1.1 521 <none> Date: Mon, 26 Jan 2026 16:03:36 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c413dc93d0a916a-FRA alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2a06:98c1:3120::3:443 · spichard.digital
2026-01-26 16:03
HTTP/1.1 200 OK
Date: Mon, 26 Jan 2026 16:03:38 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Vary: Accept-Encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Bo47wSdU806vsAHFC%2FGGtRDZVlrpDbn8guKBYweMGB1gtoPIrDKp%2Bm4CI0kkDg%2FaU011mVV5H95I0DMOtNJibcFFhBT7CmA7V%2FMOOWwBtWli8FqA1ZVXHvcGBUw%3D"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9c413dd3efa3dc96-FRA
alt-svc: h3=":443"; ma=86400
Page title: Application placeholder
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8" />
<title>Application placeholder</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="robots" content="noindex,nofollow">
<style>
:root {
--bg1: #f9fafb;
--bg2: #fefce8;
--bg3: #e0f2fe;
--accent-green: #22c55e;
--accent-yellow: #eab308;
--accent-orange: #f97316;
--card-bg: rgba(255, 255, 255, 0.9);
--card-border: rgba(15, 23, 42, 0.06);
--card-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
--text-main: #0f172a;
--text-muted: #6b7280;
--chip-bg: rgba(255, 255, 255, 0.9);
--chip-border: rgba(15, 23, 42, 0.08);
--footer-chip-bg: rgba(255, 255, 255, 0.8);
}
:root[data-theme="dark"] {
--bg1: #020617;
--bg2: #020617;
--bg3: #020617;
--card-bg: rgba(15, 23, 42, 0.96);
--card-border: rgba(148, 163, 184, 0.28);
--card-shadow: 0 26px 70px rgba(0, 0, 0, 0.9);
--text-main: #f9fafb;
--text-muted: #9ca3af;
--chip-bg: rgba(15, 23, 42, 0.96);
--chip-border: rgba(148, 163, 184, 0.5);
--footer-chip-bg: rgba(15, 23, 42, 0.96);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: var(--text-main);
overflow: hidden;
position: relative;
background: linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 45%, var(--bg3) 100%);
}
.spot {
position: absolute;
border-radius: 50%;
filter: blur(120px);
opacity: 0.35;
animation: float 18s ease-in-out infinite alternate;
pointer-events: none;
}
.spot.green {
width: 420px; height: 420px;
background: var(--accent-green);
top: 5%; left: 10%;
animation-delay: 0s;
}
.spot.yellow {
width: 380px; height: 380px;
background: var(--accent-yellow);
bottom: 10%; right: 10%;
animation-delay: 2s;
}
.spot.orange {
width: 320px; height: 320px;
background: var(--accent-orange);
top: 60%; left: 50%;
animation-delay: 4s;
}
@keyframes float {
0% { transform: translateY(0) scale(1); }
50% { transform: translateY(-30px) scale(1.03); opacity: 0.45; }
100% { transform: translateY(20px) scale(1.08); opacity: 0.3; }
}
.theme-toggle {
position: fixed;
top: 20px;
right: 24px;
z-index: 10;
display: inline-flex;
align-items: center;
gap: 8px;
padding: 6px 8px;
border-radius: 999px;
border: 1px solid rgba(148, 163, 184, 0.4);
background: rgba(255, 255, 255, 0.8);
cursor: pointer;
user-select: none;
transition: background 0.3s ease, border-color 0.3s ease;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
:root[data-theme="dark"] .theme-toggle {
background: rgba(15, 23, 42, 0.9);
border-color: rgba(148, 163, 184, 0.4);
box-shadow: 0 0 18px rgba(255, 255, 255, 0.04);
}
.theme-icon {
width: 18px;
height: 18px;
display: inline-flex;
align-items: center;
justify-content: center;
color: var(--text-main);
opacity: 0.5;
transition: opacity 0.2s ease;
}
:root[data-theme="light"] .theme-icon.sun,
:root[data-theme="dark"] .theme-icon.moon {
opacity: 1;
}
.theme-icon svg {
width: 100%;
height: 100%;
stroke: currentColor;
fill: none;
stroke-width: 1.6;
}
.card {
position: relative;
z-index: 1;
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
background: var(--card-bg);
border-radius: 16px;
box-shadow: var(--card-shadow);
padding: 48px 38px 36px;
max-width: 480px;
width: 100%;
Open service 2a06:98c1:3121::3:8443 · spichard.digital
2026-01-26 16:03
HTTP/1.1 521 <none> Date: Mon, 26 Jan 2026 16:03:20 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=366,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c413d64fda7c617-BOM alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2a06:98c1:3121::3:443 · spichard.digital
2026-01-26 16:03
HTTP/1.1 200 OK
Date: Mon, 26 Jan 2026 16:03:18 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Vary: Accept-Encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=VQv5gFZaZ4b1t542%2Bcps2%2BBXxsbTD2f2sAGsDW7JUv2Cgf5EI1XeCLQmcgGPSc2Bi9TZVRgc6AUzI0Ef41945XUn777lmNB8uB%2B7syiGWUybj9vofrxtQtlw7DE%3D"}]}
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=5,cfOrigin;dur=255
CF-RAY: 9c413d546a5f26cb-BOM
alt-svc: h3=":443"; ma=86400
Page title: Application placeholder
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8" />
<title>Application placeholder</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="robots" content="noindex,nofollow">
<style>
:root {
--bg1: #f9fafb;
--bg2: #fefce8;
--bg3: #e0f2fe;
--accent-green: #22c55e;
--accent-yellow: #eab308;
--accent-orange: #f97316;
--card-bg: rgba(255, 255, 255, 0.9);
--card-border: rgba(15, 23, 42, 0.06);
--card-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
--text-main: #0f172a;
--text-muted: #6b7280;
--chip-bg: rgba(255, 255, 255, 0.9);
--chip-border: rgba(15, 23, 42, 0.08);
--footer-chip-bg: rgba(255, 255, 255, 0.8);
}
:root[data-theme="dark"] {
--bg1: #020617;
--bg2: #020617;
--bg3: #020617;
--card-bg: rgba(15, 23, 42, 0.96);
--card-border: rgba(148, 163, 184, 0.28);
--card-shadow: 0 26px 70px rgba(0, 0, 0, 0.9);
--text-main: #f9fafb;
--text-muted: #9ca3af;
--chip-bg: rgba(15, 23, 42, 0.96);
--chip-border: rgba(148, 163, 184, 0.5);
--footer-chip-bg: rgba(15, 23, 42, 0.96);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: var(--text-main);
overflow: hidden;
position: relative;
background: linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 45%, var(--bg3) 100%);
}
.spot {
position: absolute;
border-radius: 50%;
filter: blur(120px);
opacity: 0.35;
animation: float 18s ease-in-out infinite alternate;
pointer-events: none;
}
.spot.green {
width: 420px; height: 420px;
background: var(--accent-green);
top: 5%; left: 10%;
animation-delay: 0s;
}
.spot.yellow {
width: 380px; height: 380px;
background: var(--accent-yellow);
bottom: 10%; right: 10%;
animation-delay: 2s;
}
.spot.orange {
width: 320px; height: 320px;
background: var(--accent-orange);
top: 60%; left: 50%;
animation-delay: 4s;
}
@keyframes float {
0% { transform: translateY(0) scale(1); }
50% { transform: translateY(-30px) scale(1.03); opacity: 0.45; }
100% { transform: translateY(20px) scale(1.08); opacity: 0.3; }
}
.theme-toggle {
position: fixed;
top: 20px;
right: 24px;
z-index: 10;
display: inline-flex;
align-items: center;
gap: 8px;
padding: 6px 8px;
border-radius: 999px;
border: 1px solid rgba(148, 163, 184, 0.4);
background: rgba(255, 255, 255, 0.8);
cursor: pointer;
user-select: none;
transition: background 0.3s ease, border-color 0.3s ease;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
:root[data-theme="dark"] .theme-toggle {
background: rgba(15, 23, 42, 0.9);
border-color: rgba(148, 163, 184, 0.4);
box-shadow: 0 0 18px rgba(255, 255, 255, 0.04);
}
.theme-icon {
width: 18px;
height: 18px;
display: inline-flex;
align-items: center;
justify-content: center;
color: var(--text-main);
opacity: 0.5;
transition: opacity 0.2s ease;
}
:root[data-theme="light"] .theme-icon.sun,
:root[data-theme="dark"] .theme-icon.moon {
opacity: 1;
}
.theme-icon svg {
width: 100%;
height: 100%;
stroke: currentColor;
fill: none;
stroke-width: 1.6;
}
.card {
position: relative;
z-index: 1;
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
background: var(--card-bg);
border-radius: 16px;
box-shadow: var(--card-shadow);
padding: 48px 38px 36px;
max-width: 480px;
width: 100%;
Open service 2a06:98c1:3121::3:80 · spichard.digital
2026-01-26 16:03
HTTP/1.1 301 Moved Permanently
Date: Mon, 26 Jan 2026 16:03:17 GMT
Content-Length: 0
Connection: close
Location: https://spichard.digital/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=oorabJUw4Ng4N%2F39miOlrxeq9JAd1oB6rDYksM95gnYV6%2FnjOQdbcc%2B4Yfgcu2mv1EtbRXPIKul%2BKQGQC%2F1tL8hnBBMu7claHzg4kYxqbRMMZ5B1y2FyvBdrqUI%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=13,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9c413d525b67d8bc-BOM
alt-svc: h3=":443"; ma=86400
Open service 188.114.97.3:443 · spichard.digital
2026-01-26 16:03
HTTP/1.1 200 OK
Date: Mon, 26 Jan 2026 16:03:19 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Vary: Accept-Encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=wOjG2frT6uT1ffpNg7qFtlKSiAVRGAZcFyN%2BRBv8wTKi8%2FEuWWXNLo05TGelYctuNbNNvkF3KGMGHoKhEwDl3yzjwT9T7M%2BZbzvma%2Bi2MKw%3D"}]}
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=6,cfOrigin;dur=143
CF-RAY: 9c413d607ec93b6d-BOM
alt-svc: h3=":443"; ma=86400
Page title: Application placeholder
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8" />
<title>Application placeholder</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="robots" content="noindex,nofollow">
<style>
:root {
--bg1: #f9fafb;
--bg2: #fefce8;
--bg3: #e0f2fe;
--accent-green: #22c55e;
--accent-yellow: #eab308;
--accent-orange: #f97316;
--card-bg: rgba(255, 255, 255, 0.9);
--card-border: rgba(15, 23, 42, 0.06);
--card-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
--text-main: #0f172a;
--text-muted: #6b7280;
--chip-bg: rgba(255, 255, 255, 0.9);
--chip-border: rgba(15, 23, 42, 0.08);
--footer-chip-bg: rgba(255, 255, 255, 0.8);
}
:root[data-theme="dark"] {
--bg1: #020617;
--bg2: #020617;
--bg3: #020617;
--card-bg: rgba(15, 23, 42, 0.96);
--card-border: rgba(148, 163, 184, 0.28);
--card-shadow: 0 26px 70px rgba(0, 0, 0, 0.9);
--text-main: #f9fafb;
--text-muted: #9ca3af;
--chip-bg: rgba(15, 23, 42, 0.96);
--chip-border: rgba(148, 163, 184, 0.5);
--footer-chip-bg: rgba(15, 23, 42, 0.96);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: var(--text-main);
overflow: hidden;
position: relative;
background: linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 45%, var(--bg3) 100%);
}
.spot {
position: absolute;
border-radius: 50%;
filter: blur(120px);
opacity: 0.35;
animation: float 18s ease-in-out infinite alternate;
pointer-events: none;
}
.spot.green {
width: 420px; height: 420px;
background: var(--accent-green);
top: 5%; left: 10%;
animation-delay: 0s;
}
.spot.yellow {
width: 380px; height: 380px;
background: var(--accent-yellow);
bottom: 10%; right: 10%;
animation-delay: 2s;
}
.spot.orange {
width: 320px; height: 320px;
background: var(--accent-orange);
top: 60%; left: 50%;
animation-delay: 4s;
}
@keyframes float {
0% { transform: translateY(0) scale(1); }
50% { transform: translateY(-30px) scale(1.03); opacity: 0.45; }
100% { transform: translateY(20px) scale(1.08); opacity: 0.3; }
}
.theme-toggle {
position: fixed;
top: 20px;
right: 24px;
z-index: 10;
display: inline-flex;
align-items: center;
gap: 8px;
padding: 6px 8px;
border-radius: 999px;
border: 1px solid rgba(148, 163, 184, 0.4);
background: rgba(255, 255, 255, 0.8);
cursor: pointer;
user-select: none;
transition: background 0.3s ease, border-color 0.3s ease;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
:root[data-theme="dark"] .theme-toggle {
background: rgba(15, 23, 42, 0.9);
border-color: rgba(148, 163, 184, 0.4);
box-shadow: 0 0 18px rgba(255, 255, 255, 0.04);
}
.theme-icon {
width: 18px;
height: 18px;
display: inline-flex;
align-items: center;
justify-content: center;
color: var(--text-main);
opacity: 0.5;
transition: opacity 0.2s ease;
}
:root[data-theme="light"] .theme-icon.sun,
:root[data-theme="dark"] .theme-icon.moon {
opacity: 1;
}
.theme-icon svg {
width: 100%;
height: 100%;
stroke: currentColor;
fill: none;
stroke-width: 1.6;
}
.card {
position: relative;
z-index: 1;
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
background: var(--card-bg);
border-radius: 16px;
box-shadow: var(--card-shadow);
padding: 48px 38px 36px;
max-width: 480px;
width: 100%;
Open service 188.114.97.3:80 · spichard.digital
2026-01-26 16:03
HTTP/1.1 301 Moved Permanently
Date: Mon, 26 Jan 2026 16:03:17 GMT
Content-Length: 0
Connection: close
Location: https://spichard.digital/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=RFfZplw7YS6rXATRxDJgV%2F3rLsAhmkqtK4S%2B2g6zJHOowZorSfFN%2F5ohiw%2BOKKXdmZADyQvKjCmw05viqr1QSg1KPS4D2foOi2NFdH9Hf60%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=12,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9c413d52adf64154-BOM
alt-svc: h3=":443"; ma=86400