Initial commit
This commit is contained in:
commit
91ff76ac29
16 changed files with 913 additions and 0 deletions
66
Dockerfile
Normal file
66
Dockerfile
Normal file
|
|
@ -0,0 +1,66 @@
|
||||||
|
# Dockerfile - alpine-fat
|
||||||
|
# https://github.com/openresty/docker-openresty
|
||||||
|
#
|
||||||
|
# This builds upon the base OpenResty alpine image that adds
|
||||||
|
# some build-related packages, has perl installed for opm,
|
||||||
|
# and includes luarocks and envsubst.
|
||||||
|
#
|
||||||
|
# NOTE: For envsubst, we install gettext (envsubst's source package),
|
||||||
|
# copy it out, then uninstall gettext (to save some space as envsubst is very small)
|
||||||
|
# libintl and musl are dependencies of envsubst, so those are installed as well
|
||||||
|
|
||||||
|
ARG RESTY_FAT_IMAGE_BASE="openresty/openresty"
|
||||||
|
ARG RESTY_FAT_IMAGE_TAG="alpine"
|
||||||
|
|
||||||
|
FROM ${RESTY_FAT_IMAGE_BASE}:${RESTY_FAT_IMAGE_TAG}
|
||||||
|
|
||||||
|
ARG RESTY_FAT_IMAGE_BASE="openresty/openresty"
|
||||||
|
ARG RESTY_FAT_IMAGE_TAG="alpine"
|
||||||
|
|
||||||
|
ARG RESTY_LUAROCKS_VERSION="3.12.0"
|
||||||
|
|
||||||
|
LABEL maintainer="Evan Wies <evan@neomantra.net>"
|
||||||
|
LABEL resty_fat_image_base="${RESTY_FAT_IMAGE_BASE}"
|
||||||
|
LABEL resty_fat_image_tag="${RESTY_FAT_IMAGE_TAG}"
|
||||||
|
LABEL resty_luarocks_version="${RESTY_LUAROCKS_VERSION}"
|
||||||
|
|
||||||
|
RUN apk add --no-cache --virtual .build-deps \
|
||||||
|
perl-dev \
|
||||||
|
&& apk add --no-cache \
|
||||||
|
bash \
|
||||||
|
build-base \
|
||||||
|
curl \
|
||||||
|
libintl \
|
||||||
|
linux-headers \
|
||||||
|
make \
|
||||||
|
musl \
|
||||||
|
outils-md5 \
|
||||||
|
perl \
|
||||||
|
unzip \
|
||||||
|
wget \
|
||||||
|
openssl-dev\
|
||||||
|
&& cd /tmp \
|
||||||
|
&& curl -fSL https://luarocks.github.io/luarocks/releases/luarocks-${RESTY_LUAROCKS_VERSION}.tar.gz -o luarocks-${RESTY_LUAROCKS_VERSION}.tar.gz \
|
||||||
|
&& tar xzf luarocks-${RESTY_LUAROCKS_VERSION}.tar.gz \
|
||||||
|
&& cd luarocks-${RESTY_LUAROCKS_VERSION} \
|
||||||
|
&& ./configure \
|
||||||
|
--prefix=/usr/local/openresty/luajit \
|
||||||
|
--with-lua=/usr/local/openresty/luajit \
|
||||||
|
--with-lua-include=/usr/local/openresty/luajit/include/luajit-2.1 \
|
||||||
|
&& make build \
|
||||||
|
&& make install \
|
||||||
|
&& cd /tmp \
|
||||||
|
&& rm -rf luarocks-${RESTY_LUAROCKS_VERSION} luarocks-${RESTY_LUAROCKS_VERSION}.tar.gz \
|
||||||
|
&& apk add --no-cache --virtual .gettext gettext \
|
||||||
|
&& mv /usr/bin/envsubst /tmp/ \
|
||||||
|
&& apk del .build-deps .gettext \
|
||||||
|
&& mv /tmp/envsubst /usr/local/bin/ \
|
||||||
|
&& luarocks install lapis
|
||||||
|
|
||||||
|
# Add LuaRocks paths
|
||||||
|
# If OpenResty changes, these may need updating:
|
||||||
|
# /usr/local/openresty/bin/resty -e 'print(package.path)'
|
||||||
|
# /usr/local/openresty/bin/resty -e 'print(package.cpath)'
|
||||||
|
ENV LUA_PATH="/usr/local/openresty/site/lualib/?.ljbc;/usr/local/openresty/site/lualib/?/init.ljbc;/usr/local/openresty/lualib/?.ljbc;/usr/local/openresty/lualib/?/init.ljbc;/usr/local/openresty/site/lualib/?.lua;/usr/local/openresty/site/lualib/?/init.lua;/usr/local/openresty/lualib/?.lua;/usr/local/openresty/lualib/?/init.lua;./?.lua;/usr/local/openresty/luajit/share/luajit-2.1/?.lua;/usr/local/share/lua/5.1/?.lua;/usr/local/share/lua/5.1/?/init.lua;/usr/local/openresty/luajit/share/lua/5.1/?.lua;/usr/local/openresty/luajit/share/lua/5.1/?/init.lua"
|
||||||
|
|
||||||
|
ENV LUA_CPATH="/usr/local/openresty/site/lualib/?.so;/usr/local/openresty/lualib/?.so;./?.so;/usr/local/lib/lua/5.1/?.so;/usr/local/openresty/luajit/lib/lua/5.1/?.so;/usr/local/lib/lua/5.1/loadall.so;/usr/local/openresty/luajit/lib/lua/5.1/?.so"
|
||||||
10
docker-compose.yml
Normal file
10
docker-compose.yml
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
services:
|
||||||
|
resty:
|
||||||
|
image: rest-alpine-fat:2
|
||||||
|
ports:
|
||||||
|
- "8080:8080"
|
||||||
|
volumes:
|
||||||
|
- ./lapis:/lapis
|
||||||
|
command: sh -c "cd /lapis && lapis server"
|
||||||
|
#environment:
|
||||||
|
#LAPIS_ENVIRONMENT: "production"
|
||||||
62
lapis/app.lua
Normal file
62
lapis/app.lua
Normal file
|
|
@ -0,0 +1,62 @@
|
||||||
|
local lapis = require("lapis")
|
||||||
|
local app = lapis.Application()
|
||||||
|
|
||||||
|
local config = require("lapis.config").get()
|
||||||
|
|
||||||
|
members = {{"fynn","https://fynngodau.de"},
|
||||||
|
{"anton","https://anton.ehrmanntraut.de"},
|
||||||
|
{"max","https://aaahhh.de"},
|
||||||
|
{"cups",config.host}}
|
||||||
|
members[#members+1] = members[1]
|
||||||
|
|
||||||
|
math.randomseed(os.time())
|
||||||
|
|
||||||
|
app:get("/", function()
|
||||||
|
return 'Welcome to the CUPS (Cool Unique People System) webring </br> <embed type="text/html" src="' .. config.host .. '/embed?from=cups" style="width:350px;">'
|
||||||
|
end)
|
||||||
|
|
||||||
|
app:get("/embed", function(self)
|
||||||
|
local from = self.params.from
|
||||||
|
if from == nil then
|
||||||
|
return {"cups webring embed needs from defined (.../embed?from=me)"}
|
||||||
|
end
|
||||||
|
return string.format('<div style="display:flex; flex-direction:row; align-items:center;"><a href="%s/prev?from=%s" target="_parent"><img src="%s/static/arrow_left.svg" width=50 height=50/></a><img src="%s/static/logo_cut.svg" width=200 height=100/><a href="%s/next?from=%s" target="_parent"><img src="%s/static/arrow_right.svg" width=50 height=50/></a></div>', config.host, from, config.host, config.host, config.host, from, config.host), {layout = false, content_type="text/html"}
|
||||||
|
end)
|
||||||
|
|
||||||
|
app:get("/random", function(self)
|
||||||
|
rand = math.random(1,#members-1)
|
||||||
|
return {redirect_to=members[rand][2]}
|
||||||
|
end)
|
||||||
|
|
||||||
|
app:get("/next", function(self)
|
||||||
|
local found
|
||||||
|
for _, elem in ipairs(members) do
|
||||||
|
local name = elem[1]
|
||||||
|
local url = elem[2]
|
||||||
|
if found == true then
|
||||||
|
return {redirect_to=url}
|
||||||
|
end
|
||||||
|
if name == self.params.from then
|
||||||
|
found = true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return {redirect_to="/"}
|
||||||
|
end)
|
||||||
|
|
||||||
|
|
||||||
|
app:get("/prev", function(self)
|
||||||
|
local found
|
||||||
|
for i=#members, 1, -1 do
|
||||||
|
local name = members[i][1]
|
||||||
|
local url = members[i][2]
|
||||||
|
if found == true then
|
||||||
|
return {redirect_to=url}
|
||||||
|
end
|
||||||
|
if name == self.params.from then
|
||||||
|
found = true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return {redirect_to="/"}
|
||||||
|
end)
|
||||||
|
|
||||||
|
return app
|
||||||
14
lapis/config.lua
Normal file
14
lapis/config.lua
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
local config = require("lapis.config")
|
||||||
|
|
||||||
|
config("development", {
|
||||||
|
server = "nginx",
|
||||||
|
code_cache = "off",
|
||||||
|
num_workers = "1",
|
||||||
|
host = "http://localhost:8080"
|
||||||
|
})
|
||||||
|
|
||||||
|
config("production", {
|
||||||
|
server = "nginx",
|
||||||
|
num_workers= "1",
|
||||||
|
host = "https://cups.teabucket.eu"
|
||||||
|
})
|
||||||
256
lapis/logs/access.log
Normal file
256
lapis/logs/access.log
Normal file
|
|
@ -0,0 +1,256 @@
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:27:06 +0000] "GET / HTTP/1.1" 200 123 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:27:07 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:27:09 +0000] "GET / HTTP/1.1" 200 123 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:27:09 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:30:15 +0000] "GET / HTTP/1.1" 200 123 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:30:15 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:30:22 +0000] "GET /next?from=haha HTTP/1.1" 500 1532 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:30:22 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/next?from=haha" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:32:11 +0000] "GET /next?from=haha HTTP/1.1" 500 1515 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:32:12 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/next?from=haha" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:32:19 +0000] "GET /next?from_page=haha HTTP/1.1" 200 115 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:32:19 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/next?from_page=haha" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:33:52 +0000] "GET /next?from_page=fynngodau.de HTTP/1.1" 200 100 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:33:52 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/next?from_page=fynngodau.de" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:34:06 +0000] "GET /next?from=fynngodau.de HTTP/1.1" 200 100 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:34:06 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/next?from=fynngodau.de" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:36:49 +0000] "GET /next?from=https://fynngodau.de HTTP/1.1" 200 100 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:36:49 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/next?from=https://fynngodau.de" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:36:56 +0000] "GET /next?from=https://ww.fynngodau.de HTTP/1.1" 200 100 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:36:56 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/next?from=https://ww.fynngodau.de" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:37:27 +0000] "GET /next?from=https://ww.fynngodau.de HTTP/1.1" 200 100 "-" "curl/8.9.1"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:37:30 +0000] "GET /next?from=https://ww.fynngodau.de HTTP/1.1" 200 100 "-" "curl/8.9.1"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:38:17 +0000] "GET /next?from=https://www.fynngodau.de HTTP/1.1" 200 100 "-" "curl/8.9.1"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:38:50 +0000] "GET /next?from=https://www.fynngodau.de HTTP/1.1" 302 5 "-" "curl/8.9.1"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:39:02 +0000] "GET /next?from=https://ww.fynngodau.de HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:39:05 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/next?from=https://fynngodau.de" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:39:09 +0000] "GET /next?from=https://fynngodau.de HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:39:11 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/next?from=fynngodau.de" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:47:48 +0000] "GET /next?from=fynngodau.de HTTP/1.1" 500 183 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:47:52 +0000] "GET /next?from=fynn HTTP/1.1" 500 183 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:47:55 +0000] "GET /next?from=fynn HTTP/1.1" 500 183 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:48:31 +0000] "GET /next?from=fynn HTTP/1.1" 500 183 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:49:37 +0000] "GET /next?from=fynn HTTP/1.1" 500 183 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:49:37 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/next?from=fynn" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:49:38 +0000] "GET /next?from=fynn HTTP/1.1" 500 183 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:50:12 +0000] "GET /next?from=fynn HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:50:12 +0000] "GET / HTTP/1.1" 200 123 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:50:50 +0000] "GET /next?from=fynn HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:50:50 +0000] "GET / HTTP/1.1" 200 123 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:51:00 +0000] "GET /next?from=anton HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:51:00 +0000] "GET / HTTP/1.1" 200 123 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:53:07 +0000] "GET /next?from=fynn HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:53:07 +0000] "GET / HTTP/1.1" 200 123 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:54:21 +0000] "GET /next?from=fynn HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:54:21 +0000] "GET / HTTP/1.1" 200 123 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:54:27 +0000] "GET /next?from=fynn HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:54:27 +0000] "GET / HTTP/1.1" 200 123 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:55:02 +0000] "GET /next?from=fynn HTTP/1.1" 200 104 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:55:23 +0000] "GET /next?from=fynn HTTP/1.1" 500 183 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:58:14 +0000] "GET /next?from=fynn HTTP/1.1" 500 183 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:58:33 +0000] "GET /next?from=fynn HTTP/1.1" 500 183 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:58:40 +0000] "GET /next?from=fynn HTTP/1.1" 200 158 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:18:59:44 +0000] "GET /next?from=fynn HTTP/1.1" 200 105 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:01:12 +0000] "GET /next?from=fynn HTTP/1.1" 200 104 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:01:12 +0000] "GET /next?from=fynn HTTP/1.1" 200 104 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:01:32 +0000] "GET /next?from=fynn HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:01:32 +0000] "GET /anton.ehrmanntraut.de HTTP/1.1" 500 1539 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:01:59 +0000] "GET /next?from=fynn HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:02:12 +0000] "GET /next?from=anton HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:05:51 +0000] "GET /prev?from=max HTTP/1.1" 500 183 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:05:51 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/prev?from=max" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:07:20 +0000] "GET /prev?from=max HTTP/1.1" 500 183 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:07:47 +0000] "GET /prev?from=max HTTP/1.1" 500 183 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:09:37 +0000] "GET /prev?from=max HTTP/1.1" 500 183 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:10:01 +0000] "GET /prev?from=max HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:10:19 +0000] "GET /prev?from=anton HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:10:28 +0000] "GET /prev?from=fynn HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:11:25 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/next?from=fynngodau.de" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:11:27 +0000] "GET /next?from=fynngodau.de HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:11:27 +0000] "GET / HTTP/1.1" 200 142 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:13:21 +0000] "GET /random HTTP/1.1" 500 183 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:13:43 +0000] "GET /random HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:13:48 +0000] "GET /ransom HTTP/1.1" 500 1524 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:13:54 +0000] "GET /random HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:13:59 +0000] "GET /random HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:14:02 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/ransom" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:14:07 +0000] "GET /random HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:14:08 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/ransom" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:15:17 +0000] "GET /random HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:15:20 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/ransom" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:15:24 +0000] "GET /random HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:15:26 +0000] "GET /random HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:15:29 +0000] "GET /random HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:15:33 +0000] "GET / HTTP/1.1" 200 144 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:15:34 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:18:54 +0000] "GET / HTTP/1.1" 500 183 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:18:54 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:19:05 +0000] "GET / HTTP/1.1" 200 221 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:19:05 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:19:07 +0000] "GET /prev?from=webring HTTP/1.1" 302 5 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:19:08 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:19:08 +0000] "GET /next?from=webring HTTP/1.1" 302 5 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:19:37 +0000] "GET / HTTP/1.1" 200 212 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:19:38 +0000] "GET /prev?from=webring HTTP/1.1" 302 5 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:20:10 +0000] "GET / HTTP/1.1" 200 212 "-" "curl/8.9.1"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:22:58 +0000] "GET / HTTP/1.1" 200 212 "-" "curl/8.9.1"
|
||||||
|
172.21.0.1 - - [08/Jul/2025:19:23:00 +0000] "GET / HTTP/1.1" 200 212 "-" "curl/8.9.1"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:13:21:15 +0000] "GET / HTTP/1.1" 200 212 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:13:21:15 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:13:21:17 +0000] "GET /next?from=webring HTTP/1.1" 302 5 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:13:21:20 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:13:21:20 +0000] "GET /prev?from=webring HTTP/1.1" 302 5 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:13:21:25 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:13:21:52 +0000] "GET /next?from=fynn HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:13:35:09 +0000] "GET / HTTP/1.1" 200 212 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:13:35:10 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:14:56:34 +0000] "GET / HTTP/1.1" 200 243 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:14:56:35 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:14:56:37 +0000] "GET /next?from=webring HTTP/1.1" 302 5 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:14:56:46 +0000] "GET /prev?from=fynn HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:14:56:46 +0000] "GET / HTTP/1.1" 200 243 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:14:58:46 +0000] "GET / HTTP/1.1" 200 243 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:14:58:46 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:14:58:53 +0000] "GET /prev?from=fynn HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:04:21 +0000] "GET / HTTP/1.1" 500 183 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:04:21 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:10:15 +0000] "GET / HTTP/1.1" 500 183 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:10:16 +0000] "GET / HTTP/1.1" 500 183 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:12:08 +0000] "GET / HTTP/1.1" 500 183 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:12:39 +0000] "GET / HTTP/1.1" 500 183 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:12:40 +0000] "GET / HTTP/1.1" 500 183 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:13:11 +0000] "GET / HTTP/1.1" 200 214 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:13:12 +0000] "GET / HTTP/1.1" 200 214 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:13:36 +0000] "GET / HTTP/1.1" 200 230 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:13:36 +0000] "GET /embed?from=cups HTTP/1.1" 200 218 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:13:38 +0000] "GET /next?from=cups HTTP/1.1" 302 5 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:15:38 +0000] "GET / HTTP/1.1" 200 217 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:15:39 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:15:53 +0000] "GET / HTTP/1.1" 200 214 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:15:53 +0000] "GET /embed?from=cups HTTP/1.1" 200 218 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:15:55 +0000] "GET /next?from=cups HTTP/1.1" 302 5 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:20:30 +0000] "GET / HTTP/1.1" 200 214 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:20:30 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:20:30 +0000] "GET /embed?from=cups HTTP/1.1" 200 235 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:20:31 +0000] "GET /next?from=cups HTTP/1.1" 302 5 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:20:34 +0000] "GET /prev?from=cups HTTP/1.1" 302 5 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:21:18 +0000] "GET / HTTP/1.1" 200 230 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:21:18 +0000] "GET /embed?from=cups HTTP/1.1" 200 250 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:21:19 +0000] "GET /next?from=cups HTTP/1.1" 302 5 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:21:21 +0000] "GET /prev?from=cups HTTP/1.1" 302 5 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:21:26 +0000] "GET / HTTP/1.1" 200 230 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:21:26 +0000] "GET /embed?from=cups HTTP/1.1" 200 250 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:21:38 +0000] "GET / HTTP/1.1" 200 230 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:21:38 +0000] "GET /embed?from=cups HTTP/1.1" 200 250 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:21:42 +0000] "GET /next?from=cups HTTP/1.1" 302 5 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:21:44 +0000] "GET /prev?from=cups HTTP/1.1" 302 5 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:21:48 +0000] "GET / HTTP/1.1" 200 230 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:21:48 +0000] "GET /embed?from=cups HTTP/1.1" 200 250 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:22:20 +0000] "GET / HTTP/1.1" 200 230 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:22:21 +0000] "GET /embed?from=cups HTTP/1.1" 200 252 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:22:21 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:22:23 +0000] "GET /prev?from=cups HTTP/1.1" 302 5 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:23:59 +0000] "GET /next?from=cups HTTP/1.1" 302 5 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:15:24:02 +0000] "GET /prev?from=cups HTTP/1.1" 302 5 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:32:05 +0000] "GET /logo.svg HTTP/1.1" 500 1526 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:32:06 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/logo.svg" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:37:44 +0000] "GET /logo.svg HTTP/1.1" 500 1526 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:37:44 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/logo.svg" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:37:45 +0000] "GET /logo.svg HTTP/1.1" 500 1526 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:37:49 +0000] "GET /static/logo.svg HTTP/1.1" 200 7376 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:42:39 +0000] "GET / HTTP/1.1" 200 230 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:42:39 +0000] "GET /embed?from=cups HTTP/1.1" 500 1547 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:42:42 +0000] "GET / HTTP/1.1" 200 230 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:42:42 +0000] "GET /embed?from=cups HTTP/1.1" 500 1547 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:46:43 +0000] "GET / HTTP/1.1" 200 230 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:46:43 +0000] "GET /embed?from=cups HTTP/1.1" 200 291 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:46:44 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:46:44 +0000] "GET /static/logo.svg HTTP/1.1" 200 7376 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:47:25 +0000] "GET / HTTP/1.1" 200 230 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:47:25 +0000] "GET /embed?from=cups HTTP/1.1" 200 312 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:47:25 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:47:25 +0000] "GET /static/logo.svg HTTP/1.1" 200 7376 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:47:33 +0000] "GET /embed?from=cups HTTP/1.1" 200 312 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:47:34 +0000] "GET /static/logo.svg HTTP/1.1" 200 7376 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:47:34 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:47:35 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:49:47 +0000] "GET / HTTP/1.1" 200 230 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:49:47 +0000] "GET /embed?from=cups HTTP/1.1" 200 384 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:49:47 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:49:47 +0000] "GET /static/logo.svg HTTP/1.1" 200 7376 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:50:28 +0000] "GET / HTTP/1.1" 200 230 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:50:28 +0000] "GET /embed?from=cups HTTP/1.1" 200 385 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:50:28 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:16:50:28 +0000] "GET /static/logo.svg HTTP/1.1" 200 7376 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:04:45 +0000] "GET / HTTP/1.1" 200 230 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:04:45 +0000] "GET /embed?from=cups HTTP/1.1" 200 389 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:04:45 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:04:46 +0000] "GET /static/logo_cut.svg HTTP/1.1" 200 6790 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:04:54 +0000] "GET /prev?from=cups HTTP/1.1" 302 5 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:21:37 +0000] "GET / HTTP/1.1" 200 230 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:21:37 +0000] "GET /embed?from=cups HTTP/1.1" 200 457 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:21:37 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:21:37 +0000] "GET /static/logo_cut.svg HTTP/1.1" 200 6790 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:21:48 +0000] "GET / HTTP/1.1" 200 230 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:21:48 +0000] "GET /embed?from=cups HTTP/1.1" 200 458 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:21:49 +0000] "GET /static/arrow_left HTTP/1.1" 404 159 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:21:50 +0000] "GET /prev?from=cups HTTP/1.1" 302 5 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:22:20 +0000] "GET / HTTP/1.1" 200 230 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:22:21 +0000] "GET /embed?from=cups HTTP/1.1" 200 462 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:22:21 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:22:21 +0000] "GET /static/arrow_left.svg HTTP/1.1" 200 2669 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:22:21 +0000] "GET /static/logo_cut.svg HTTP/1.1" 200 6790 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:22:29 +0000] "GET /prev?from=cups HTTP/1.1" 302 5 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:22:30 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:23:22 +0000] "GET / HTTP/1.1" 200 230 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:23:22 +0000] "GET /embed?from=cups HTTP/1.1" 200 462 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:23:22 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:23:22 +0000] "GET /static/arrow_left.svg HTTP/1.1" 200 2924 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:23:22 +0000] "GET /static/logo_cut.svg HTTP/1.1" 200 6790 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:23:27 +0000] "GET /prev?from=cups HTTP/1.1" 302 5 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:23:28 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:28:14 +0000] "GET / HTTP/1.1" 200 230 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:28:14 +0000] "GET /embed?from=cups HTTP/1.1" 500 1550 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:28:14 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:28:44 +0000] "GET / HTTP/1.1" 200 230 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:28:45 +0000] "GET /embed?from=cups HTTP/1.1" 200 536 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:28:45 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:28:45 +0000] "GET /static/arrow_left.svg HTTP/1.1" 200 2924 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:28:45 +0000] "GET /static/logo_cut.svg HTTP/1.1" 200 6790 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:28:45 +0000] "GET /cups/static/arrow_right.svg HTTP/1.1" 500 1545 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:29:21 +0000] "GET / HTTP/1.1" 200 230 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:29:21 +0000] "GET /embed?from=cups HTTP/1.1" 200 536 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:29:21 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:29:21 +0000] "GET /static/arrow_left.svg HTTP/1.1" 200 2924 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:29:21 +0000] "GET /static/logo_cut.svg HTTP/1.1" 200 6790 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:29:21 +0000] "GET /static/arrow_right.svg HTTP/1.1" 200 2955 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:30:46 +0000] "GET / HTTP/1.1" 200 256 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:30:46 +0000] "GET /embed?from=cups HTTP/1.1" 200 536 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:30:46 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:30:46 +0000] "GET /static/arrow_left.svg HTTP/1.1" 200 2924 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:30:46 +0000] "GET /static/logo_cut.svg HTTP/1.1" 200 6790 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:30:46 +0000] "GET /static/arrow_right.svg HTTP/1.1" 200 2955 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:37:05 +0000] "GET / HTTP/1.1" 200 257 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:37:05 +0000] "GET /embed?from=cups HTTP/1.1" 200 447 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:37:05 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:37:05 +0000] "GET /static/arrow_left.svg HTTP/1.1" 200 2924 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:37:05 +0000] "GET /static/logo_cut.svg HTTP/1.1" 200 6790 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:37:05 +0000] "GET /static/arrow_right.svg HTTP/1.1" 200 2955 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:38:10 +0000] "GET / HTTP/1.1" 200 249 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:38:10 +0000] "GET /embed?from=cups HTTP/1.1" 200 447 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:38:10 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:38:10 +0000] "GET /static/arrow_left.svg HTTP/1.1" 200 2924 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:38:10 +0000] "GET /static/logo_cut.svg HTTP/1.1" 200 6790 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:38:10 +0000] "GET /static/arrow_right.svg HTTP/1.1" 200 2955 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:38:16 +0000] "GET / HTTP/1.1" 200 249 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:38:16 +0000] "GET /embed?from=cups HTTP/1.1" 200 447 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:38:16 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:38:16 +0000] "GET /static/arrow_left.svg HTTP/1.1" 200 2924 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:38:16 +0000] "GET /static/logo_cut.svg HTTP/1.1" 200 6790 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:38:16 +0000] "GET /static/arrow_right.svg HTTP/1.1" 200 2955 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:38:31 +0000] "GET / HTTP/1.1" 200 251 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:38:31 +0000] "GET /embed?from=cups HTTP/1.1" 200 447 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:38:31 +0000] "GET /favicon.ico HTTP/1.1" 404 159 "http://localhost:8080/" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:38:31 +0000] "GET /static/arrow_left.svg HTTP/1.1" 200 2924 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:38:31 +0000] "GET /static/logo_cut.svg HTTP/1.1" 200 6790 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
|
172.21.0.1 - - [10/Jul/2025:17:38:31 +0000] "GET /static/arrow_right.svg HTTP/1.1" 200 2955 "http://localhost:8080/embed?from=cups" "Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0"
|
||||||
7
lapis/logs/error.log
Normal file
7
lapis/logs/error.log
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
2025/07/08 18:26:59 [alert] 12#12: lua_code_cache is off; this will hurt performance in /lapis/nginx.conf.compiled:20
|
||||||
|
2025/07/08 18:30:12 [alert] 13#13: lua_code_cache is off; this will hurt performance in /lapis/nginx.conf.compiled:20
|
||||||
|
2025/07/08 18:32:04 [alert] 12#12: lua_code_cache is off; this will hurt performance in /lapis/nginx.conf.compiled:20
|
||||||
|
2025/07/08 18:33:30 [alert] 13#13: lua_code_cache is off; this will hurt performance in /lapis/nginx.conf.compiled:20
|
||||||
|
2025/07/08 18:48:19 [alert] 13#13: lua_code_cache is off; this will hurt performance in /lapis/nginx.conf.compiled:20
|
||||||
|
2025/07/10 14:58:41 [alert] 13#13: lua_code_cache is off; this will hurt performance in /lapis/nginx.conf.compiled:20
|
||||||
|
2025/07/10 15:00:18 [alert] 13#13: lua_code_cache is off; this will hurt performance in /lapis/nginx.conf.compiled:20
|
||||||
1
lapis/logs/nginx.pid
Normal file
1
lapis/logs/nginx.pid
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
13
|
||||||
81
lapis/mime.types
Normal file
81
lapis/mime.types
Normal file
|
|
@ -0,0 +1,81 @@
|
||||||
|
types {
|
||||||
|
text/html html htm shtml;
|
||||||
|
text/css css;
|
||||||
|
text/xml xml;
|
||||||
|
image/gif gif;
|
||||||
|
image/jpeg jpeg jpg;
|
||||||
|
application/x-lua lua;
|
||||||
|
application/x-moonscript moon;
|
||||||
|
application/x-javascript js;
|
||||||
|
application/atom+xml atom;
|
||||||
|
application/rss+xml rss;
|
||||||
|
|
||||||
|
text/mathml mml;
|
||||||
|
text/plain txt;
|
||||||
|
text/vnd.sun.j2me.app-descriptor jad;
|
||||||
|
text/vnd.wap.wml wml;
|
||||||
|
text/x-component htc;
|
||||||
|
|
||||||
|
image/png png;
|
||||||
|
image/tiff tif tiff;
|
||||||
|
image/vnd.wap.wbmp wbmp;
|
||||||
|
image/x-icon ico;
|
||||||
|
image/x-jng jng;
|
||||||
|
image/x-ms-bmp bmp;
|
||||||
|
image/svg+xml svg svgz;
|
||||||
|
image/webp webp;
|
||||||
|
|
||||||
|
application/java-archive jar war ear;
|
||||||
|
application/mac-binhex40 hqx;
|
||||||
|
application/msword doc;
|
||||||
|
application/pdf pdf;
|
||||||
|
application/postscript ps eps ai;
|
||||||
|
application/rtf rtf;
|
||||||
|
application/vnd.ms-excel xls;
|
||||||
|
application/vnd.ms-powerpoint ppt;
|
||||||
|
application/vnd.wap.wmlc wmlc;
|
||||||
|
application/vnd.google-earth.kml+xml kml;
|
||||||
|
application/vnd.google-earth.kmz kmz;
|
||||||
|
application/x-7z-compressed 7z;
|
||||||
|
application/x-cocoa cco;
|
||||||
|
application/x-java-archive-diff jardiff;
|
||||||
|
application/x-java-jnlp-file jnlp;
|
||||||
|
application/x-makeself run;
|
||||||
|
application/x-perl pl pm;
|
||||||
|
application/x-pilot prc pdb;
|
||||||
|
application/x-rar-compressed rar;
|
||||||
|
application/x-redhat-package-manager rpm;
|
||||||
|
application/x-sea sea;
|
||||||
|
application/x-shockwave-flash swf;
|
||||||
|
application/x-stuffit sit;
|
||||||
|
application/x-tcl tcl tk;
|
||||||
|
application/x-x509-ca-cert der pem crt;
|
||||||
|
application/x-xpinstall xpi;
|
||||||
|
application/xhtml+xml xhtml;
|
||||||
|
application/zip zip;
|
||||||
|
|
||||||
|
application/octet-stream bin exe dll;
|
||||||
|
application/octet-stream deb;
|
||||||
|
application/octet-stream dmg;
|
||||||
|
application/octet-stream eot;
|
||||||
|
application/octet-stream iso img;
|
||||||
|
application/octet-stream msi msp msm;
|
||||||
|
|
||||||
|
audio/midi mid midi kar;
|
||||||
|
audio/mpeg mp3;
|
||||||
|
audio/ogg ogg;
|
||||||
|
audio/x-m4a m4a;
|
||||||
|
audio/x-realaudio ra;
|
||||||
|
|
||||||
|
video/3gpp 3gpp 3gp;
|
||||||
|
video/mp4 mp4;
|
||||||
|
video/mpeg mpeg mpg;
|
||||||
|
video/quicktime mov;
|
||||||
|
video/webm webm;
|
||||||
|
video/x-flv flv;
|
||||||
|
video/x-m4v m4v;
|
||||||
|
video/x-mng mng;
|
||||||
|
video/x-ms-asf asx asf;
|
||||||
|
video/x-ms-wmv wmv;
|
||||||
|
video/x-msvideo avi;
|
||||||
|
}
|
||||||
2
lapis/models.lua
Normal file
2
lapis/models.lua
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
local autoload = require("lapis.util").autoload
|
||||||
|
return autoload("models")
|
||||||
36
lapis/nginx.conf
Normal file
36
lapis/nginx.conf
Normal file
|
|
@ -0,0 +1,36 @@
|
||||||
|
worker_processes ${{NUM_WORKERS}};
|
||||||
|
error_log stderr notice;
|
||||||
|
daemon off;
|
||||||
|
pid logs/nginx.pid;
|
||||||
|
|
||||||
|
events {
|
||||||
|
worker_connections 1024;
|
||||||
|
}
|
||||||
|
|
||||||
|
http {
|
||||||
|
include mime.types;
|
||||||
|
|
||||||
|
init_by_lua_block {
|
||||||
|
require "lpeg"
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen ${{PORT}};
|
||||||
|
lua_code_cache ${{CODE_CACHE}};
|
||||||
|
|
||||||
|
location / {
|
||||||
|
default_type text/html;
|
||||||
|
content_by_lua_block {
|
||||||
|
require("lapis").serve("app")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
location /static/ {
|
||||||
|
alias static/;
|
||||||
|
}
|
||||||
|
|
||||||
|
location /favicon.ico {
|
||||||
|
alias static/favicon.ico;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
37
lapis/nginx.conf.compiled
Normal file
37
lapis/nginx.conf.compiled
Normal file
|
|
@ -0,0 +1,37 @@
|
||||||
|
env LAPIS_ENVIRONMENT=development;
|
||||||
|
worker_processes 1;
|
||||||
|
error_log stderr notice;
|
||||||
|
daemon off;
|
||||||
|
pid logs/nginx.pid;
|
||||||
|
|
||||||
|
events {
|
||||||
|
worker_connections 1024;
|
||||||
|
}
|
||||||
|
|
||||||
|
http {
|
||||||
|
include mime.types;
|
||||||
|
|
||||||
|
init_by_lua_block {
|
||||||
|
require "lpeg"
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 8080;
|
||||||
|
lua_code_cache off;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
default_type text/html;
|
||||||
|
content_by_lua_block {
|
||||||
|
require("lapis").serve("app")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
location /static/ {
|
||||||
|
alias static/;
|
||||||
|
}
|
||||||
|
|
||||||
|
location /favicon.ico {
|
||||||
|
alias static/favicon.ico;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
91
lapis/static/arrow_left.svg
Normal file
91
lapis/static/arrow_left.svg
Normal file
|
|
@ -0,0 +1,91 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
width="1619.0757"
|
||||||
|
height="1552.4"
|
||||||
|
viewBox="0 0 1619.0757 1552.4"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<defs
|
||||||
|
id="defs8" />
|
||||||
|
<path
|
||||||
|
fill-rule="evenodd"
|
||||||
|
fill="#ffffe0"
|
||||||
|
fill-opacity="1"
|
||||||
|
stroke-width="0.4"
|
||||||
|
stroke-linecap="butt"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-opacity="1"
|
||||||
|
stroke-miterlimit="10"
|
||||||
|
d="M 0.2000166,0.20000591 V 1552.2 H 1618.8758 V 0.20000591 Z m 0,0"
|
||||||
|
id="path1" />
|
||||||
|
<path
|
||||||
|
fill-rule="evenodd"
|
||||||
|
fill="#ee82ee"
|
||||||
|
fill-opacity="1"
|
||||||
|
d="m 1592.9148,1678.6922 c -144.8203,64.6914 -389.8359,52.168 -569.3164,-93.1797 -179.48429,-145.3516 -293.43359,-423.5312 -74.39059,-529.8203 219.04299,-106.293 771.08199,-40.6992 674.21489,130.5781 -96.8672,171.2813 -842.64459,448.2461 -1185.58988,366.6328 -342.949214,-81.6093 -283.07031,-521.7929 26.38281,-620.7929 309.45708,-99.0039 868.49217,143.1796 1143.73047,400.2304 275.2383,257.0469 266.6836,528.9649 255.8945,531.086 -10.789,2.1172 -23.8086,-265.5625 -52.6367,-328.4493 -28.8281,-62.8867 -73.4648,79.0196 -218.2891,143.7149 z m 0,0"
|
||||||
|
id="path2" />
|
||||||
|
<path
|
||||||
|
fill-rule="evenodd"
|
||||||
|
fill="#a01ff0"
|
||||||
|
fill-opacity="1"
|
||||||
|
d="m 160.20001,128.2 48,-528 208,1168 655.99999,-464 -1231.99999,272 -272,-112 z m 0,0"
|
||||||
|
id="path3" />
|
||||||
|
<path
|
||||||
|
fill="none"
|
||||||
|
stroke-width="10"
|
||||||
|
stroke-linecap="butt"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-opacity="1"
|
||||||
|
stroke-miterlimit="10"
|
||||||
|
d="m 832.20001,128.2 -688,688 672,624"
|
||||||
|
id="path4"
|
||||||
|
style="stroke-width:40;stroke-dasharray:none" />
|
||||||
|
<path
|
||||||
|
fill="none"
|
||||||
|
stroke-width="10"
|
||||||
|
stroke-linecap="butt"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-opacity="1"
|
||||||
|
stroke-miterlimit="10"
|
||||||
|
d="m 1168.2,112.2 -687.99999,688 671.99999,624"
|
||||||
|
id="path5"
|
||||||
|
style="stroke-width:40;stroke-dasharray:none" />
|
||||||
|
<path
|
||||||
|
fill="none"
|
||||||
|
stroke-width="10"
|
||||||
|
stroke-linecap="butt"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-opacity="1"
|
||||||
|
stroke-miterlimit="10"
|
||||||
|
d="m 1344.2,112.2 -687.99999,688 671.99999,624"
|
||||||
|
id="path6"
|
||||||
|
style="stroke-width:40;stroke-dasharray:none" />
|
||||||
|
<path
|
||||||
|
fill="none"
|
||||||
|
stroke-width="10"
|
||||||
|
stroke-linecap="butt"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-opacity="1"
|
||||||
|
stroke-miterlimit="10"
|
||||||
|
d="m 1504.2,112.2 -687.99999,688 671.99999,624"
|
||||||
|
id="path7"
|
||||||
|
style="stroke-width:40;stroke-dasharray:none" />
|
||||||
|
<path
|
||||||
|
fill="none"
|
||||||
|
stroke-width="10"
|
||||||
|
stroke-linecap="butt"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-opacity="1"
|
||||||
|
stroke-miterlimit="10"
|
||||||
|
d="m 1008.2,112.2 -687.99999,688 672,624"
|
||||||
|
id="path8"
|
||||||
|
style="stroke-width:40;stroke-dasharray:none" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.9 KiB |
91
lapis/static/arrow_right.svg
Normal file
91
lapis/static/arrow_right.svg
Normal file
|
|
@ -0,0 +1,91 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
width="1619.0758"
|
||||||
|
height="1552.4"
|
||||||
|
viewBox="0 0 1619.0758 1552.4"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<defs
|
||||||
|
id="defs8" />
|
||||||
|
<path
|
||||||
|
fill-rule="evenodd"
|
||||||
|
fill="#ffffe0"
|
||||||
|
fill-opacity="1"
|
||||||
|
stroke-width="0.4"
|
||||||
|
stroke-linecap="butt"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-opacity="1"
|
||||||
|
stroke-miterlimit="10"
|
||||||
|
d="M 1618.8758,0.20000591 V 1552.2 H 0.20000318 V 0.20000591 Z m 0,0"
|
||||||
|
id="path1" />
|
||||||
|
<path
|
||||||
|
fill-rule="evenodd"
|
||||||
|
fill="#ee82ee"
|
||||||
|
fill-opacity="1"
|
||||||
|
d="m 26.160933,1678.6922 c 144.820317,64.6914 389.835937,52.168 569.316407,-93.1797 C 774.9617,1440.1609 888.9109,1161.9813 669.86796,1055.6922 450.825,949.3992 -101.21407,1014.993 -4.3468768,1186.2703 92.520313,1357.5516 838.2977,1634.5164 1181.243,1552.9031 c 342.9492,-81.6093 283.0703,-521.7929 -26.3828,-620.7929 -309.4571,-99.0039 -868.49224,143.1796 -1143.730517,400.2304 -275.238273,257.0469 -266.683593,528.9649 -255.894523,531.086 10.78906,2.1172 23.80859,-265.5625 52.63672,-328.4493 28.82812,-62.8867 73.46483,79.0196 218.289053,143.7149 z m 0,0"
|
||||||
|
id="path2" />
|
||||||
|
<path
|
||||||
|
fill-rule="evenodd"
|
||||||
|
fill="#a01ff0"
|
||||||
|
fill-opacity="1"
|
||||||
|
d="m 1458.8758,128.2 -48,-528 -208,1168 -656.00002,-464 1232.00002,272 272,-112 z m 0,0"
|
||||||
|
id="path3" />
|
||||||
|
<path
|
||||||
|
fill="none"
|
||||||
|
stroke-width="10"
|
||||||
|
stroke-linecap="butt"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-opacity="1"
|
||||||
|
stroke-miterlimit="10"
|
||||||
|
d="m 786.8758,128.2 688,688 -672,624"
|
||||||
|
id="path4"
|
||||||
|
style="stroke-width:40;stroke-dasharray:none" />
|
||||||
|
<path
|
||||||
|
fill="none"
|
||||||
|
stroke-width="10"
|
||||||
|
stroke-linecap="butt"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-opacity="1"
|
||||||
|
stroke-miterlimit="10"
|
||||||
|
d="m 450.87578,112.2 688.00002,688 -672.00002,624"
|
||||||
|
id="path5"
|
||||||
|
style="stroke-width:40;stroke-dasharray:none" />
|
||||||
|
<path
|
||||||
|
fill="none"
|
||||||
|
stroke-width="10"
|
||||||
|
stroke-linecap="butt"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-opacity="1"
|
||||||
|
stroke-miterlimit="10"
|
||||||
|
d="m 274.87578,112.2 688.00002,688 -672.00002,624"
|
||||||
|
id="path6"
|
||||||
|
style="stroke-width:40;stroke-dasharray:none" />
|
||||||
|
<path
|
||||||
|
fill="none"
|
||||||
|
stroke-width="10"
|
||||||
|
stroke-linecap="butt"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-opacity="1"
|
||||||
|
stroke-miterlimit="10"
|
||||||
|
d="m 114.87578,112.2 688.00002,688 -672.00002,624"
|
||||||
|
id="path7"
|
||||||
|
style="stroke-width:40;stroke-dasharray:none" />
|
||||||
|
<path
|
||||||
|
fill="none"
|
||||||
|
stroke-width="10"
|
||||||
|
stroke-linecap="butt"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-opacity="1"
|
||||||
|
stroke-miterlimit="10"
|
||||||
|
d="m 610.87578,112.2 688.00002,688 -672.00002,624"
|
||||||
|
id="path8"
|
||||||
|
style="stroke-width:40;stroke-dasharray:none" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.9 KiB |
28
lapis/static/logo.svg
Normal file
28
lapis/static/logo.svg
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="6049" height="4088" viewBox="0 0 6049 4088">
|
||||||
|
<defs>
|
||||||
|
<g>
|
||||||
|
<g id="glyph-0-0">
|
||||||
|
<path d="M 969.453125 -1150.15625 C 969.453125 -1180.640625 967.890625 -1182.328125 958.515625 -1182.328125 C 952.28125 -1182.328125 950.71875 -1180.640625 939.78125 -1160.3125 L 871.09375 -1018.03125 C 794.609375 -1123.046875 700.9375 -1184.03125 580.734375 -1184.03125 C 313.78125 -1184.03125 71.8125 -928.25 71.8125 -579.3125 C 71.8125 -226.984375 313.78125 27.109375 582.296875 27.109375 C 821.140625 27.109375 969.453125 -201.578125 969.453125 -396.375 C 969.453125 -413.3125 969.453125 -420.078125 955.40625 -420.078125 C 942.90625 -420.078125 942.90625 -415 941.34375 -399.765625 C 928.859375 -162.609375 772.75 -16.9375 604.15625 -16.9375 C 444.921875 -16.9375 190.453125 -138.90625 190.453125 -579.3125 C 190.453125 -1021.421875 449.59375 -1139.984375 601.03125 -1139.984375 C 777.4375 -1139.984375 905.4375 -973.984375 935.109375 -738.53125 C 938.234375 -718.203125 938.234375 -714.828125 952.28125 -714.828125 C 969.453125 -714.828125 969.453125 -718.203125 969.453125 -748.703125 Z M 969.453125 -1150.15625 "/>
|
||||||
|
</g>
|
||||||
|
<g id="glyph-0-1">
|
||||||
|
<path d="M 843 -387.90625 C 843 -160.921875 707.1875 -16.9375 558.875 -16.9375 C 479.265625 -16.9375 407.453125 -62.671875 363.734375 -133.8125 C 313.78125 -215.125 307.53125 -320.140625 307.53125 -379.4375 L 307.53125 -1036.65625 C 307.53125 -1112.890625 324.703125 -1112.890625 432.421875 -1112.890625 L 432.421875 -1156.921875 C 387.15625 -1153.546875 304.421875 -1153.546875 256.015625 -1153.546875 C 207.625 -1153.546875 124.890625 -1153.546875 79.609375 -1156.921875 L 79.609375 -1112.890625 C 187.328125 -1112.890625 204.5 -1112.890625 204.5 -1036.65625 L 204.5 -387.90625 C 204.5 -143.984375 374.671875 27.109375 555.75 27.109375 C 758.703125 27.109375 875.78125 -198.1875 875.78125 -364.1875 L 875.78125 -1007.859375 C 875.78125 -1102.71875 955.40625 -1112.890625 1000.671875 -1112.890625 L 1000.671875 -1156.921875 C 964.765625 -1153.546875 899.203125 -1153.546875 860.171875 -1153.546875 C 821.140625 -1153.546875 754.015625 -1153.546875 718.109375 -1156.921875 L 718.109375 -1112.890625 C 843 -1112.890625 843 -1033.265625 843 -990.921875 Z M 843 -387.90625 "/>
|
||||||
|
</g>
|
||||||
|
<g id="glyph-0-2">
|
||||||
|
<path d="M 309.09375 -543.734375 L 558.875 -543.734375 C 760.265625 -543.734375 907 -686.03125 907 -846.9375 C 907 -1007.859375 763.375 -1156.921875 558.875 -1156.921875 L 81.171875 -1156.921875 L 81.171875 -1112.890625 C 188.890625 -1112.890625 206.0625 -1112.890625 206.0625 -1036.65625 L 206.0625 -120.265625 C 206.0625 -44.046875 188.890625 -44.046875 81.171875 -44.046875 L 81.171875 0 C 126.453125 -3.390625 209.1875 -3.390625 257.578125 -3.390625 C 305.984375 -3.390625 388.71875 -3.390625 433.984375 0 L 433.984375 -44.046875 C 326.265625 -44.046875 309.09375 -44.046875 309.09375 -120.265625 Z M 305.984375 -579.3125 L 305.984375 -1046.828125 C 305.984375 -1104.421875 309.09375 -1112.890625 371.546875 -1112.890625 L 529.21875 -1112.890625 C 730.59375 -1112.890625 788.359375 -987.53125 788.359375 -846.9375 C 788.359375 -692.796875 719.671875 -579.3125 529.21875 -579.3125 Z M 305.984375 -579.3125 "/>
|
||||||
|
</g>
|
||||||
|
<g id="glyph-0-3">
|
||||||
|
<path d="M 683.765625 -1150.15625 C 683.765625 -1180.640625 682.203125 -1182.328125 672.84375 -1182.328125 C 663.46875 -1182.328125 660.34375 -1175.5625 654.109375 -1160.3125 L 607.265625 -1048.515625 C 547.953125 -1141.6875 457.40625 -1184.03125 359.0625 -1184.03125 C 199.828125 -1184.03125 71.8125 -1046.828125 71.8125 -874.046875 C 71.8125 -821.53125 82.734375 -747 135.8125 -675.859375 C 193.578125 -597.9375 248.21875 -584.390625 373.109375 -548.828125 C 419.9375 -535.265625 498 -513.25 513.609375 -506.46875 C 602.59375 -465.8125 649.421875 -364.1875 649.421875 -269.328125 C 649.421875 -147.375 569.8125 -16.9375 433.984375 -16.9375 C 266.953125 -16.9375 110.84375 -118.578125 99.90625 -355.71875 C 98.34375 -382.8125 96.78125 -384.515625 85.859375 -384.515625 C 73.375 -384.515625 71.8125 -382.8125 71.8125 -348.9375 L 71.8125 -6.78125 C 71.8125 23.71875 73.375 25.40625 82.734375 25.40625 C 93.671875 25.40625 96.78125 16.9375 118.640625 -35.578125 C 120.203125 -40.65625 120.203125 -44.046875 149.859375 -108.40625 C 227.921875 3.390625 359.0625 27.109375 433.984375 27.109375 C 604.15625 27.109375 724.359375 -127.046875 724.359375 -306.59375 C 724.359375 -394.671875 694.6875 -462.4375 677.515625 -492.921875 C 611.953125 -601.328125 541.703125 -621.65625 466.765625 -641.984375 C 455.84375 -647.0625 452.71875 -647.0625 365.296875 -670.78125 C 281 -694.5 245.09375 -706.359375 206.0625 -752.09375 C 162.359375 -804.59375 146.75 -858.796875 146.75 -913 C 146.75 -1023.109375 227.921875 -1143.375 360.609375 -1143.375 C 526.09375 -1143.375 629.125 -1016.328125 652.546875 -804.59375 C 657.234375 -774.109375 658.78125 -772.421875 669.71875 -772.421875 C 683.765625 -772.421875 683.765625 -777.5 683.765625 -806.296875 Z M 683.765625 -1150.15625 "/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</defs>
|
||||||
|
<path fill-rule="evenodd" fill="rgb(0%, 100%, 0%)" fill-opacity="1" stroke-width="0.4" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2992 1504 C 3120 1584 3392 1584 3610.667969 1384 C 3829.332031 1184 3994.667969 784 3629.332031 528 C 3264 272 2368 160 2349.332031 90.667969 C 2330.667969 21.332031 3189.332031 -5.332031 3386.667969 149.332031 C 3584 304 3120 640 3202.667969 701.332031 C 3285.332031 762.667969 3914.667969 549.332031 3938.667969 512 C 3962.667969 474.667969 3381.332031 613.332031 3082.667969 754.667969 C 2784 896 2768 1040 2784 1098.667969 C 2800 1157.332031 2848 1130.667969 2864 1197.332031 C 2880 1264 2864 1424 2992 1504 Z M 2992 1504 " transform="matrix(1, 0, 0, -1, 1020, 2393)"/>
|
||||||
|
<path fill-rule="evenodd" fill="rgb(100%, 84.3%, 0%)" fill-opacity="1" stroke-width="0.4" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1712 880 L 1792 1392 L 2608 1296 L 1920 -16 L 2320 1600 L 3408 496 L 1584 1344 L 3088 1552 L 2048 672 L 1200 -336 L 1424 1776 L 2592 160 L 3488 976 L 1712 768 Z M 1712 880 " transform="matrix(1, 0, 0, -1, 1020, 2393)"/>
|
||||||
|
<path fill-rule="evenodd" fill="rgb(100%, 0%, 0%)" fill-opacity="1" stroke-width="0.4" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -194.667969 1498.667969 C -149.332031 1344 53.332031 1152 400 1240 C 746.667969 1328 1237.332031 1696 1413.332031 1552 C 1589.332031 1408 1450.667969 752 1106.667969 461.332031 C 762.667969 170.667969 213.332031 245.332031 312 549.332031 C 410.667969 853.332031 1157.332031 1386.667969 1562.667969 1384 C 1968 1381.332031 2032 842.667969 2008 562.667969 C 1984 282.667969 1872 261.332031 1520 525.332031 C 1168 789.332031 576 1338.667969 224 1554.667969 C -128 1770.667969 -240 1653.332031 -194.667969 1498.667969 Z M -194.667969 1498.667969 " transform="matrix(1, 0, 0, -1, 1020, 2393)"/>
|
||||||
|
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||||
|
<use xlink:href="#glyph-0-0" x="1073.515916" y="2043.721735"/>
|
||||||
|
<use xlink:href="#glyph-0-1" x="2114.779007" y="2043.721735"/>
|
||||||
|
<use xlink:href="#glyph-0-2" x="3196.631064" y="2043.721735"/>
|
||||||
|
<use xlink:href="#glyph-0-3" x="4177.010706" y="2043.721735"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 7.2 KiB |
103
lapis/static/logo_cut.svg
Normal file
103
lapis/static/logo_cut.svg
Normal file
|
|
@ -0,0 +1,103 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
width="4144.0171"
|
||||||
|
height="2112.3999"
|
||||||
|
viewBox="0 0 4144.0171 2112.3999"
|
||||||
|
version="1.1"
|
||||||
|
id="svg10"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<defs
|
||||||
|
id="defs4">
|
||||||
|
<g
|
||||||
|
id="g4">
|
||||||
|
<g
|
||||||
|
id="glyph-0-0">
|
||||||
|
<path
|
||||||
|
d="m 969.45312,-1150.1563 c 0,-30.4843 -1.5625,-32.1718 -10.9375,-32.1718 -6.23437,0 -7.79687,1.6875 -18.73437,22.0156 l -68.6875,142.2813 c -76.48438,-105.0157 -170.15625,-166.0001 -290.35938,-166.0001 -266.95312,0 -508.92187,255.7813 -508.92187,604.7188 0,352.32813 241.96875,606.421875 510.48437,606.421875 238.84375,0 387.15625,-228.687495 387.15625,-423.484375 0,-16.9375 0,-23.70312 -14.04687,-23.70312 -12.5,0 -12.5,5.07812 -14.0625,20.3125 C 928.85937,-162.60937 772.75,-16.9375 604.15625,-16.9375 c -159.23438,0 -413.70313,-121.96875 -413.70313,-562.375 0,-442.1094 259.14063,-560.6719 410.57813,-560.6719 176.40625,0 304.40625,166.00003 334.07812,401.45315 3.125,20.32813 3.125,23.70313 17.17188,23.70313 17.17187,0 17.17187,-3.375 17.17187,-33.875 z m 0,0"
|
||||||
|
id="path1" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="glyph-0-1">
|
||||||
|
<path
|
||||||
|
d="m 843,-387.90625 c 0,226.98438 -135.8125,370.96875 -284.125,370.96875 -79.60938,0 -151.42188,-45.734375 -195.14063,-116.875 -49.95312,-81.3125 -56.20312,-186.32812 -56.20312,-245.625 v -657.2188 c 0,-76.2343 17.17187,-76.2343 124.89062,-76.2343 v -44.0313 c -45.26562,3.375 -128,3.375 -176.40625,3.375 -48.39062,0 -131.12499,0 -176.406245,-3.375 v 44.0313 c 107.718745,0 124.890625,0 124.890625,76.2343 v 648.75005 c 0,243.92188 170.17187,415.015625 351.25,415.015625 202.95312,0 320.03125,-225.296875 320.03125,-391.296875 v -643.6719 c 0,-94.8594 79.625,-105.0312 124.89065,-105.0312 v -44.0313 c -35.90628,3.375 -101.46878,3.375 -140.50003,3.375 -39.03125,0 -106.15625,0 -142.0625,-3.375 v 44.0313 C 843,-1112.8906 843,-1033.2656 843,-990.92187 Z m 0,0"
|
||||||
|
id="path2" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="glyph-0-2">
|
||||||
|
<path
|
||||||
|
d="M 309.09375,-543.73437 H 558.875 c 201.39062,0 348.125,-142.29688 348.125,-303.20313 0,-160.9219 -143.625,-309.9844 -348.125,-309.9844 H 81.171875 v 44.0313 c 107.718745,0 124.890625,0 124.890625,76.2343 v 916.39067 c 0,76.218755 -17.17188,76.218755 -124.890625,76.218755 V 0 C 126.45313,-3.390625 209.1875,-3.390625 257.57812,-3.390625 c 48.40625,0 131.14063,0 176.40625,3.390625 v -44.046875 c -107.71875,0 -124.89062,0 -124.89062,-76.218755 z m -3.10938,-35.57813 v -467.5156 c 0,-57.5938 3.10938,-66.0625 65.5625,-66.0625 h 157.67188 c 201.375,0 259.14062,125.35935 259.14062,265.9531 0,154.14063 -68.6875,267.625 -259.14062,267.625 z m 0,0"
|
||||||
|
id="path3" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="glyph-0-3">
|
||||||
|
<path
|
||||||
|
d="m 683.76562,-1150.1563 c 0,-30.4843 -1.5625,-32.1718 -10.92187,-32.1718 -9.375,0 -12.5,6.7656 -18.73438,22.0156 l -46.84375,111.7969 c -59.3125,-93.1719 -149.85937,-135.5157 -248.20312,-135.5157 -159.23438,0 -287.25,137.2032 -287.25,309.98443 0,52.51562 10.921875,127.04687 64,198.1875 57.76562,77.92187 112.40625,91.46875 237.29687,127.03125 46.82813,13.5625 124.89063,35.57812 140.5,42.35937 88.98438,40.65625 135.8125,142.28125 135.8125,237.14063 0,121.95312 -79.60937,252.39062 -215.4375,252.39062 -167.03125,0 -323.14062,-101.64063 -334.07812,-338.78125 -1.5625,-27.09375 -3.125,-28.79687 -14.046875,-28.79687 -12.484375,0 -14.046875,1.70312 -14.046875,35.57812 V -6.78125 c 0,30.5 1.5625,32.1875 10.921875,32.1875 10.9375,0 14.046875,-8.46875 35.906255,-60.984375 1.5625,-5.078125 1.5625,-8.46875 31.21874,-72.828125 78.0625,111.796875 209.20313,135.515625 284.125,135.515625 170.17188,0 290.375,-154.156255 290.375,-333.703125 0,-88.07812 -29.67187,-155.84375 -46.84375,-186.32812 -65.5625,-108.40625 -135.8125,-128.73438 -210.75,-149.0625 -10.92187,-5.07813 -14.04687,-5.07813 -101.46875,-28.79688 C 281,-694.5 245.09375,-706.35937 206.0625,-752.09375 162.35937,-804.59375 146.75,-858.79687 146.75,-913 c 0,-110.1094 81.17187,-230.375 213.85937,-230.375 165.48438,0 268.51563,127.0469 291.9375,338.78125 4.6875,30.48438 6.23438,32.17188 17.17188,32.17188 14.04687,0 14.04687,-5.07813 14.04687,-33.875 z m 0,0"
|
||||||
|
id="path4" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</defs>
|
||||||
|
<path
|
||||||
|
fill-rule="evenodd"
|
||||||
|
fill="#00ff00"
|
||||||
|
fill-opacity="1"
|
||||||
|
stroke-width="0.4"
|
||||||
|
stroke-linecap="butt"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-opacity="1"
|
||||||
|
stroke-miterlimit="10"
|
||||||
|
d="m 3196.4305,272.19995 c 128,-80 400,-80 618.668,120 218.664,200 384,600 18.664,856.00005 -365.332,256 -1261.332,368 -1280,437.332 -18.664,69.3359 840,96 1037.336,-58.6641 197.332,-154.6679 -266.668,-490.6679 -184,-552 82.664,-61.3359 712,152 736,189.3321 24,37.332 -557.336,-101.3321 -856,-242.668 -298.668,-141.33205 -314.668,-285.33205 -298.668,-344.00005 16,-58.664 64,-32 80,-98.664 16,-66.668 0,-226.668 128,-306.668 z m 0,0"
|
||||||
|
id="path5" />
|
||||||
|
<path
|
||||||
|
fill-rule="evenodd"
|
||||||
|
fill="#ffd700"
|
||||||
|
fill-opacity="1"
|
||||||
|
stroke-width="0.4"
|
||||||
|
stroke-linecap="butt"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-opacity="1"
|
||||||
|
stroke-miterlimit="10"
|
||||||
|
d="m 1916.4305,896.19995 80,-512 816,96 -688,1312.00005 400,-1616.00005 1088,1104.00005 -1824,-848.00005 1504,-208 -1040,880.00005 -848,1008 224,-2112.00004951 1168,1616.00004951 896,-816.00005 -1776,208.00005 z m 0,0"
|
||||||
|
id="path6" />
|
||||||
|
<path
|
||||||
|
fill-rule="evenodd"
|
||||||
|
fill="#ff0000"
|
||||||
|
fill-opacity="1"
|
||||||
|
stroke-width="0.4"
|
||||||
|
stroke-linecap="butt"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-opacity="1"
|
||||||
|
stroke-miterlimit="10"
|
||||||
|
d="m 9.762574,277.53195 c 45.33594,154.668 247.999996,346.668 594.667966,258.668 346.66797,-88 837.33196,-456 1013.33196,-312 176,144 37.336,800.00005 -306.664,1090.66795 -343.99999,290.6641 -893.33593,216 -794.66796,-88 98.66797,-303.99998 845.33196,-837.33595 1250.66796,-834.66795 405.332,2.668 469.332,541.33203 445.332,821.33205 -24,280 -136,301.3359 -488,37.3359 -352,-263.99998 -943.99996,-813.33595 -1295.99996,-1029.33595 -351.999996,-215.9999995 -463.999996,-98.664 -418.667966,56 z m 0,0"
|
||||||
|
id="path7" />
|
||||||
|
<g
|
||||||
|
fill="#000000"
|
||||||
|
fill-opacity="1"
|
||||||
|
id="g10"
|
||||||
|
transform="translate(-815.56946,-616.80005)">
|
||||||
|
<use
|
||||||
|
xlink:href="#glyph-0-0"
|
||||||
|
x="1073.5159"
|
||||||
|
y="2043.7217"
|
||||||
|
id="use7" />
|
||||||
|
<use
|
||||||
|
xlink:href="#glyph-0-1"
|
||||||
|
x="2114.7791"
|
||||||
|
y="2043.7217"
|
||||||
|
id="use8" />
|
||||||
|
<use
|
||||||
|
xlink:href="#glyph-0-2"
|
||||||
|
x="3196.6311"
|
||||||
|
y="2043.7217"
|
||||||
|
id="use9" />
|
||||||
|
<use
|
||||||
|
xlink:href="#glyph-0-3"
|
||||||
|
x="4177.0107"
|
||||||
|
y="2043.7217"
|
||||||
|
id="use10" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 6.6 KiB |
28
logo.svg
Normal file
28
logo.svg
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="6049" height="4088" viewBox="0 0 6049 4088">
|
||||||
|
<defs>
|
||||||
|
<g>
|
||||||
|
<g id="glyph-0-0">
|
||||||
|
<path d="M 969.453125 -1150.15625 C 969.453125 -1180.640625 967.890625 -1182.328125 958.515625 -1182.328125 C 952.28125 -1182.328125 950.71875 -1180.640625 939.78125 -1160.3125 L 871.09375 -1018.03125 C 794.609375 -1123.046875 700.9375 -1184.03125 580.734375 -1184.03125 C 313.78125 -1184.03125 71.8125 -928.25 71.8125 -579.3125 C 71.8125 -226.984375 313.78125 27.109375 582.296875 27.109375 C 821.140625 27.109375 969.453125 -201.578125 969.453125 -396.375 C 969.453125 -413.3125 969.453125 -420.078125 955.40625 -420.078125 C 942.90625 -420.078125 942.90625 -415 941.34375 -399.765625 C 928.859375 -162.609375 772.75 -16.9375 604.15625 -16.9375 C 444.921875 -16.9375 190.453125 -138.90625 190.453125 -579.3125 C 190.453125 -1021.421875 449.59375 -1139.984375 601.03125 -1139.984375 C 777.4375 -1139.984375 905.4375 -973.984375 935.109375 -738.53125 C 938.234375 -718.203125 938.234375 -714.828125 952.28125 -714.828125 C 969.453125 -714.828125 969.453125 -718.203125 969.453125 -748.703125 Z M 969.453125 -1150.15625 "/>
|
||||||
|
</g>
|
||||||
|
<g id="glyph-0-1">
|
||||||
|
<path d="M 843 -387.90625 C 843 -160.921875 707.1875 -16.9375 558.875 -16.9375 C 479.265625 -16.9375 407.453125 -62.671875 363.734375 -133.8125 C 313.78125 -215.125 307.53125 -320.140625 307.53125 -379.4375 L 307.53125 -1036.65625 C 307.53125 -1112.890625 324.703125 -1112.890625 432.421875 -1112.890625 L 432.421875 -1156.921875 C 387.15625 -1153.546875 304.421875 -1153.546875 256.015625 -1153.546875 C 207.625 -1153.546875 124.890625 -1153.546875 79.609375 -1156.921875 L 79.609375 -1112.890625 C 187.328125 -1112.890625 204.5 -1112.890625 204.5 -1036.65625 L 204.5 -387.90625 C 204.5 -143.984375 374.671875 27.109375 555.75 27.109375 C 758.703125 27.109375 875.78125 -198.1875 875.78125 -364.1875 L 875.78125 -1007.859375 C 875.78125 -1102.71875 955.40625 -1112.890625 1000.671875 -1112.890625 L 1000.671875 -1156.921875 C 964.765625 -1153.546875 899.203125 -1153.546875 860.171875 -1153.546875 C 821.140625 -1153.546875 754.015625 -1153.546875 718.109375 -1156.921875 L 718.109375 -1112.890625 C 843 -1112.890625 843 -1033.265625 843 -990.921875 Z M 843 -387.90625 "/>
|
||||||
|
</g>
|
||||||
|
<g id="glyph-0-2">
|
||||||
|
<path d="M 309.09375 -543.734375 L 558.875 -543.734375 C 760.265625 -543.734375 907 -686.03125 907 -846.9375 C 907 -1007.859375 763.375 -1156.921875 558.875 -1156.921875 L 81.171875 -1156.921875 L 81.171875 -1112.890625 C 188.890625 -1112.890625 206.0625 -1112.890625 206.0625 -1036.65625 L 206.0625 -120.265625 C 206.0625 -44.046875 188.890625 -44.046875 81.171875 -44.046875 L 81.171875 0 C 126.453125 -3.390625 209.1875 -3.390625 257.578125 -3.390625 C 305.984375 -3.390625 388.71875 -3.390625 433.984375 0 L 433.984375 -44.046875 C 326.265625 -44.046875 309.09375 -44.046875 309.09375 -120.265625 Z M 305.984375 -579.3125 L 305.984375 -1046.828125 C 305.984375 -1104.421875 309.09375 -1112.890625 371.546875 -1112.890625 L 529.21875 -1112.890625 C 730.59375 -1112.890625 788.359375 -987.53125 788.359375 -846.9375 C 788.359375 -692.796875 719.671875 -579.3125 529.21875 -579.3125 Z M 305.984375 -579.3125 "/>
|
||||||
|
</g>
|
||||||
|
<g id="glyph-0-3">
|
||||||
|
<path d="M 683.765625 -1150.15625 C 683.765625 -1180.640625 682.203125 -1182.328125 672.84375 -1182.328125 C 663.46875 -1182.328125 660.34375 -1175.5625 654.109375 -1160.3125 L 607.265625 -1048.515625 C 547.953125 -1141.6875 457.40625 -1184.03125 359.0625 -1184.03125 C 199.828125 -1184.03125 71.8125 -1046.828125 71.8125 -874.046875 C 71.8125 -821.53125 82.734375 -747 135.8125 -675.859375 C 193.578125 -597.9375 248.21875 -584.390625 373.109375 -548.828125 C 419.9375 -535.265625 498 -513.25 513.609375 -506.46875 C 602.59375 -465.8125 649.421875 -364.1875 649.421875 -269.328125 C 649.421875 -147.375 569.8125 -16.9375 433.984375 -16.9375 C 266.953125 -16.9375 110.84375 -118.578125 99.90625 -355.71875 C 98.34375 -382.8125 96.78125 -384.515625 85.859375 -384.515625 C 73.375 -384.515625 71.8125 -382.8125 71.8125 -348.9375 L 71.8125 -6.78125 C 71.8125 23.71875 73.375 25.40625 82.734375 25.40625 C 93.671875 25.40625 96.78125 16.9375 118.640625 -35.578125 C 120.203125 -40.65625 120.203125 -44.046875 149.859375 -108.40625 C 227.921875 3.390625 359.0625 27.109375 433.984375 27.109375 C 604.15625 27.109375 724.359375 -127.046875 724.359375 -306.59375 C 724.359375 -394.671875 694.6875 -462.4375 677.515625 -492.921875 C 611.953125 -601.328125 541.703125 -621.65625 466.765625 -641.984375 C 455.84375 -647.0625 452.71875 -647.0625 365.296875 -670.78125 C 281 -694.5 245.09375 -706.359375 206.0625 -752.09375 C 162.359375 -804.59375 146.75 -858.796875 146.75 -913 C 146.75 -1023.109375 227.921875 -1143.375 360.609375 -1143.375 C 526.09375 -1143.375 629.125 -1016.328125 652.546875 -804.59375 C 657.234375 -774.109375 658.78125 -772.421875 669.71875 -772.421875 C 683.765625 -772.421875 683.765625 -777.5 683.765625 -806.296875 Z M 683.765625 -1150.15625 "/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</defs>
|
||||||
|
<path fill-rule="evenodd" fill="rgb(0%, 100%, 0%)" fill-opacity="1" stroke-width="0.4" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2992 1504 C 3120 1584 3392 1584 3610.667969 1384 C 3829.332031 1184 3994.667969 784 3629.332031 528 C 3264 272 2368 160 2349.332031 90.667969 C 2330.667969 21.332031 3189.332031 -5.332031 3386.667969 149.332031 C 3584 304 3120 640 3202.667969 701.332031 C 3285.332031 762.667969 3914.667969 549.332031 3938.667969 512 C 3962.667969 474.667969 3381.332031 613.332031 3082.667969 754.667969 C 2784 896 2768 1040 2784 1098.667969 C 2800 1157.332031 2848 1130.667969 2864 1197.332031 C 2880 1264 2864 1424 2992 1504 Z M 2992 1504 " transform="matrix(1, 0, 0, -1, 1020, 2393)"/>
|
||||||
|
<path fill-rule="evenodd" fill="rgb(100%, 84.3%, 0%)" fill-opacity="1" stroke-width="0.4" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1712 880 L 1792 1392 L 2608 1296 L 1920 -16 L 2320 1600 L 3408 496 L 1584 1344 L 3088 1552 L 2048 672 L 1200 -336 L 1424 1776 L 2592 160 L 3488 976 L 1712 768 Z M 1712 880 " transform="matrix(1, 0, 0, -1, 1020, 2393)"/>
|
||||||
|
<path fill-rule="evenodd" fill="rgb(100%, 0%, 0%)" fill-opacity="1" stroke-width="0.4" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -194.667969 1498.667969 C -149.332031 1344 53.332031 1152 400 1240 C 746.667969 1328 1237.332031 1696 1413.332031 1552 C 1589.332031 1408 1450.667969 752 1106.667969 461.332031 C 762.667969 170.667969 213.332031 245.332031 312 549.332031 C 410.667969 853.332031 1157.332031 1386.667969 1562.667969 1384 C 1968 1381.332031 2032 842.667969 2008 562.667969 C 1984 282.667969 1872 261.332031 1520 525.332031 C 1168 789.332031 576 1338.667969 224 1554.667969 C -128 1770.667969 -240 1653.332031 -194.667969 1498.667969 Z M -194.667969 1498.667969 " transform="matrix(1, 0, 0, -1, 1020, 2393)"/>
|
||||||
|
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||||
|
<use xlink:href="#glyph-0-0" x="1073.515916" y="2043.721735"/>
|
||||||
|
<use xlink:href="#glyph-0-1" x="2114.779007" y="2043.721735"/>
|
||||||
|
<use xlink:href="#glyph-0-2" x="3196.631064" y="2043.721735"/>
|
||||||
|
<use xlink:href="#glyph-0-3" x="4177.010706" y="2043.721735"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 7.2 KiB |
Loading…
Add table
Add a link
Reference in a new issue