tasks: shared task board with sticker rewards, difficulty levels, and calendar
Some checks failed
CI / update (push) Has been cancelled

Complete household task management system behind task_users auth group:
- Task CRUD with recurring schedules, assignees, tags, and optional difficulty
- Blobcat SVG sticker rewards on completion, rarity weighted by difficulty
- Sticker collection page with calendar view and progress tracking
- Redesigned cards with left accent urgency strip, assignee PFP, round check button
- Weekday-based due date labels for tasks within 7 days
- Tasks link added to homepage LinksGrid
This commit is contained in:
2026-04-02 07:32:53 +02:00
parent 3cafe8955a
commit 9027dd9881
69 changed files with 11158 additions and 1 deletions

View File

@@ -17,6 +17,14 @@ After calling the list-sections tool, you MUST analyze the returned documentatio
Analyzes Svelte code and returns issues and suggestions. Analyzes Svelte code and returns issues and suggestions.
You MUST use this tool whenever writing Svelte code before sending it to the user. Keep calling it until no issues or suggestions are returned. You MUST use this tool whenever writing Svelte code before sending it to the user. Keep calling it until no issues or suggestions are returned.
## Common Svelte 5 Pitfalls
### `{@const}` placement
`{@const}` can ONLY be the immediate child of `{#snippet}`, `{#if}`, `{:else if}`, `{:else}`, `{#each}`, `{:then}`, `{:catch}`, `<svelte:fragment>`, `<svelte:boundary>` or `<Component>`. It CANNOT be used directly inside regular HTML elements like `<div>`, `<header>`, etc. Use `$derived` in the `<script>` block instead.
### Event modifiers removed
Svelte 5 removed event modifiers like `on:click|preventDefault`. Use inline handlers instead: `onclick={e => { e.preventDefault(); handler(); }}`.
### 4. playground-link ### 4. playground-link
Generates a Svelte Playground link with the provided code. Generates a Svelte Playground link with the provided code.

View File

@@ -56,6 +56,24 @@ async function authorization({ event, resolve }: Parameters<Handle>[0]) {
} }
} }
// Protect tasks routes and API endpoints
if (event.url.pathname.startsWith('/tasks') || event.url.pathname.startsWith('/api/tasks')) {
if (!session) {
if (event.url.pathname.startsWith('/api/tasks')) {
error(401, {
message: 'Anmeldung erforderlich.'
});
}
const callbackUrl = encodeURIComponent(event.url.pathname + event.url.search);
redirect(303, `/login?callbackUrl=${callbackUrl}`);
}
else if (!session.user?.groups?.includes('task_users')) {
error(403, {
message: 'Zugriff verweigert. Du hast keine Berechtigung für diesen Bereich. Falls du glaubst, dass dies ein Fehler ist, wende dich bitte an Alexander.'
});
}
}
// Protect fitness routes and API endpoints // Protect fitness routes and API endpoints
if (event.url.pathname.startsWith('/fitness') || event.url.pathname.startsWith('/api/fitness')) { if (event.url.pathname.startsWith('/fitness') || event.url.pathname.startsWith('/api/fitness')) {
if (!session) { if (!session) {

View File

@@ -0,0 +1,254 @@
<script>
import { ChevronLeft, ChevronRight } from 'lucide-svelte';
import { getStickerById } from '$lib/utils/stickers';
import {
startOfMonth, endOfMonth, startOfWeek, endOfWeek,
eachDayOfInterval, isSameMonth, isSameDay, isToday, format, addMonths, subMonths
} from 'date-fns';
import { de } from 'date-fns/locale';
let { completions = [], currentUser = '' } = $props();
let viewDate = $state(new Date());
let filteredCompletions = $derived(
completions
.filter((/** @type {any} */ c) => c.stickerId)
.filter((/** @type {any} */ c) => !currentUser || c.completedBy === currentUser)
);
// Build a map: "YYYY-MM-DD" -> sticker ids[]
let stickersByDate = $derived.by(() => {
/** @type {Map<string, any[]>} */
const map = new Map();
for (const c of filteredCompletions) {
const key = format(new Date(c.completedAt), 'yyyy-MM-dd');
if (!map.has(key)) map.set(key, []);
map.get(key)?.push(c);
}
return map;
});
let calendarDays = $derived.by(() => {
const monthStart = startOfMonth(viewDate);
const monthEnd = endOfMonth(viewDate);
const calStart = startOfWeek(monthStart, { locale: de });
const calEnd = endOfWeek(monthEnd, { locale: de });
return eachDayOfInterval({ start: calStart, end: calEnd });
});
let monthLabel = $derived(format(viewDate, 'MMMM yyyy', { locale: de }));
const weekdays = ['Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa', 'So'];
function prevMonth() { viewDate = subMonths(viewDate, 1); }
function nextMonth() { viewDate = addMonths(viewDate, 1); }
</script>
<div class="cal-container">
<div class="cal-header">
<button class="cal-nav" onclick={prevMonth}><ChevronLeft size={18} /></button>
<span class="cal-month">{monthLabel}</span>
<button class="cal-nav" onclick={nextMonth}><ChevronRight size={18} /></button>
</div>
<div class="cal-grid">
{#each weekdays as day}
<div class="cal-weekday">{day}</div>
{/each}
{#each calendarDays as day}
{@const key = format(day, 'yyyy-MM-dd')}
{@const dayStickers = stickersByDate.get(key) || []}
{@const inMonth = isSameMonth(day, viewDate)}
<div
class="cal-day"
class:outside={!inMonth}
class:today={isToday(day)}
class:has-stickers={dayStickers.length > 0}
>
<span class="cal-day-num">{format(day, 'd')}</span>
{#if dayStickers.length > 0}
<div class="cal-stickers">
{#each dayStickers.slice(0, 6) as completion}
{@const sticker = getStickerById(completion.stickerId)}
{#if sticker}
<img
class="cal-sticker-img"
src="/stickers/{sticker.image}"
alt={sticker.name}
title="{sticker.name} {completion.taskTitle}"
/>
{/if}
{/each}
{#if dayStickers.length > 6}
<span class="cal-more">+{dayStickers.length - 6}</span>
{/if}
</div>
{/if}
</div>
{/each}
</div>
</div>
<style>
.cal-container {
background: var(--color-bg-primary, white);
border: 1px solid var(--color-border, #e8e4dd);
border-radius: 14px;
padding: 1rem;
margin-bottom: 2rem;
}
.cal-header {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
margin-bottom: 0.75rem;
}
.cal-month {
font-size: 1rem;
font-weight: 700;
text-transform: capitalize;
min-width: 160px;
text-align: center;
}
.cal-nav {
display: flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
border: none;
background: transparent;
color: var(--color-text-secondary, #888);
border-radius: 8px;
cursor: pointer;
transition: all 120ms;
}
.cal-nav:hover {
background: var(--color-bg-secondary, #f0ede6);
color: var(--color-text-primary, #333);
}
.cal-grid {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 1px;
}
.cal-weekday {
text-align: center;
font-size: 0.68rem;
font-weight: 700;
color: var(--color-text-secondary, #999);
padding: 0.3rem 0;
text-transform: uppercase;
letter-spacing: 0.03em;
}
.cal-day {
position: relative;
min-height: 80px;
padding: 0.3rem;
border-radius: 8px;
border: 1px solid transparent;
transition: background 120ms;
overflow: hidden;
}
.cal-day.outside {
opacity: 0.25;
}
.cal-day.today {
background: rgba(94, 129, 172, 0.08);
border-color: rgba(94, 129, 172, 0.2);
}
.cal-day.today .cal-day-num {
background: var(--nord10);
color: white;
border-radius: 50%;
width: 20px;
height: 20px;
display: inline-flex;
align-items: center;
justify-content: center;
}
.cal-day.has-stickers {
background: rgba(163, 190, 140, 0.06);
}
.cal-day-num {
font-size: 0.7rem;
font-weight: 600;
color: var(--color-text-secondary, #888);
line-height: 1;
display: block;
margin-bottom: 0.2rem;
}
.cal-stickers {
display: flex;
flex-wrap: wrap;
gap: 3px;
align-items: center;
}
.cal-sticker-img {
width: 28px;
height: 28px;
object-fit: contain;
transition: transform 150ms;
cursor: default;
}
.cal-sticker-img:hover {
transform: scale(2);
z-index: 10;
position: relative;
filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}
.cal-more {
font-size: 0.6rem;
font-weight: 700;
color: var(--color-text-secondary, #aaa);
display: flex;
align-items: center;
padding-left: 2px;
}
/* Dark mode */
@media (prefers-color-scheme: dark) {
:global(:root:not([data-theme="light"])) .cal-container {
background: var(--nord1);
border-color: var(--nord2);
}
:global(:root:not([data-theme="light"])) .cal-nav:hover {
background: var(--nord2);
}
:global(:root:not([data-theme="light"])) .cal-day.today {
background: rgba(94, 129, 172, 0.12);
}
:global(:root:not([data-theme="light"])) .cal-day.has-stickers {
background: rgba(163, 190, 140, 0.08);
}
}
:global(:root[data-theme="dark"]) .cal-container {
background: var(--nord1);
border-color: var(--nord2);
}
:global(:root[data-theme="dark"]) .cal-nav:hover {
background: var(--nord2);
}
:global(:root[data-theme="dark"]) .cal-day.today {
background: rgba(94, 129, 172, 0.12);
}
:global(:root[data-theme="dark"]) .cal-day.has-stickers {
background: rgba(163, 190, 140, 0.08);
}
@media (max-width: 500px) {
.cal-day { min-height: 56px; padding: 0.2rem; }
.cal-sticker-img { width: 22px; height: 22px; }
.cal-stickers { gap: 2px; }
.cal-month { font-size: 0.9rem; min-width: 130px; }
}
</style>

View File

@@ -0,0 +1,121 @@
<script>
import { scale, fade } from 'svelte/transition';
import { elasticOut } from 'svelte/easing';
import { getRarityColor } from '$lib/utils/stickers';
let { sticker, onclose } = $props();
const rarityLabels = /** @type {Record<string, string>} */ ({
common: 'Gewöhnlich',
uncommon: 'Ungewöhnlich',
rare: 'Selten',
legendary: 'Legendär'
});
</script>
<!-- svelte-ignore a11y_no_static_element_interactions -->
<div class="popup-backdrop" transition:fade={{ duration: 200 }} onclick={onclose} onkeydown={e => e.key === 'Escape' && onclose?.()}>
<!-- svelte-ignore a11y_no_static_element_interactions -->
<div class="popup-card" transition:scale={{ start: 0.5, duration: 500, easing: elasticOut }} onclick={e => e.stopPropagation()}>
<div class="sticker-display" style="--rarity-color: {getRarityColor(sticker.rarity)}">
<img class="sticker-img" src="/stickers/{sticker.image}" alt={sticker.name} />
</div>
<div class="popup-text">
<h3>Sticker erhalten!</h3>
<p class="sticker-name">{sticker.name}</p>
<p class="sticker-desc">{sticker.description}</p>
<span class="rarity-badge" style="color: {getRarityColor(sticker.rarity)}">
{rarityLabels[sticker.rarity] || sticker.rarity}
</span>
</div>
<button class="btn-close" onclick={onclose}>Toll!</button>
</div>
</div>
<style>
.popup-backdrop {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.5);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
backdrop-filter: blur(4px);
}
.popup-card {
background: var(--color-bg-primary, white);
border-radius: 20px;
padding: 2rem;
text-align: center;
max-width: 320px;
width: 90%;
box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.sticker-display {
width: 100px;
height: 100px;
margin: 0 auto 1rem;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: radial-gradient(circle, var(--rarity-color, var(--nord13)) 0%, transparent 70%);
opacity: 0.95;
}
.sticker-img {
width: 80px;
height: 80px;
object-fit: contain;
filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}
.popup-text h3 {
margin: 0 0 0.3rem;
font-size: 1.2rem;
font-weight: 700;
color: var(--color-text-primary, #333);
}
.sticker-name {
margin: 0;
font-size: 1rem;
font-weight: 600;
color: var(--nord10);
}
.sticker-desc {
margin: 0.25rem 0 0.5rem;
font-size: 0.82rem;
color: var(--color-text-secondary, #888);
}
.rarity-badge {
font-size: 0.72rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.btn-close {
margin-top: 1.25rem;
padding: 0.6rem 2rem;
border: none;
background: var(--nord10);
color: white;
border-radius: 100px;
font-size: 0.9rem;
font-weight: 600;
cursor: pointer;
transition: background 150ms;
}
.btn-close:hover { background: var(--nord9); }
@media (prefers-color-scheme: dark) {
:global(:root:not([data-theme="light"])) .popup-card {
background: var(--nord1);
}
}
:global(:root[data-theme="dark"]) .popup-card {
background: var(--nord1);
}
</style>

View File

@@ -0,0 +1,698 @@
<script>
import { X, Sparkles, Wind, Bath, UtensilsCrossed, CookingPot, WashingMachine,
Flower2, Droplets, Leaf, ShoppingCart, Trash2, Shirt, Brush } from 'lucide-svelte';
import ProfilePicture from '$lib/components/cospend/ProfilePicture.svelte';
const USERS = ['anna', 'alexander'];
let {
task = null,
onclosed,
onsaved
} = $props();
/** @type {{tag: string, icon: any}[]} */
const AVAILABLE_TAGS = [
{ tag: 'putzen', icon: Sparkles },
{ tag: 'saugen', icon: Wind },
{ tag: 'wischen', icon: Brush },
{ tag: 'bad', icon: Bath },
{ tag: 'küche', icon: UtensilsCrossed },
{ tag: 'kochen', icon: CookingPot },
{ tag: 'abwasch', icon: Droplets },
{ tag: 'wäsche', icon: WashingMachine },
{ tag: 'bügeln', icon: Shirt },
{ tag: 'pflanzen', icon: Flower2 },
{ tag: 'gießen', icon: Droplets },
{ tag: 'düngen', icon: Leaf },
{ tag: 'garten', icon: Leaf },
{ tag: 'einkaufen', icon: ShoppingCart },
{ tag: 'müll', icon: Trash2 },
];
let title = $state(task?.title || '');
let description = $state(task?.description || '');
/** @type {string[]} */
let selectedAssignees = $state(task?.assignees ? [...task.assignees] : []);
/** @type {string[]} */
let selectedTags = $state(task?.tags ? [...task.tags] : []);
let difficulty = $state(task?.difficulty || '');
let isRecurring = $state(task?.isRecurring || false);
let frequencyType = $state(task?.frequency?.type || 'weekly');
let customDays = $state(task?.frequency?.customDays || 7);
let nextDueDate = $state(
task?.nextDueDate
? new Date(task.nextDueDate).toISOString().split('T')[0]
: new Date().toISOString().split('T')[0]
);
let saving = $state(false);
/** @type {string | null} */
let error = $state(null);
// Desktop tag input
let tagInput = $state('');
let tagDropdownOpen = $state(false);
let unselectedTags = $derived(AVAILABLE_TAGS.filter(t => !selectedTags.includes(t.tag)));
let filteredDropdownTags = $derived(
tagInput.trim() === ''
? unselectedTags
: unselectedTags.filter(t => t.tag.includes(tagInput.toLowerCase()))
);
/** @param {string} tag */
function toggleTag(tag) {
if (selectedTags.includes(tag)) {
selectedTags = selectedTags.filter(t => t !== tag);
} else {
selectedTags = [...selectedTags, tag];
}
}
function handleTagInputFocus() {
tagDropdownOpen = true;
}
/** @param {FocusEvent} _event */
function handleTagInputBlur(_event) {
setTimeout(() => {
tagDropdownOpen = false;
tagInput = '';
}, 200);
}
/** @param {KeyboardEvent} event */
function handleTagKeyDown(event) {
if (event.key === 'Enter') {
event.preventDefault();
const value = tagInput.trim().toLowerCase();
const matched = AVAILABLE_TAGS.find(t => t.tag === value) || filteredDropdownTags[0];
if (matched && !selectedTags.includes(matched.tag)) {
toggleTag(matched.tag);
tagInput = '';
}
} else if (event.key === 'Escape') {
tagDropdownOpen = false;
tagInput = '';
}
}
/** @param {string} tag */
function selectDropdownTag(tag) {
toggleTag(tag);
tagInput = '';
tagDropdownOpen = false;
}
/** @param {string} tag */
function getTagIcon(tag) {
return AVAILABLE_TAGS.find(t => t.tag === tag)?.icon;
}
async function handleSubmit() {
if (!title.trim()) { error = 'Titel ist erforderlich'; return; }
saving = true;
error = null;
const payload = {
title: title.trim(),
description: description.trim() || undefined,
assignees: selectedAssignees,
tags: selectedTags,
difficulty: difficulty || undefined,
isRecurring,
frequency: isRecurring ? {
type: frequencyType,
customDays: frequencyType === 'custom' ? customDays : undefined
} : undefined,
nextDueDate
};
const url = task?._id ? `/api/tasks/${task._id}` : '/api/tasks';
const method = task?._id ? 'PUT' : 'POST';
const res = await fetch(url, {
method,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(payload)
});
if (res.ok) {
onsaved?.(new CustomEvent('saved'));
} else {
const data = await res.json().catch(() => ({}));
error = data.message || 'Fehler beim Speichern';
}
saving = false;
}
</script>
<form class="task-form" onsubmit={e => { e.preventDefault(); handleSubmit(); }}>
<div class="form-header">
<h2>{task?._id ? 'Aufgabe bearbeiten' : 'Neue Aufgabe'}</h2>
<button type="button" class="btn-close" onclick={onclosed}><X size={18} /></button>
</div>
{#if error}
<p class="error">{error}</p>
{/if}
<div class="field">
<label for="title">Titel *</label>
<input id="title" type="text" bind:value={title} placeholder="z.B. Staubsaugen" required />
</div>
<div class="field">
<label for="description">Beschreibung</label>
<textarea id="description" bind:value={description} placeholder="Optionale Details..." rows="2"></textarea>
</div>
<div class="field">
<label>Zugewiesen an</label>
<div class="assignee-buttons">
{#each USERS as user}
<button
type="button"
class="assignee-btn"
class:selected={selectedAssignees.includes(user)}
onclick={() => {
if (selectedAssignees.includes(user)) {
selectedAssignees = selectedAssignees.filter(a => a !== user);
} else {
selectedAssignees = [...selectedAssignees, user];
}
}}
>
<ProfilePicture username={user} size={26} />
<span class="assignee-name">{user}</span>
</button>
{/each}
</div>
</div>
<!-- Tags: desktop = input + dropdown, mobile = pill buttons -->
<div class="field">
<label>Tags</label>
<span class="hint">Bestimmen Sticker-Belohnungen</span>
<!-- Desktop: input with dropdown -->
<div class="tag-input-desktop">
<div class="tag-input-wrapper">
<input
type="text"
bind:value={tagInput}
onfocus={handleTagInputFocus}
onblur={handleTagInputBlur}
onkeydown={handleTagKeyDown}
placeholder="Tag eingeben oder auswählen..."
autocomplete="off"
/>
{#if tagDropdownOpen && filteredDropdownTags.length > 0}
<div class="tag-dropdown">
{#each filteredDropdownTags as { tag, icon }}
<button type="button" class="tag-dropdown-item" onclick={() => selectDropdownTag(tag)}>
<svelte:component this={icon} size={14} />
{tag}
</button>
{/each}
</div>
{/if}
</div>
</div>
<!-- Mobile: pill buttons -->
<div class="tag-pills-mobile">
{#each AVAILABLE_TAGS as { tag, icon }}
<button
type="button"
class="tag-pill"
class:selected={selectedTags.includes(tag)}
onclick={() => toggleTag(tag)}
>
<svelte:component this={icon} size={14} />
{tag}
</button>
{/each}
</div>
<!-- Selected tags (shown on desktop below input) -->
{#if selectedTags.length > 0}
<div class="selected-tags">
{#each selectedTags as tag}
{@const Icon = getTagIcon(tag)}
<button type="button" class="tag-chip selected" onclick={() => toggleTag(tag)}>
{#if Icon}
<svelte:component this={Icon} size={13} />
{/if}
{tag}
<span class="remove-x">&times;</span>
</button>
{/each}
</div>
{/if}
</div>
<div class="field">
<label>Schwierigkeit</label>
<span class="hint">Schwerere Aufgaben geben seltenere Sticker</span>
<div class="difficulty-buttons">
<button
type="button"
class="diff-btn"
class:selected={difficulty === '' || difficulty === undefined}
onclick={() => difficulty = ''}
>
Keine
</button>
<button
type="button"
class="diff-btn low"
class:selected={difficulty === 'low'}
onclick={() => difficulty = 'low'}
>
Leicht
</button>
<button
type="button"
class="diff-btn medium"
class:selected={difficulty === 'medium'}
onclick={() => difficulty = 'medium'}
>
Mittel
</button>
<button
type="button"
class="diff-btn high"
class:selected={difficulty === 'high'}
onclick={() => difficulty = 'high'}
>
Schwer
</button>
</div>
</div>
<div class="field">
<label for="dueDate">Fällig am</label>
<input id="dueDate" type="date" bind:value={nextDueDate} required />
</div>
<div class="field-row">
<label class="checkbox-label">
<input type="checkbox" bind:checked={isRecurring} />
Wiederkehrend
</label>
</div>
{#if isRecurring}
<div class="field">
<label for="frequency">Häufigkeit</label>
<select id="frequency" bind:value={frequencyType}>
<option value="daily">Täglich</option>
<option value="weekly">Wöchentlich</option>
<option value="biweekly">Alle 2 Wochen</option>
<option value="monthly">Monatlich</option>
<option value="custom">Benutzerdefiniert</option>
</select>
</div>
{#if frequencyType === 'custom'}
<div class="field">
<label for="customDays">Alle X Tage</label>
<input id="customDays" type="number" bind:value={customDays} min="1" max="365" />
</div>
{/if}
{/if}
<div class="form-actions">
<button type="button" class="btn-cancel" onclick={onclosed}>Abbrechen</button>
<button type="submit" class="btn-save" disabled={saving}>
{saving ? 'Speichern...' : (task?._id ? 'Aktualisieren' : 'Erstellen')}
</button>
</div>
</form>
<style>
.task-form {
background: var(--color-bg-primary, white);
border: 1px solid var(--color-border, #e8e4dd);
border-radius: 12px;
padding: 1.25rem;
}
.form-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
}
.form-header h2 {
margin: 0;
font-size: 1.1rem;
font-weight: 600;
}
.btn-close {
display: flex;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
border: none;
background: transparent;
color: var(--color-text-secondary, #999);
border-radius: 6px;
cursor: pointer;
}
.btn-close:hover { background: var(--color-bg-secondary, #f0ede6); }
.error {
color: var(--nord11);
font-size: 0.82rem;
margin: 0 0 0.75rem;
padding: 0.4rem 0.6rem;
background: rgba(191, 97, 106, 0.08);
border-radius: 6px;
}
.field {
margin-bottom: 0.75rem;
}
.field label {
display: block;
font-size: 0.78rem;
font-weight: 600;
margin-bottom: 0.25rem;
color: var(--color-text-secondary, #666);
}
.field input[type="text"],
.field input[type="date"],
.field input[type="number"],
.field textarea,
.field select {
width: 100%;
padding: 0.45rem 0.6rem;
border: 1px solid var(--color-border, #ddd);
border-radius: 8px;
font-size: 0.85rem;
background: var(--color-bg-primary, white);
color: inherit;
box-sizing: border-box;
}
.field textarea { resize: vertical; }
.hint {
font-size: 0.7rem;
color: var(--color-text-secondary, #aaa);
display: block;
margin-bottom: 0.3rem;
}
/* ── Assignee buttons ── */
.assignee-buttons {
display: flex;
gap: 0.5rem;
}
.assignee-btn {
all: unset;
display: flex;
align-items: center;
gap: 0.45rem;
padding: 0.35rem 0.75rem 0.35rem 0.35rem;
border-radius: 100px;
cursor: pointer;
border: 1.5px solid var(--color-border, #ddd);
background: transparent;
transition: all 120ms;
text-transform: capitalize;
}
.assignee-btn:hover {
border-color: var(--nord10);
background: rgba(94, 129, 172, 0.06);
}
.assignee-btn.selected {
border-color: var(--nord10);
background: rgba(94, 129, 172, 0.12);
}
.assignee-name {
font-size: 0.82rem;
font-weight: 500;
color: var(--color-text-primary, #333);
}
/* ── Tag input (desktop) ── */
.tag-input-desktop {
position: relative;
}
.tag-input-wrapper {
position: relative;
}
.tag-dropdown {
position: absolute;
top: 100%;
left: 0;
right: 0;
margin-top: 0.25rem;
background: var(--color-bg-primary, white);
border: 1px solid var(--color-border, #ddd);
border-radius: 8px;
box-shadow: 0 4px 16px rgba(0,0,0,0.1);
max-height: 200px;
overflow-y: auto;
z-index: 100;
padding: 0.35rem;
display: flex;
flex-wrap: wrap;
gap: 0.25rem;
}
.tag-dropdown-item {
all: unset;
display: inline-flex;
align-items: center;
gap: 0.3rem;
padding: 0.3rem 0.6rem;
font-size: 0.8rem;
border-radius: 100px;
cursor: pointer;
color: var(--color-text-secondary, #666);
background: var(--color-bg-secondary, #f0ede6);
transition: all 100ms;
}
.tag-dropdown-item:hover {
background: var(--nord10);
color: white;
transform: scale(1.03);
}
/* ── Tag pills (mobile) ── */
.tag-pills-mobile {
display: none;
flex-wrap: wrap;
gap: 0.35rem;
}
.tag-pill {
all: unset;
display: inline-flex;
align-items: center;
gap: 0.3rem;
padding: 0.35rem 0.65rem;
font-size: 0.78rem;
border-radius: 100px;
cursor: pointer;
user-select: none;
transition: all 120ms;
background: var(--color-bg-secondary, #f0ede6);
color: var(--color-text-secondary, #777);
border: 1.5px solid transparent;
}
.tag-pill:hover {
background: rgba(94, 129, 172, 0.12);
color: var(--nord10);
}
.tag-pill:active {
transform: scale(0.95);
}
.tag-pill.selected {
background: var(--nord10);
color: white;
border-color: var(--nord10);
}
.tag-pill.selected:hover {
background: var(--nord9);
border-color: var(--nord9);
}
/* ── Selected tags (shown below input on desktop) ── */
.selected-tags {
display: flex;
flex-wrap: wrap;
gap: 0.25rem;
margin-top: 0.35rem;
}
.tag-chip {
all: unset;
display: inline-flex;
align-items: center;
gap: 0.25rem;
padding: 0.25rem 0.55rem;
font-size: 0.75rem;
border-radius: 100px;
cursor: pointer;
transition: all 100ms;
user-select: none;
}
.tag-chip.selected {
background: var(--nord10);
color: white;
}
.tag-chip.selected:hover {
background: var(--nord9);
transform: scale(1.03);
}
.remove-x {
font-size: 0.9rem;
font-weight: 700;
margin-left: 0.1rem;
line-height: 1;
}
/* Responsive: show pills on mobile, input on desktop */
@media (max-width: 700px) {
.tag-input-desktop { display: none; }
.tag-pills-mobile { display: flex; }
.selected-tags { display: none; }
}
@media (min-width: 701px) {
.tag-pills-mobile { display: none; }
}
/* ── Difficulty buttons ── */
.difficulty-buttons {
display: flex;
gap: 0.4rem;
}
.diff-btn {
all: unset;
flex: 1;
text-align: center;
padding: 0.4rem 0.5rem;
font-size: 0.8rem;
font-weight: 500;
border-radius: 8px;
cursor: pointer;
border: 1.5px solid var(--color-border, #ddd);
transition: all 120ms;
color: var(--color-text-secondary, #777);
}
.diff-btn:hover {
border-color: var(--nord10);
background: rgba(94, 129, 172, 0.06);
}
.diff-btn.selected {
border-color: var(--nord10);
background: rgba(94, 129, 172, 0.1);
color: var(--nord10);
font-weight: 600;
}
.diff-btn.low.selected {
border-color: var(--nord14);
background: rgba(163, 190, 140, 0.12);
color: var(--nord14);
}
.diff-btn.medium.selected {
border-color: var(--nord13);
background: rgba(235, 203, 139, 0.12);
color: #b8a038;
}
.diff-btn.high.selected {
border-color: var(--nord12);
background: rgba(208, 135, 112, 0.12);
color: var(--nord12);
}
.field-row {
margin-bottom: 0.75rem;
}
.checkbox-label {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.85rem;
cursor: pointer;
}
.form-actions {
display: flex;
justify-content: flex-end;
gap: 0.5rem;
margin-top: 1rem;
}
.btn-cancel {
padding: 0.45rem 1rem;
border: 1px solid var(--color-border, #ddd);
background: transparent;
border-radius: 8px;
font-size: 0.82rem;
cursor: pointer;
color: var(--color-text-secondary, #888);
}
.btn-save {
padding: 0.45rem 1rem;
border: none;
background: var(--nord10);
color: white;
border-radius: 8px;
font-size: 0.82rem;
font-weight: 500;
cursor: pointer;
transition: background 150ms;
}
.btn-save:hover { background: var(--nord9); }
.btn-save:disabled { opacity: 0.6; cursor: not-allowed; }
/* Dark mode */
@media (prefers-color-scheme: dark) {
:global(:root:not([data-theme="light"])) .task-form {
background: var(--nord1);
border-color: var(--nord2);
}
:global(:root:not([data-theme="light"])) .field input,
:global(:root:not([data-theme="light"])) .field textarea,
:global(:root:not([data-theme="light"])) .field select {
background: var(--nord0);
border-color: var(--nord2);
}
:global(:root:not([data-theme="light"])) .tag-dropdown {
background: var(--nord0);
border-color: var(--nord2);
}
:global(:root:not([data-theme="light"])) .tag-dropdown-item {
background: var(--nord2);
color: var(--nord4);
}
:global(:root:not([data-theme="light"])) .tag-pill {
background: var(--nord2);
color: var(--nord4);
}
}
:global(:root[data-theme="dark"]) .task-form {
background: var(--nord1);
border-color: var(--nord2);
}
:global(:root[data-theme="dark"]) .field input,
:global(:root[data-theme="dark"]) .field textarea,
:global(:root[data-theme="dark"]) .field select {
background: var(--nord0);
border-color: var(--nord2);
}
:global(:root[data-theme="dark"]) .tag-dropdown {
background: var(--nord0);
border-color: var(--nord2);
}
:global(:root[data-theme="dark"]) .tag-dropdown-item {
background: var(--nord2);
color: var(--nord4);
}
:global(:root[data-theme="dark"]) .tag-pill {
background: var(--nord2);
color: var(--nord4);
}
</style>

157
src/lib/utils/stickers.ts Normal file
View File

@@ -0,0 +1,157 @@
export interface Sticker {
id: string;
name: string;
image: string; // path under /stickers/
description: string;
rarity: 'common' | 'uncommon' | 'rare' | 'legendary';
category: string;
}
// Blobcat sticker catalog — images from Tirifto's Blobcats (Free Art Licence) & tastytea (CC0)
export const STICKERS: Sticker[] = [
// Cleaning / household
{ id: 'clean-cat', name: 'Putzkatze', image: 'blobcat_clean.svg', description: 'Alles blitzeblank!', rarity: 'common', category: 'cleaning' },
{ id: 'sparkle-proud', name: 'Glitzerkatze', image: 'blobcat_sparkling_proud.svg', description: 'Stolz auf die Sauberkeit', rarity: 'uncommon', category: 'cleaning' },
{ id: 'hammer-cat', name: 'Handwerkerkatze', image: 'blobcat_hammer.svg', description: 'Hier wird angepackt!', rarity: 'uncommon', category: 'cleaning' },
{ id: 'in-box', name: 'Kartonkatze', image: 'blobcat_in_box.svg', description: 'Alles eingeräumt', rarity: 'rare', category: 'cleaning' },
// Plants / garden
{ id: 'rose-red', name: 'Rosenkatze', image: 'blobcat_rose_red.svg', description: 'Eine rote Rose für dich', rarity: 'common', category: 'plants' },
{ id: 'rose-pink', name: 'Blümchenkatze', image: 'blobcat_rose_pink.svg', description: 'Rosarote Blütenträume', rarity: 'common', category: 'plants' },
{ id: 'strawberry', name: 'Erdbeerkatze', image: 'blobcat_strawberry.svg', description: 'Erntezeit!', rarity: 'uncommon', category: 'plants' },
{ id: 'earth-cat', name: 'Erdkatze', image: 'blobcat_earth.svg', description: 'Die ganze Welt ist ein Garten', rarity: 'rare', category: 'plants' },
// Kitchen / cooking
{ id: 'cutlery', name: 'Besteckkatze', image: 'blobcat_cutlery.svg', description: 'Messer und Gabel bereit', rarity: 'common', category: 'kitchen' },
{ id: 'cupcake', name: 'Muffinkatze', image: 'blobcat_cupcake.svg', description: 'Süße Belohnung!', rarity: 'common', category: 'kitchen' },
{ id: 'eating-cupcake', name: 'Naschkatze', image: 'blobcat_eating_cupcake.svg', description: 'Nom nom nom', rarity: 'uncommon', category: 'kitchen' },
{ id: 'pot-cat', name: 'Topfkatze', image: 'blobcat_pot.svg', description: 'Was köchelt da?', rarity: 'uncommon', category: 'kitchen' },
{ id: 'hungry', name: 'Hungrige Katze', image: 'blobcat_hungry_cutlery.svg', description: 'Wann gibt\'s Essen?', rarity: 'rare', category: 'kitchen' },
// Errands
{ id: 'profit', name: 'Geschäftskatze', image: 'blobcat_profit.svg', description: 'Guter Deal!', rarity: 'common', category: 'errands' },
{ id: 'idea-cat', name: 'Ideenkatze', image: 'blobcat_idea.svg', description: 'Heureka!', rarity: 'uncommon', category: 'errands' },
// General / universal — positive emotions
{ id: 'happy', name: 'Zufriedene Katze', image: 'blobcat_content.svg', description: 'Alles gut!', rarity: 'common', category: 'general' },
{ id: 'heart', name: 'Herzkatze', image: 'blobcat_heart.svg', description: 'Mit Liebe gemacht', rarity: 'common', category: 'general' },
{ id: 'heart-eyes', name: 'Verliebte Katze', image: 'blobcat_heart_eyes.svg', description: 'So schön!', rarity: 'common', category: 'general' },
{ id: 'hooray', name: 'Jubelkatze', image: 'blobcat_hooray.svg', description: 'Hurra!', rarity: 'common', category: 'general' },
{ id: 'waving', name: 'Winkende Katze', image: 'blobcat_waving.svg', description: 'Hallo!', rarity: 'common', category: 'general' },
{ id: 'laughing', name: 'Lachkatze', image: 'blobcat_laughing.svg', description: 'Hahaha!', rarity: 'common', category: 'general' },
{ id: 'thumbs-up', name: 'Daumen-hoch-Katze', image: 'blobcat_thumbs_up.svg', description: 'Super gemacht!', rarity: 'uncommon', category: 'general' },
{ id: 'sparkle-eyes', name: 'Funkelkatze', image: 'blobcat_sparkle_eyes.svg', description: 'Augen wie Sterne', rarity: 'uncommon', category: 'general' },
{ id: 'finger-guns', name: 'Fingerpistolenkatze', image: 'blobcat_finger_guns.svg', description: 'Pew pew!', rarity: 'uncommon', category: 'general' },
{ id: 'proud', name: 'Stolze Katze', image: 'blobcat_proud.svg', description: 'Richtig gut!', rarity: 'uncommon', category: 'general' },
// Achievement / reward
{ id: 'crown', name: 'Königskatze', image: 'blobcat_crown.svg', description: 'Majestätisch!', rarity: 'rare', category: 'achievement' },
{ id: 'cool', name: 'Coole Katze', image: 'blobcat_cool.svg', description: 'Eiskalt erledigt', rarity: 'rare', category: 'achievement' },
{ id: 'hero', name: 'Heldenkatze', image: 'blobcat_hero.svg', description: 'Held des Tages!', rarity: 'rare', category: 'achievement' },
{ id: '10-of-10', name: 'Perfekte Katze', image: 'blobcat_sign_10_of_10.svg', description: '10 von 10!', rarity: 'rare', category: 'achievement' },
{ id: 'birthday', name: 'Geburtstagskatze', image: 'blobcat_birthday.svg', description: 'Party!', rarity: 'rare', category: 'achievement' },
// Cozy / relaxed
{ id: 'sleeping', name: 'Schlafkatze', image: 'blobcat_sleeping.svg', description: 'Zzzzz...', rarity: 'uncommon', category: 'cozy' },
{ id: 'tea', name: 'Teekatze', image: 'blobcat_drinking_tea.svg', description: 'Erstmal Tee', rarity: 'uncommon', category: 'cozy' },
{ id: 'cocoa', name: 'Kakaokatze', image: 'blobcat_drinking_cocoa.svg', description: 'Mmh, Kakao!', rarity: 'uncommon', category: 'cozy' },
{ id: 'book', name: 'Lesekatze', image: 'blobcat_book.svg', description: 'Ein gutes Buch', rarity: 'rare', category: 'cozy' },
{ id: 'blanket', name: 'Deckenkatze', image: 'blobcat_blanket.svg', description: 'Eingekuschelt', rarity: 'rare', category: 'cozy' },
{ id: 'teapot', name: 'Teekannenkatze', image: 'blobcat_teapot.svg', description: 'Tee ist fertig!', rarity: 'rare', category: 'cozy' },
// Rare / special
{ id: 'rainbow', name: 'Regenbogenkatze', image: 'blobcat_rainbow.svg', description: 'Alle Farben!', rarity: 'rare', category: 'special' },
{ id: 'angel', name: 'Engelskatze', image: 'blobcat_angel.svg', description: 'Himmlisch!', rarity: 'rare', category: 'special' },
{ id: 'scientist', name: 'Wissenschaftskatze', image: 'blobcat_scientist.svg', description: 'Für die Wissenschaft!', rarity: 'rare', category: 'special' },
// Quirky / cute (general pool — drops for any task)
{ id: 'adorable', name: 'Süße Katze', image: 'blobcat_adorable.svg', description: 'Unwiderstehlich süß!', rarity: 'uncommon', category: 'general' },
{ id: 'adoring', name: 'Bewundernde Katze', image: 'blobcat_adoring.svg', description: 'So toll!', rarity: 'common', category: 'general' },
{ id: 'joyful-surprise', name: 'Überraschte Katze', image: 'blobcat_joyful_surprise.svg', description: 'Oh! Was ist das?', rarity: 'uncommon', category: 'general' },
{ id: 'purring', name: 'Schnurrkatze', image: 'blobcat_purring.svg', description: 'Prrrrr...', rarity: 'common', category: 'general' },
{ id: 'x3', name: 'x3-Katze', image: 'blobcat_x3.svg', description: 'x3 UwU', rarity: 'rare', category: 'general' },
{ id: 'heart-tastytea', name: 'Liebevolle Katze', image: 'blobcat_heart_tastytea.svg', description: 'Ganz viel Liebe!', rarity: 'uncommon', category: 'general' },
{ id: 'blobcat-classic', name: 'Klassikatze', image: 'blobcat.svg', description: 'Die Originalkatze', rarity: 'rare', category: 'general' },
// Legendary
{ id: 'astronaut', name: 'Astronautenkatze', image: 'blobcat_astronaut.svg', description: 'Ab ins All!', rarity: 'legendary', category: 'special' },
{ id: 'space', name: 'Weltraumkatze', image: 'blobcat_space.svg', description: 'Zwischen den Sternen', rarity: 'legendary', category: 'special' },
{ id: 'robot', name: 'Roboterkatze', image: 'blobcat_robot.svg', description: 'Beep boop!', rarity: 'legendary', category: 'special' },
{ id: 'ghost', name: 'Geisterkatze', image: 'blobcat_ghost.svg', description: 'Buuuuh!', rarity: 'legendary', category: 'special' },
];
// Tag to sticker category mapping
const TAG_CATEGORY_MAP: Record<string, string[]> = {
'putzen': ['cleaning', 'general'],
'saugen': ['cleaning', 'general'],
'wischen': ['cleaning', 'general'],
'bad': ['cleaning', 'general'],
'küche': ['kitchen', 'cleaning', 'general'],
'kochen': ['kitchen', 'general'],
'abwasch': ['kitchen', 'cleaning', 'general'],
'wäsche': ['cleaning', 'general'],
'bügeln': ['cleaning', 'general'],
'pflanzen': ['plants', 'general'],
'gießen': ['plants', 'general'],
'düngen': ['plants', 'general'],
'garten': ['plants', 'general'],
'einkaufen': ['errands', 'general'],
'müll': ['cleaning', 'general'],
};
// Rarity weights per difficulty (higher = more likely)
// low: mostly common, rare/legendary very unlikely
// medium (default): balanced distribution
// high: rare and legendary much more likely
const DIFFICULTY_RARITY_WEIGHTS: Record<string, Record<string, number>> = {
low: { common: 65, uncommon: 25, rare: 8, legendary: 2 },
medium: { common: 50, uncommon: 30, rare: 15, legendary: 5 },
high: { common: 25, uncommon: 30, rare: 30, legendary: 15 },
};
export function getStickerForTags(tags: string[], difficulty?: string): Sticker {
const weights = DIFFICULTY_RARITY_WEIGHTS[difficulty || 'medium'] || DIFFICULTY_RARITY_WEIGHTS.medium;
// Determine relevant categories from tags
const categories = new Set<string>();
for (const tag of tags) {
const mapped = TAG_CATEGORY_MAP[tag.toLowerCase()];
if (mapped) {
mapped.forEach(c => categories.add(c));
}
}
// Always include general + achievement/cozy/special so all stickers can drop
categories.add('general');
categories.add('achievement');
categories.add('cozy');
categories.add('special');
// Filter stickers by matching categories
const pool = STICKERS.filter(s => categories.has(s.category));
// Weighted random selection by rarity
const totalWeight = pool.reduce((sum, s) => sum + weights[s.rarity], 0);
let random = Math.random() * totalWeight;
for (const sticker of pool) {
random -= weights[sticker.rarity];
if (random <= 0) return sticker;
}
// Fallback
return pool[Math.floor(Math.random() * pool.length)];
}
export function getStickerById(id: string): Sticker | undefined {
return STICKERS.find(s => s.id === id);
}
export function getRarityColor(rarity: string): string {
switch (rarity) {
case 'common': return 'var(--nord14)';
case 'uncommon': return 'var(--nord9)';
case 'rare': return 'var(--nord15)';
case 'legendary': return 'var(--nord13)';
default: return 'var(--nord4)';
}
}

92
src/models/Task.ts Normal file
View File

@@ -0,0 +1,92 @@
import mongoose from 'mongoose';
export interface ITask {
_id?: string;
title: string;
description?: string;
assignees: string[];
tags: string[];
difficulty?: 'low' | 'medium' | 'high';
isRecurring: boolean;
frequency?: {
type: 'daily' | 'weekly' | 'biweekly' | 'monthly' | 'custom';
customDays?: number;
};
nextDueDate: Date;
lastCompletedAt?: Date;
lastCompletedBy?: string;
createdBy: string;
active: boolean;
createdAt?: Date;
updatedAt?: Date;
}
const TaskSchema = new mongoose.Schema(
{
title: {
type: String,
required: true,
trim: true
},
description: {
type: String,
trim: true
},
assignees: [{
type: String,
trim: true
}],
tags: [{
type: String,
trim: true,
lowercase: true
}],
difficulty: {
type: String,
enum: ['low', 'medium', 'high']
},
isRecurring: {
type: Boolean,
required: true,
default: false
},
frequency: {
type: {
type: String,
enum: ['daily', 'weekly', 'biweekly', 'monthly', 'custom']
},
customDays: {
type: Number,
min: 1
}
},
nextDueDate: {
type: Date,
required: true
},
lastCompletedAt: {
type: Date
},
lastCompletedBy: {
type: String,
trim: true
},
createdBy: {
type: String,
required: true,
trim: true
},
active: {
type: Boolean,
default: true
}
},
{
timestamps: true
}
);
TaskSchema.index({ active: 1, nextDueDate: 1 });
TaskSchema.index({ tags: 1 });
export const Task = mongoose.model<ITask>('Task', TaskSchema);

View File

@@ -0,0 +1,51 @@
import mongoose from 'mongoose';
export interface ITaskCompletion {
_id?: string;
taskId: mongoose.Types.ObjectId;
taskTitle: string;
completedBy: string;
completedAt: Date;
stickerId?: string;
tags: string[];
}
const TaskCompletionSchema = new mongoose.Schema(
{
taskId: {
type: mongoose.Schema.Types.ObjectId,
ref: 'Task',
required: true
},
taskTitle: {
type: String,
required: true,
trim: true
},
completedBy: {
type: String,
required: true,
trim: true
},
completedAt: {
type: Date,
required: true,
default: Date.now
},
stickerId: {
type: String,
trim: true
},
tags: [{
type: String,
trim: true,
lowercase: true
}]
}
);
TaskCompletionSchema.index({ completedBy: 1 });
TaskCompletionSchema.index({ taskId: 1 });
TaskCompletionSchema.index({ completedAt: -1 });
export const TaskCompletion = mongoose.model<ITaskCompletion>('TaskCompletion', TaskCompletionSchema);

View File

@@ -56,7 +56,8 @@
transmission: 'Transmission', transmission: 'Transmission',
documents: isEnglish ? 'Documents' : 'Dokumente', documents: isEnglish ? 'Documents' : 'Dokumente',
audiobooksPodcasts: isEnglish ? 'Audiobooks & Podcasts' : 'Hörbücher & Podcasts', audiobooksPodcasts: isEnglish ? 'Audiobooks & Podcasts' : 'Hörbücher & Podcasts',
fitness: 'Fitness' fitness: 'Fitness',
tasks: isEnglish ? 'Tasks' : 'Aufgaben'
}); });
</script> </script>
<style> <style>
@@ -223,6 +224,11 @@ section h2{
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M256 80C149.9 80 62.4 159.4 49.6 262c9.4-3.8 19.6-6 30.4-6c26.5 0 48 21.5 48 48l0 128c0 26.5-21.5 48-48 48c-44.2 0-80-35.8-80-80l0-16 0-48 0-48C0 146.6 114.6 32 256 32s256 114.6 256 256l0 48 0 48 0 16c0 44.2-35.8 80-80 80c-26.5 0-48-21.5-48-48l0-128c0-26.5 21.5-48 48-48c10.8 0 21 2.1 30.4 6C449.6 159.4 362.1 80 256 80z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M256 80C149.9 80 62.4 159.4 49.6 262c9.4-3.8 19.6-6 30.4-6c26.5 0 48 21.5 48 48l0 128c0 26.5-21.5 48-48 48c-44.2 0-80-35.8-80-80l0-16 0-48 0-48C0 146.6 114.6 32 256 32s256 114.6 256 256l0 48 0 48 0 16c0 44.2-35.8 80-80 80c-26.5 0-48-21.5-48-48l0-128c0-26.5 21.5-48 48-48c10.8 0 21 2.1 30.4 6C449.6 159.4 362.1 80 256 80z"/></svg>
<h3>{labels.audiobooksPodcasts}</h3> <h3>{labels.audiobooksPodcasts}</h3>
</a> </a>
<a href="/tasks">
<svg class="lock-icon"><use href="#lock-icon"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M152.1 38.2c9.9 8.9 10.7 24 1.8 33.9l-72 80c-4.4 4.9-10.6 7.8-17.2 7.9s-12.9-2.4-17.6-7L7 113c-9.3-9.4-9.3-24.6 0-34C16.3 69.5 31.5 69.5 40.7 79l21.9 22.3 53.5-59.4c8.9-9.9 24-10.7 33.9-1.8zm0 160c9.9 8.9 10.7 24 1.8 33.9l-72 80c-4.4 4.9-10.6 7.8-17.2 7.9s-12.9-2.4-17.6-7L7 273c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l22 22.3 53.5-59.4c8.9-9.9 24-10.7 33.9-1.8zM224 96c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32zm0 160c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32zM160 416c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H192c-17.7 0-32-14.3-32-32zM48 368a48 48 0 1 1 0 96 48 48 0 1 1 0-96z"/></svg>
<h3>{labels.tasks}</h3>
</a>
</LinksGrid> </LinksGrid>
</section> </section>

View File

@@ -0,0 +1,46 @@
import type { RequestHandler } from '@sveltejs/kit';
import { Task } from '$models/Task';
import { dbConnect } from '$utils/db';
import { error, json } from '@sveltejs/kit';
export const GET: RequestHandler = async ({ locals }) => {
const auth = await locals.auth();
if (!auth?.user?.nickname) throw error(401, 'Not logged in');
await dbConnect();
const tasks = await Task.find({ active: true })
.sort({ nextDueDate: 1 })
.lean();
return json({ tasks });
};
export const POST: RequestHandler = async ({ request, locals }) => {
const auth = await locals.auth();
if (!auth?.user?.nickname) throw error(401, 'Not logged in');
const data = await request.json();
const { title, description, assignees, tags, difficulty, isRecurring, frequency, nextDueDate } = data;
if (!title?.trim()) throw error(400, 'Title is required');
if (!nextDueDate) throw error(400, 'Due date is required');
if (isRecurring && !frequency?.type) throw error(400, 'Frequency is required for recurring tasks');
await dbConnect();
const task = await Task.create({
title: title.trim(),
description: description?.trim(),
assignees: assignees || [],
tags: tags || [],
difficulty: difficulty || undefined,
isRecurring: !!isRecurring,
frequency: isRecurring ? frequency : undefined,
nextDueDate: new Date(nextDueDate),
createdBy: auth.user.nickname,
active: true
});
return json({ task }, { status: 201 });
};

View File

@@ -0,0 +1,48 @@
import type { RequestHandler } from '@sveltejs/kit';
import { Task } from '$models/Task';
import { dbConnect } from '$utils/db';
import { error, json } from '@sveltejs/kit';
export const PUT: RequestHandler = async ({ params, request, locals }) => {
const auth = await locals.auth();
if (!auth?.user?.nickname) throw error(401, 'Not logged in');
const data = await request.json();
const { title, description, assignees, tags, difficulty, isRecurring, frequency, nextDueDate, active } = data;
await dbConnect();
const task = await Task.findById(params.id);
if (!task) throw error(404, 'Task not found');
if (title !== undefined) task.title = title.trim();
if (description !== undefined) task.description = description?.trim();
if (assignees !== undefined) task.assignees = assignees;
if (tags !== undefined) task.tags = tags;
if (difficulty !== undefined) task.difficulty = difficulty || undefined;
if (isRecurring !== undefined) {
task.isRecurring = isRecurring;
task.frequency = isRecurring ? frequency : undefined;
}
if (nextDueDate !== undefined) task.nextDueDate = new Date(nextDueDate);
if (active !== undefined) task.active = active;
await task.save();
return json({ task });
};
export const DELETE: RequestHandler = async ({ params, locals }) => {
const auth = await locals.auth();
if (!auth?.user?.nickname) throw error(401, 'Not logged in');
await dbConnect();
const task = await Task.findById(params.id);
if (!task) throw error(404, 'Task not found');
// Soft delete
task.active = false;
await task.save();
return json({ success: true });
};

View File

@@ -0,0 +1,65 @@
import type { RequestHandler } from '@sveltejs/kit';
import { Task } from '$models/Task';
import { TaskCompletion } from '$models/TaskCompletion';
import { dbConnect } from '$utils/db';
import { error, json } from '@sveltejs/kit';
import { getStickerForTags } from '$lib/utils/stickers';
import { addDays } from 'date-fns';
function getNextDueDate(completedAt: Date, frequencyType: string, customDays?: number): Date {
switch (frequencyType) {
case 'daily': return addDays(completedAt, 1);
case 'weekly': return addDays(completedAt, 7);
case 'biweekly': return addDays(completedAt, 14);
case 'monthly': {
const next = new Date(completedAt);
next.setMonth(next.getMonth() + 1);
return next;
}
case 'custom': return addDays(completedAt, customDays || 7);
default: return addDays(completedAt, 7);
}
}
export const POST: RequestHandler = async ({ params, locals }) => {
const auth = await locals.auth();
if (!auth?.user?.nickname) throw error(401, 'Not logged in');
await dbConnect();
const task = await Task.findById(params.id);
if (!task) throw error(404, 'Task not found');
if (!task.active) throw error(400, 'Task is archived');
const now = new Date();
const nickname = auth.user.nickname;
// Award a sticker based on task tags and difficulty
const sticker = getStickerForTags(task.tags, task.difficulty || 'medium');
// Record the completion
const completion = await TaskCompletion.create({
taskId: task._id,
taskTitle: task.title,
completedBy: nickname,
completedAt: now,
stickerId: sticker.id,
tags: task.tags
});
// Update task
task.lastCompletedAt = now;
task.lastCompletedBy = nickname;
if (task.isRecurring && task.frequency) {
// Reset from NOW (completion time), not from the original due date
task.nextDueDate = getNextDueDate(now, task.frequency.type, task.frequency.customDays);
} else {
// One-off task: deactivate
task.active = false;
}
await task.save();
return json({ completion, sticker, task });
};

View File

@@ -0,0 +1,32 @@
import type { RequestHandler } from '@sveltejs/kit';
import { TaskCompletion } from '$models/TaskCompletion';
import { dbConnect } from '$utils/db';
import { error, json } from '@sveltejs/kit';
export const GET: RequestHandler = async ({ locals }) => {
const auth = await locals.auth();
if (!auth?.user?.nickname) throw error(401, 'Not logged in');
await dbConnect();
// Completions per user
const userStats = await TaskCompletion.aggregate([
{ $group: { _id: '$completedBy', count: { $sum: 1 } } },
{ $sort: { count: -1 } }
]);
// Stickers per user
const userStickers = await TaskCompletion.aggregate([
{ $match: { stickerId: { $exists: true, $ne: null } } },
{ $group: { _id: { user: '$completedBy', sticker: '$stickerId' }, count: { $sum: 1 } } },
{ $sort: { '_id.user': 1, count: -1 } }
]);
// Recent completions (enough for ~3 months of calendar)
const recentCompletions = await TaskCompletion.find()
.sort({ completedAt: -1 })
.limit(500)
.lean();
return json({ userStats, userStickers, recentCompletions });
};

View File

@@ -0,0 +1,7 @@
import type { LayoutServerLoad } from "./$types"
export const load: LayoutServerLoad = async ({ locals }) => {
return {
session: locals.session ?? await locals.auth()
}
};

View File

@@ -0,0 +1,33 @@
<script>
import { page } from '$app/stores';
import Header from '$lib/components/Header.svelte';
import UserHeader from '$lib/components/UserHeader.svelte';
import { ClipboardList, Trophy } from 'lucide-svelte';
let { data, children } = $props();
let user = $derived(data.session?.user);
/** @param {string} path */
function isActive(path) {
const currentPath = $page.url.pathname;
if (path === '/tasks') {
return currentPath === '/tasks' || currentPath === '/tasks/';
}
return currentPath.startsWith(path);
}
</script>
<Header>
{#snippet links()}
<ul class="site_header">
<li style="--active-fill: var(--nord10)"><a href="/tasks" class:active={isActive('/tasks')}><ClipboardList size={16} strokeWidth={1.5} class="nav-icon" /><span class="nav-label">Aufgaben</span></a></li>
<li style="--active-fill: var(--nord13)"><a href="/tasks/rewards" class:active={isActive('/tasks/rewards')}><Trophy size={16} strokeWidth={1.5} class="nav-icon" /><span class="nav-label">Sticker</span></a></li>
</ul>
{/snippet}
{#snippet right_side()}
<UserHeader {user}></UserHeader>
{/snippet}
{@render children()}
</Header>

View File

@@ -0,0 +1,18 @@
import type { PageServerLoad } from './$types';
import { redirect } from '@sveltejs/kit';
export const load: PageServerLoad = async ({ locals, fetch }) => {
const session = await locals.auth();
if (!session) throw redirect(302, '/login');
const [tasksRes, statsRes] = await Promise.all([
fetch('/api/tasks'),
fetch('/api/tasks/stats')
]);
return {
session,
tasks: (await tasksRes.json()).tasks,
stats: await statsRes.json()
};
};

View File

@@ -0,0 +1,690 @@
<script>
import { invalidateAll } from '$app/navigation';
import { formatDistanceToNow, isPast, isToday, differenceInDays, format } from 'date-fns';
import { de } from 'date-fns/locale';
import { Plus, Check, Pencil, Trash2, Tag, Users, RotateCcw, Calendar,
Sparkles, Wind, Bath, UtensilsCrossed, CookingPot, WashingMachine,
Flower2, Droplets, Leaf, ShoppingCart, Shirt, Brush } from 'lucide-svelte';
import { fly, scale } from 'svelte/transition';
import { flip } from 'svelte/animate';
import TaskForm from '$lib/components/tasks/TaskForm.svelte';
import StickerPopup from '$lib/components/tasks/StickerPopup.svelte';
import ProfilePicture from '$lib/components/cospend/ProfilePicture.svelte';
let { data } = $props();
let tasks = $state(data.tasks || []);
let stats = $state(data.stats || { userStats: [], userStickers: [], recentCompletions: [] });
let currentUser = $derived(data.session?.user?.nickname || '');
let myStat = $derived(stats.userStats.find((/** @type {any} */ s) => s._id === currentUser));
let showForm = $state(false);
/** @type {any} */
let editingTask = $state(null);
/** @type {any} */
let awardedSticker = $state(null);
let filterTag = $state('');
let filterAssignee = $state('');
// Collect all unique tags from tasks
let allTags = $derived([...new Set(tasks.flatMap((/** @type {any} */ t) => t.tags))].sort());
let allAssignees = $derived([...new Set(tasks.flatMap((/** @type {any} */ t) => t.assignees))].sort());
let filteredTasks = $derived(
tasks.filter((/** @type {any} */ t) => {
if (filterTag && !t.tags.includes(filterTag)) return false;
if (filterAssignee && !t.assignees.includes(filterAssignee)) return false;
return true;
})
);
// Sort by urgency: overdue first, then by days until due
let sortedTasks = $derived(
[...filteredTasks].sort((/** @type {any} */ a, /** @type {any} */ b) => {
return new Date(a.nextDueDate).getTime() - new Date(b.nextDueDate).getTime();
})
);
/** @param {any} task */
function getUrgencyClass(task) {
const due = new Date(task.nextDueDate);
const days = differenceInDays(due, new Date());
if (days < 0) return 'overdue';
if (days === 0) return 'due-today';
if (days <= 2) return 'due-soon';
return 'upcoming';
}
/** German weekday names */
const WEEKDAYS_DE = ['Sonntag', 'Montag', 'Dienstag', 'Mittwoch', 'Donnerstag', 'Freitag', 'Samstag'];
/** @param {any} task */
function getUrgencyLabel(task) {
const due = new Date(task.nextDueDate);
if (isPast(due) && !isToday(due)) {
return `Überfällig (${formatDistanceToNow(due, { locale: de, addSuffix: true })})`;
}
if (isToday(due)) return 'Heute fällig';
const days = differenceInDays(due, new Date());
if (days >= 1 && days <= 6) {
return `Fällig am ${WEEKDAYS_DE[due.getDay()]}`;
}
return `Fällig ${formatDistanceToNow(due, { locale: de, addSuffix: true })}`;
}
/** @param {string} type */
function getFrequencyLabel(type) {
const labels = /** @type {Record<string, string>} */ ({
daily: 'Täglich',
weekly: 'Wöchentlich',
biweekly: 'Alle 2 Wochen',
monthly: 'Monatlich',
custom: 'Benutzerdefiniert'
});
return labels[type] || type;
}
/** @param {any} task */
async function completeTask(task) {
const res = await fetch(`/api/tasks/${task._id}/complete`, { method: 'POST' });
if (!res.ok) return;
const result = await res.json();
// Show sticker popup
awardedSticker = result.sticker;
// Refresh data
await refreshTasks();
}
/** @param {any} task */
async function deleteTask(task) {
if (!confirm(`"${task.title}" wirklich löschen?`)) return;
const res = await fetch(`/api/tasks/${task._id}`, { method: 'DELETE' });
if (res.ok) await refreshTasks();
}
async function refreshTasks() {
const [tasksRes, statsRes] = await Promise.all([
fetch('/api/tasks'),
fetch('/api/tasks/stats')
]);
if (tasksRes.ok) tasks = (await tasksRes.json()).tasks;
if (statsRes.ok) stats = await statsRes.json();
}
async function handleTaskSaved() {
showForm = false;
editingTask = null;
await refreshTasks();
}
/** @param {any} task */
function startEdit(task) {
editingTask = task;
showForm = true;
}
/** @type {Record<string, any>} */
const TAG_ICONS = {
putzen: Sparkles, saugen: Wind, wischen: Brush, bad: Bath,
küche: UtensilsCrossed, kochen: CookingPot, abwasch: Droplets,
wäsche: WashingMachine, bügeln: Shirt,
pflanzen: Flower2, gießen: Droplets, düngen: Leaf, garten: Leaf,
einkaufen: ShoppingCart, müll: Trash2,
};
/** @param {string} nickname */
function getCompletionCount(nickname) {
const stat = stats.userStats.find((/** @type {any} */ s) => s._id === nickname);
return stat?.count || 0;
}
</script>
<div class="tasks-page">
<header class="page-header">
<div class="header-top">
<h1>Aufgaben</h1>
<button class="btn-add" onclick={() => { editingTask = null; showForm = true; }}>
<Plus size={18} /> Neue Aufgabe
</button>
</div>
{#if myStat}
<div class="scoreboard">
<div class="score-card">
<ProfilePicture username={currentUser} size={36} />
<div class="score-info">
<span class="score-count">{myStat.count} <span class="score-label">erledigt</span></span>
</div>
</div>
</div>
{/if}
<div class="filters">
{#if allTags.length > 0}
<div class="filter-group">
<Tag size={14} />
<select bind:value={filterTag}>
<option value="">Alle Tags</option>
{#each allTags as tag}
<option value={tag}>{tag}</option>
{/each}
</select>
</div>
{/if}
{#if allAssignees.length > 0}
<div class="filter-group">
<Users size={14} />
<select bind:value={filterAssignee}>
<option value="">Alle Personen</option>
{#each allAssignees as assignee}
<option value={assignee}>{assignee}</option>
{/each}
</select>
</div>
{/if}
</div>
</header>
{#if showForm}
<div class="form-overlay" transition:fly={{ y: -20, duration: 200 }}>
<TaskForm
task={editingTask}
onclosed={() => { showForm = false; editingTask = null; }}
onsaved={handleTaskSaved}
/>
</div>
{/if}
<div class="task-list">
{#each sortedTasks as task (task._id)}
<div
class="task-card {getUrgencyClass(task)}"
animate:flip={{ duration: 300 }}
transition:fly={{ y: 20, duration: 200 }}
>
<div class="card-accent"></div>
<div class="card-content">
<div class="card-top-row">
<div class="card-title-area">
<h3>{task.title}</h3>
{#if task.description}
<p class="task-description">{task.description}</p>
{/if}
</div>
{#if task.assignees?.length > 0}
<div class="card-assignee">
<ProfilePicture username={task.assignees[0]} size={36} />
{#if task.assignees.length > 1}
<div class="assignee-extra">
<ProfilePicture username={task.assignees[1]} size={22} />
</div>
{/if}
</div>
{/if}
</div>
<div class="card-due">
<Calendar size={14} />
<span>{getUrgencyLabel(task)}</span>
</div>
{#if task.isRecurring && task.frequency}
<span class="meta-badge recurring">
<RotateCcw size={13} />
{getFrequencyLabel(task.frequency.type)}
{#if task.frequency.type === 'custom' && task.frequency.customDays}
({task.frequency.customDays} Tage)
{/if}
</span>
{/if}
{#if task.tags?.length > 0}
<div class="task-tags">
{#each task.tags as tag}
<span class="tag">
{#if TAG_ICONS[tag]}
<svelte:component this={TAG_ICONS[tag]} size={14} />
{/if}
{tag}
</span>
{/each}
</div>
{/if}
<div class="card-bottom-row">
<div class="card-bottom-left">
{#if task.lastCompletedBy}
<div class="last-completed">
<ProfilePicture username={task.lastCompletedBy} size={16} />
<span>Zuletzt gemacht {formatDistanceToNow(new Date(task.lastCompletedAt), { locale: de, addSuffix: true })}</span>
</div>
{/if}
<div class="task-actions">
<button class="btn-icon" title="Bearbeiten" onclick={() => startEdit(task)}>
<Pencil size={14} />
</button>
<button class="btn-icon btn-icon-danger" title="Löschen" onclick={() => deleteTask(task)}>
<Trash2 size={14} />
</button>
</div>
</div>
<button class="btn-complete" onclick={() => completeTask(task)} title="Als erledigt markieren">
<Check size={22} strokeWidth={2.5} />
</button>
</div>
</div>
</div>
{/each}
{#if sortedTasks.length === 0}
<div class="empty-state">
<p>Keine Aufgaben gefunden.</p>
<button class="btn-add" onclick={() => { editingTask = null; showForm = true; }}>
<Plus size={18} /> Erste Aufgabe erstellen
</button>
</div>
{/if}
</div>
</div>
{#if awardedSticker}
<StickerPopup sticker={awardedSticker} onclose={() => awardedSticker = null} />
{/if}
<style>
.tasks-page {
max-width: 1200px;
margin: 0 auto;
padding: 1.5rem 1rem;
}
.page-header {
margin-bottom: 1.5rem;
}
.header-top {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
}
h1 {
font-size: 1.6rem;
font-weight: 700;
margin: 0;
}
.btn-add {
display: flex;
align-items: center;
gap: 0.4rem;
padding: 0.5rem 1rem;
background: var(--nord10);
color: white;
border: none;
border-radius: 8px;
font-size: 0.85rem;
font-weight: 500;
cursor: pointer;
transition: background 150ms;
}
.btn-add:hover { background: var(--nord9); }
/* Scoreboard */
.scoreboard {
display: flex;
gap: 1rem;
margin-bottom: 1rem;
flex-wrap: wrap;
}
.score-card {
display: flex;
align-items: center;
gap: 0.6rem;
background: var(--color-bg-secondary, #f0ede6);
border-radius: 12px;
padding: 0.6rem 1.2rem;
}
.score-info {
display: flex;
flex-direction: column;
}
.score-count {
font-size: 1.3rem;
font-weight: 800;
color: var(--nord10);
line-height: 1.2;
}
.score-label {
font-size: 0.65rem;
font-weight: 500;
color: var(--color-text-secondary, #999);
}
/* Filters */
.filters {
display: flex;
gap: 0.75rem;
flex-wrap: wrap;
}
.filter-group {
display: flex;
align-items: center;
gap: 0.35rem;
color: var(--color-text-secondary, #888);
}
.filter-group select {
padding: 0.3rem 0.6rem;
border: 1px solid var(--color-border, #ddd);
border-radius: 6px;
background: var(--color-bg-primary, white);
color: inherit;
font-size: 0.8rem;
}
/* Form overlay */
.form-overlay {
margin-bottom: 1.5rem;
max-width: 560px;
}
/* Task grid */
.task-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 1rem;
}
/* Card structure: left accent strip + content */
.task-card {
display: flex;
background: var(--color-bg-secondary, #f0ede6);
border-radius: 12px;
overflow: hidden;
transition: box-shadow 250ms, transform 250ms;
position: relative;
}
.task-card:hover {
box-shadow: 0 6px 24px rgba(0,0,0,0.08);
transform: translateY(-2px);
}
/* Left accent strip — colored by urgency */
.card-accent {
width: 4px;
flex-shrink: 0;
background: var(--nord14);
transition: width 200ms;
}
.task-card.overdue .card-accent { background: var(--nord11); width: 5px; }
.task-card.due-today .card-accent { background: var(--nord12); }
.task-card.due-soon .card-accent { background: var(--nord13); }
.task-card.upcoming .card-accent { background: var(--nord14); }
/* Subtle urgency background tints */
.task-card.overdue { background: color-mix(in srgb, var(--nord11) 6%, var(--color-bg-secondary, #f0ede6)); }
.task-card.due-today { background: color-mix(in srgb, var(--nord12) 5%, var(--color-bg-secondary, #f0ede6)); }
.card-content {
flex: 1;
padding: 1rem 1rem 0.75rem;
display: flex;
flex-direction: column;
gap: 0.5rem;
min-width: 0;
}
/* Top row: title + assignee pfp */
.card-top-row {
display: flex;
gap: 0.75rem;
align-items: flex-start;
}
.card-title-area {
flex: 1;
min-width: 0;
}
.card-title-area h3 {
margin: 0;
font-size: 1.05rem;
font-weight: 700;
line-height: 1.3;
}
.task-description {
margin: 0.2rem 0 0;
font-size: 0.82rem;
color: var(--color-text-secondary, #777);
line-height: 1.4;
}
/* Assignee PFP top-right */
.card-assignee {
position: relative;
flex-shrink: 0;
}
.assignee-extra {
position: absolute;
bottom: -4px;
right: -6px;
border: 2px solid var(--color-bg-secondary, #f0ede6);
border-radius: 50%;
}
/* Due date line */
.card-due {
display: flex;
align-items: center;
gap: 0.35rem;
font-size: 0.85rem;
font-weight: 600;
color: var(--color-text-secondary, #888);
}
.task-card.overdue .card-due { color: var(--nord11); }
.task-card.due-today .card-due { color: var(--nord12); }
.task-card.due-soon .card-due { color: var(--nord13); }
.meta-badge {
display: inline-flex;
align-items: center;
gap: 0.25rem;
padding: 0.15rem 0.5rem;
border-radius: 100px;
color: var(--color-text-secondary, #888);
background: var(--color-bg-secondary, #f0ede6);
font-size: 0.78rem;
width: fit-content;
}
/* Tags — significantly larger */
.task-tags {
display: flex;
flex-wrap: wrap;
gap: 0.35rem;
}
.tag {
display: inline-flex;
align-items: center;
gap: 0.3rem;
font-size: 0.85rem;
padding: 0.2rem 0.6rem;
border-radius: 100px;
background: rgba(94, 129, 172, 0.1);
color: var(--nord10);
font-weight: 500;
}
/* Bottom row: last-completed + actions left, check button right */
.card-bottom-row {
display: flex;
justify-content: space-between;
align-items: flex-end;
margin-top: auto;
padding-top: 0.5rem;
}
.card-bottom-left {
display: flex;
flex-direction: column;
gap: 0.25rem;
min-width: 0;
}
.last-completed {
display: flex;
align-items: center;
gap: 0.3rem;
font-size: 0.72rem;
color: var(--color-text-secondary, #aaa);
}
.last-completed span {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.task-actions {
display: flex;
gap: 0.15rem;
opacity: 0;
transition: opacity 150ms;
}
.task-card:hover .task-actions { opacity: 1; }
.btn-icon {
display: flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
border: none;
background: transparent;
color: var(--color-text-secondary, #999);
border-radius: 6px;
cursor: pointer;
transition: all 150ms;
}
.btn-icon:hover {
background: var(--color-bg-secondary, #f0ede6);
color: var(--color-text-primary, #333);
}
.btn-icon-danger:hover {
background: rgba(191, 97, 106, 0.1);
color: var(--nord11);
}
/* Round check button — neutral default, green on hover */
.btn-complete {
display: flex;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
border-radius: 50%;
border: 2px solid var(--color-border, #ddd);
background: transparent;
color: var(--color-text-secondary, #bbb);
cursor: pointer;
transition: all 200ms;
flex-shrink: 0;
}
.btn-complete:hover {
border-color: var(--nord14);
background: var(--nord14);
color: white;
box-shadow: 0 2px 10px rgba(163, 190, 140, 0.35);
transform: scale(1.08);
}
.btn-complete:active {
transform: scale(0.95);
background: #8fad7a;
border-color: #8fad7a;
color: white;
}
.empty-state {
grid-column: 1 / -1;
text-align: center;
padding: 3rem 1rem;
color: var(--color-text-secondary, #999);
}
.empty-state p { margin-bottom: 1rem; }
.empty-state .btn-add { margin: 0 auto; }
/* Dark mode */
@media (prefers-color-scheme: dark) {
:global(:root:not([data-theme="light"])) .task-card {
background: var(--nord2);
}
:global(:root:not([data-theme="light"])) .task-card.overdue {
background: color-mix(in srgb, var(--nord11) 8%, var(--nord2));
}
:global(:root:not([data-theme="light"])) .task-card.due-today {
background: color-mix(in srgb, var(--nord12) 6%, var(--nord2));
}
:global(:root:not([data-theme="light"])) .score-card {
background: var(--nord1);
}
:global(:root:not([data-theme="light"])) .btn-icon:hover {
background: var(--nord2);
}
:global(:root:not([data-theme="light"])) .meta-badge {
background: var(--nord2);
}
:global(:root:not([data-theme="light"])) .filter-group select {
background: var(--nord1);
border-color: var(--nord2);
}
:global(:root:not([data-theme="light"])) .btn-complete {
border-color: var(--nord3);
color: var(--nord4);
}
:global(:root:not([data-theme="light"])) .assignee-extra {
border-color: var(--nord2);
}
:global(:root:not([data-theme="light"])) .tag {
background: rgba(94, 129, 172, 0.15);
}
}
:global(:root[data-theme="dark"]) .task-card {
background: var(--nord2);
}
:global(:root[data-theme="dark"]) .task-card.overdue {
background: color-mix(in srgb, var(--nord11) 8%, var(--nord2));
}
:global(:root[data-theme="dark"]) .task-card.due-today {
background: color-mix(in srgb, var(--nord12) 6%, var(--nord2));
}
:global(:root[data-theme="dark"]) .score-card {
background: var(--nord1);
}
:global(:root[data-theme="dark"]) .meta-badge {
background: var(--nord2);
}
:global(:root[data-theme="dark"]) .filter-group select {
background: var(--nord1);
border-color: var(--nord2);
}
:global(:root[data-theme="dark"]) .btn-complete {
border-color: var(--nord3);
color: var(--nord4);
}
:global(:root[data-theme="dark"]) .assignee-extra {
border-color: var(--nord1);
}
:global(:root[data-theme="dark"]) .tag {
background: rgba(94, 129, 172, 0.15);
}
@media (max-width: 600px) {
.tasks-page { padding: 1rem 0.75rem; }
h1 { font-size: 1.3rem; }
.task-list { grid-template-columns: 1fr; }
.task-actions { opacity: 1; }
.scoreboard { gap: 0.5rem; }
.score-card { padding: 0.5rem 1rem; min-width: 80px; }
.score-count { font-size: 1.4rem; }
.btn-complete { width: 40px; height: 40px; }
}
</style>

View File

@@ -0,0 +1,14 @@
import type { PageServerLoad } from './$types';
import { redirect } from '@sveltejs/kit';
export const load: PageServerLoad = async ({ locals, fetch }) => {
const session = await locals.auth();
if (!session) throw redirect(302, '/login');
const statsRes = await fetch('/api/tasks/stats');
return {
session,
stats: await statsRes.json()
};
};

View File

@@ -0,0 +1,378 @@
<script>
import { STICKERS, getStickerById, getRarityColor } from '$lib/utils/stickers';
import { formatDistanceToNow } from 'date-fns';
import { de } from 'date-fns/locale';
import { scale } from 'svelte/transition';
import { flip } from 'svelte/animate';
import StickerCalendar from '$lib/components/tasks/StickerCalendar.svelte';
let { data } = $props();
let stats = $state(data.stats || { userStats: [], userStickers: [], recentCompletions: [] });
let currentUser = $derived(data.session?.user?.nickname || '');
const rarityLabels = /** @type {Record<string, string>} */ ({
common: 'Gewöhnlich',
uncommon: 'Ungewöhnlich',
rare: 'Selten',
legendary: 'Legendär'
});
const rarityOrder = /** @type {Record<string, number>} */ ({
legendary: 0,
rare: 1,
uncommon: 2,
common: 3
});
let debugShowAll = $state(false);
// Build current user's sticker collection
let displayedStickers = $derived.by(() => {
if (debugShowAll) {
/** @type {Map<string, number>} */
const all = new Map();
for (let i = 0; i < STICKERS.length; i++) all.set(STICKERS[i].id, (i % 5) + 1);
return all;
}
/** @type {Map<string, number>} */
const collection = new Map();
for (const entry of stats.userStickers) {
if (entry._id.user === currentUser) {
collection.set(entry._id.sticker, entry.count);
}
}
return collection;
});
// Sort stickers for display: owned first (by rarity), then unowned
let sortedStickers = $derived.by(() => {
return [...STICKERS].sort((a, b) => {
const aOwned = displayedStickers.has(a.id);
const bOwned = displayedStickers.has(b.id);
if (aOwned && !bOwned) return -1;
if (!aOwned && bOwned) return 1;
const rarityDiff = (rarityOrder[a.rarity] ?? 3) - (rarityOrder[b.rarity] ?? 3);
if (rarityDiff !== 0) return rarityDiff;
return a.name.localeCompare(b.name, 'de');
});
});
let collectedCount = $derived(displayedStickers.size);
let totalCount = STICKERS.length;
// Recent completions with stickers
let recentWithStickers = $derived(
stats.recentCompletions
.filter((/** @type {any} */ c) => c.stickerId)
.filter((/** @type {any} */ c) => !currentUser || c.completedBy === currentUser)
.slice(0, 20)
);
</script>
<div class="rewards-page">
<header class="page-header">
<h1>Sticker-Sammlung</h1>
<p class="subtitle">{collectedCount} / {totalCount} gesammelt</p>
<div class="progress-bar">
<div class="progress-fill" style="width: {(collectedCount / totalCount) * 100}%"></div>
</div>
<button class="debug-btn" onclick={() => debugShowAll = !debugShowAll}>
{debugShowAll ? '🐛 Debug an' : '🐛 Debug'}
</button>
</header>
<StickerCalendar completions={stats.recentCompletions} {currentUser} />
<h2 class="section-title">Alle Sticker</h2>
<div class="sticker-grid">
{#each sortedStickers as sticker (sticker.id)}
{@const count = displayedStickers.get(sticker.id) || 0}
{@const owned = count > 0}
<div
class="sticker-card"
class:owned
class:locked={!owned}
animate:flip={{ duration: 300 }}
style="--rarity-color: {getRarityColor(sticker.rarity)}"
>
<div class="sticker-visual">
{#if owned}
<img class="sticker-img" src="/stickers/{sticker.image}" alt={sticker.name} />
{:else}
<span class="sticker-unknown">?</span>
{/if}
{#if count > 1}
<span class="sticker-count">x{count}</span>
{/if}
</div>
<div class="sticker-info">
<span class="sticker-name">{owned ? sticker.name : '???'}</span>
<span class="sticker-rarity" style="color: {getRarityColor(sticker.rarity)}">
{rarityLabels[sticker.rarity]}
</span>
{#if owned}
<span class="sticker-desc">{sticker.description}</span>
{/if}
</div>
</div>
{/each}
</div>
{#if recentWithStickers.length > 0}
<section class="recent-section">
<h2>Letzte Sticker</h2>
<div class="recent-list">
{#each recentWithStickers as completion}
{@const sticker = getStickerById(completion.stickerId)}
{#if sticker}
<div class="recent-item">
<img class="recent-img" src="/stickers/{sticker.image}" alt={sticker.name} />
<div class="recent-info">
<span class="recent-task">{completion.taskTitle}</span>
<span class="recent-meta">
{completion.completedBy} &middot; {formatDistanceToNow(new Date(completion.completedAt), { locale: de, addSuffix: true })}
</span>
</div>
</div>
{/if}
{/each}
</div>
</section>
{/if}
</div>
<style>
.rewards-page {
max-width: 900px;
margin: 0 auto;
padding: 1.5rem 1rem;
}
.page-header {
text-align: center;
margin-bottom: 2rem;
}
h1 {
font-size: 1.6rem;
font-weight: 700;
margin: 0;
}
.subtitle {
margin: 0.25rem 0 0.75rem;
color: var(--color-text-secondary, #888);
font-size: 0.9rem;
}
.progress-bar {
width: 100%;
max-width: 400px;
height: 8px;
background: var(--color-bg-secondary, #e8e4dd);
border-radius: 100px;
margin: 0 auto 1rem;
overflow: hidden;
}
.progress-fill {
height: 100%;
background: linear-gradient(90deg, var(--nord14), var(--nord13));
border-radius: 100px;
transition: width 500ms ease;
}
.section-title {
font-size: 1.1rem;
font-weight: 600;
margin: 0 0 0.75rem;
}
/* Sticker grid */
.sticker-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
gap: 0.75rem;
}
.sticker-card {
display: flex;
flex-direction: column;
align-items: center;
padding: 1rem 0.5rem;
border-radius: 14px;
border: 1px solid var(--color-border, #e8e4dd);
background: var(--color-bg-primary, white);
transition: transform 150ms, box-shadow 150ms;
}
.sticker-card.owned {
border-color: var(--rarity-color);
border-width: 1.5px;
}
.sticker-card.owned:hover {
transform: translateY(-2px);
box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.sticker-card.locked {
opacity: 0.4;
filter: grayscale(0.8);
}
.sticker-visual {
position: relative;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 0.4rem;
}
.owned .sticker-visual {
background: radial-gradient(circle, color-mix(in srgb, var(--rarity-color) 20%, transparent) 0%, transparent 70%);
border-radius: 50%;
}
.sticker-img {
width: 52px;
height: 52px;
object-fit: contain;
}
.sticker-unknown {
font-size: 1.6rem;
font-weight: 700;
color: var(--color-text-secondary, #ccc);
opacity: 0.4;
}
.sticker-count {
position: absolute;
bottom: -2px;
right: -2px;
background: var(--nord10);
color: white;
font-size: 0.65rem;
font-weight: 700;
padding: 0.1rem 0.35rem;
border-radius: 100px;
line-height: 1.2;
}
.sticker-info {
text-align: center;
display: flex;
flex-direction: column;
gap: 0.1rem;
}
.sticker-name {
font-size: 0.78rem;
font-weight: 600;
}
.sticker-rarity {
font-size: 0.62rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.04em;
}
.sticker-desc {
font-size: 0.68rem;
color: var(--color-text-secondary, #999);
}
/* Recent section */
.recent-section {
margin-top: 2.5rem;
}
.recent-section h2 {
font-size: 1.1rem;
font-weight: 600;
margin: 0 0 0.75rem;
}
.recent-list {
display: flex;
flex-direction: column;
gap: 0.4rem;
}
.recent-item {
display: flex;
align-items: center;
gap: 0.6rem;
padding: 0.5rem 0.75rem;
background: var(--color-bg-primary, white);
border: 1px solid var(--color-border, #e8e4dd);
border-radius: 10px;
}
.recent-img {
width: 36px;
height: 36px;
object-fit: contain;
}
.recent-info {
display: flex;
flex-direction: column;
}
.recent-task {
font-size: 0.82rem;
font-weight: 500;
}
.recent-meta {
font-size: 0.7rem;
color: var(--color-text-secondary, #aaa);
}
/* Dark mode */
@media (prefers-color-scheme: dark) {
:global(:root:not([data-theme="light"])) .sticker-card {
background: var(--nord1);
border-color: var(--nord2);
}
:global(:root:not([data-theme="light"])) .sticker-card.owned {
border-color: var(--rarity-color);
}
:global(:root:not([data-theme="light"])) .recent-item {
background: var(--nord1);
border-color: var(--nord2);
}
:global(:root:not([data-theme="light"])) .progress-bar {
background: var(--nord2);
}
}
:global(:root[data-theme="dark"]) .sticker-card {
background: var(--nord1);
border-color: var(--nord2);
}
:global(:root[data-theme="dark"]) .sticker-card.owned {
border-color: var(--rarity-color);
}
:global(:root[data-theme="dark"]) .recent-item {
background: var(--nord1);
border-color: var(--nord2);
}
:global(:root[data-theme="dark"]) .progress-bar {
background: var(--nord2);
}
.debug-btn {
position: fixed;
bottom: 1rem;
right: 1rem;
padding: 0.35rem 0.7rem;
font-size: 0.72rem;
background: var(--nord1);
color: var(--nord4);
border: 1px solid var(--nord2);
border-radius: 6px;
cursor: pointer;
opacity: 0.5;
z-index: 50;
}
.debug-btn:hover { opacity: 1; }
@media (max-width: 600px) {
.sticker-grid {
grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
gap: 0.5rem;
}
.sticker-card { padding: 0.7rem 0.3rem; }
h1 { font-size: 1.3rem; }
}
</style>

View File

@@ -0,0 +1,83 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview15"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
showguides="true"
inkscape:zoom="2.6074563"
inkscape:cx="35.28343"
inkscape:cy="73.826742"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" /><title
id="title4279">Gutkato</title><defs
id="defs2" /><g
id="layer1"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="12.96371"
cy="12.570978"
rx="1.6752723"
ry="2.1418331"
transform="rotate(8)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(8.953004,0.69247082)"
style="stroke-width:1.07136" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /></g><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata></svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><title
id="title4279">Gutkato adorinda</title><defs
id="defs2" /><g
id="layer1"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /><g
id="g7421"
transform="translate(-4.9879053,0.4078129)"><circle
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="path379"
cx="16.075838"
cy="13.845025"
r="2.4418788" /><circle
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.793749;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="path3848"
cx="15.326144"
cy="13.152761"
r="0.90922391" /><use
x="0"
y="0"
xlink:href="#path3848"
id="use7413"
transform="matrix(0.77726379,0,0,0.77726379,5.0209783,4.3397258)"
style="stroke-width:1.28656" /><use
x="0"
y="0"
xlink:href="#path3848"
id="use7415"
transform="matrix(0.73159205,0,0,0.73159205,5.4309887,5.2006037)"
style="stroke-width:1.36688" /></g><use
x="0"
y="0"
xlink:href="#g7421"
id="use7429"
transform="translate(8.9530767,0.69245517)" /></g><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato adorinda</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata></svg>

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@@ -0,0 +1,141 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_adoras.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview17"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="1.84375"
inkscape:cx="98.169492"
inkscape:cy="36.067797"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" /><title
id="title4279">Gutkato adoras</title><defs
id="defs2" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato adoras</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><path
style="fill:#c2748e;fill-opacity:1;stroke:#382129;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 9.5948498,19.024864 c -0.5114313,6.761462 10.9230342,6.853091 11.2916232,0.678656 -1.606805,0.37096 -5.515031,-0.327349 -6.439437,-0.904978 -0.915123,0.48658 -3.469525,0.649045 -4.8521862,0.226322 z"
id="path2839" /><path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.622592;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path2893"
d="m 17.272345,21.517428 -1.048133,-1.81542 2.096266,0 z"
transform="matrix(0.84787223,0.059289,-0.059289,0.84787223,4.7120143,1.8917128)" /><use
x="0"
y="0"
xlink:href="#path2893"
id="use2895"
transform="translate(-6.2774815,-0.46438696)" /><path
style="fill:none;fill-opacity:1;stroke:#382226;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 21.151185,19.65051 c -1.761637,0.406706 -5.529568,-0.118013 -6.704149,-0.851968 -1.099304,0.58451 -3.73403,0.580351 -5.1166907,0.157628"
id="path1289" /><g
id="g1303"
transform="rotate(18,12.148968,17.314602)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 9.8210863,27.36195 c 0,-2.482737 0.8181757,-4.068697 2.7781057,-4.067827 1.95993,8.7e-4 2.778105,1.547181 2.778105,4.067827"
id="path915" /><g
id="g1296"
transform="translate(-0.0585258)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 11.599399,23.694455 v 1.058284"
id="path1283" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 12.657717,23.661518 v 1.058284"
id="use1287" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 13.716036,23.694455 v 1.058284"
id="use1291" /></g></g><g
id="g507"
transform="matrix(-0.98480775,0.17364819,0.17364819,0.98480775,27.220769,-1.4325415)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 9.8210863,27.36195 c 0,-2.482737 0.8181757,-4.068697 2.7781057,-4.067827 1.95993,8.7e-4 2.778105,1.547181 2.778105,4.067827"
id="path497" /><g
id="g505"
transform="translate(-0.0585258)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 11.599399,23.694455 v 1.058284"
id="path499" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 12.657717,23.661518 v 1.058284"
id="path501" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 13.716036,23.694455 v 1.058284"
id="path503" /></g></g><g
id="g7421"
transform="translate(-4.9879053,0.4078129)"><circle
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="path379"
cx="16.075838"
cy="13.845025"
r="2.4418788" /><circle
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.793749;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="path3848"
cx="15.326144"
cy="13.152761"
r="0.90922391" /><use
x="0"
y="0"
xlink:href="#path3848"
id="use7413"
transform="matrix(0.77726379,0,0,0.77726379,5.0209783,4.3397258)"
style="stroke-width:1.28656" /><use
x="0"
y="0"
xlink:href="#path3848"
id="use7415"
transform="matrix(0.73159205,0,0,0.73159205,5.4309887,5.2006037)"
style="stroke-width:1.36688" /></g><use
x="0"
y="0"
xlink:href="#g7421"
id="use7429"
transform="translate(8.9530767,0.69245517)" /></svg>

After

Width:  |  Height:  |  Size: 9.4 KiB

View File

@@ -0,0 +1,219 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_anĝelo.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview15"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
showguides="true"
inkscape:zoom="0.92187502"
inkscape:cx="59.661016"
inkscape:cy="60.203389"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" /><title
id="title4279">Gutkato anĝelo</title><defs
id="defs2"><linearGradient
inkscape:collect="always"
id="linearGradient3887"><stop
style="stop-color:#dbd37b;stop-opacity:1;"
offset="0"
id="stop3883" /><stop
style="stop-color:#c4bd6e;stop-opacity:1;"
offset="1"
id="stop3885" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient3854"><stop
style="stop-color:#fffbcc;stop-opacity:1;"
offset="0.66502523"
id="stop3850" /><stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0.8301456"
id="stop3858" /><stop
style="stop-color:#fffbcc;stop-opacity:1;"
offset="0.99912196"
id="stop3852" /></linearGradient><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3887"
id="linearGradient3891"
x1="8.8072786"
y1="1.2763007"
x2="27.716578"
y2="8.087944"
gradientUnits="userSpaceOnUse"
gradientTransform="rotate(2,18.210473,2.6627917)" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3854"
id="linearGradient18311"
x1="8.717145"
y1="4.5978317"
x2="27.767143"
y2="4.5978317"
gradientUnits="userSpaceOnUse"
gradientTransform="rotate(2,18.210473,2.6627917)" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10511"
id="linearGradient19952"
x1="11.609857"
y1="10.218996"
x2="13.032334"
y2="11.641474"
gradientUnits="userSpaceOnUse" /><linearGradient
inkscape:collect="always"
id="linearGradient10511"><stop
style="stop-color:#ff2626;stop-opacity:1;"
offset="0"
id="stop10507" /><stop
style="stop-color:#ff6e26;stop-opacity:1;"
offset="0.18000001"
id="stop10615" /><stop
style="stop-color:#ffed26;stop-opacity:1;"
offset="0.35805014"
id="stop10611" /><stop
style="stop-color:#26ff6e;stop-opacity:1;"
offset="0.57999998"
id="stop10617" /><stop
style="stop-color:#2693ff;stop-opacity:1;"
offset="0.77999997"
id="stop10613" /><stop
style="stop-color:#6e26ff;stop-opacity:1;"
offset="1"
id="stop10509" /></linearGradient></defs><g
id="g1805"
transform="matrix(-0.99939083,-0.0348995,-0.0348995,0.99939083,34.423791,1.1179982)"><path
style="fill:#ffffff;fill-opacity:1;stroke:#6b6b6b;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
d="m 6.8084035,14.873336 c 0,0 -0.9144403,-2.690795 -2.8546596,-1.997785 -1.9402193,0.69301 -0.2444947,5.900926 -2.4458532,12.470373 -0.80411572,2.399698 4.4117443,0.444167 4.4117443,-8.776209"
id="path1799"
sodipodi:nodetypes="czsc" /><path
style="fill:#ffffff;fill-opacity:1;stroke:#6b6b6b;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
d="m 6.9329937,13.914506 c 0,0 -2.5325738,-4.0529692 -3.3623016,-3.830645 -3.20209979,0.858 -0.1275082,2.764478 -2.85089495,12.928296 C 0.31811028,24.511273 5.70177,20.789516 5.70177,15.155771"
id="path1801"
sodipodi:nodetypes="cssc" /><path
style="fill:#ffffff;fill-opacity:1;stroke:#6b6b6b;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
d="m 6.544337,13.505707 c 0,0 -0.3813245,-5.2566935 -3.1463653,-4.9853227 C 0.63293097,8.7917552 1.9335888,12.825291 0.48113396,18.245926 -0.65663934,22.492154 3.2289609,19.527588 4.437239,11.891855 Z"
id="path1803"
sodipodi:nodetypes="csscc" /></g><g
id="g1797"
transform="rotate(2,16.662285,22.768431)"><path
style="fill:#ffffff;fill-opacity:1;stroke:#6b6b6b;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
d="m 6.8084035,14.873336 c 0,0 -0.9144403,-2.690795 -2.8546596,-1.997785 -1.9402193,0.69301 -0.2444947,5.900926 -2.4458532,12.470373 -0.80411572,2.399698 4.4117443,0.444167 4.4117443,-8.776209"
id="path1792"
sodipodi:nodetypes="czsc" /><path
style="fill:#ffffff;fill-opacity:1;stroke:#6b6b6b;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
d="m 6.9329937,13.914506 c 0,0 -2.5325738,-4.0529692 -3.3623016,-3.830645 -3.20209979,0.858 -0.1275082,2.764478 -2.85089495,12.928296 C 0.31811028,24.511273 5.70177,20.789516 5.70177,15.155771"
id="path1062"
sodipodi:nodetypes="cssc" /><path
style="fill:#ffffff;fill-opacity:1;stroke:#6b6b6b;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
d="m 6.544337,13.505707 c 0,0 -0.3813245,-5.2566935 -3.1463653,-4.9853227 C 0.63293097,8.7917552 1.9335888,12.825291 0.48113396,18.245926 -0.65663934,22.492154 3.2289609,19.527588 4.437239,11.891855 Z"
id="path300"
sodipodi:nodetypes="csscc" /></g><g
id="layer1"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="12.963636"
cy="12.570908"
rx="1.6752093"
ry="2.1417525"
transform="rotate(8)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(8.953004,0.69247082)"
style="stroke-width:1.07136" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /></g><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato anĝelo</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><path
id="path3845"
style="fill:url(#linearGradient18311);fill-opacity:1;stroke:url(#linearGradient3891);stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
d="M 18.280784,1.5569039 A 9.1281252,3.0427084 2 0 0 9.0520298,4.2791914 9.1281252,3.0427084 2 0 0 18.068406,7.6386129 9.1281252,3.0427084 2 0 0 27.297158,4.9163254 9.1281252,3.0427084 2 0 0 18.280784,1.5569039 Z m -0.05097,1.4594864 A 6.3017311,1.4500079 2 0 1 24.476797,4.6854635 6.3017311,1.4500079 2 0 1 18.128606,5.9147047 6.3017311,1.4500079 2 0 1 11.88111,4.2456125 6.3017311,1.4500079 2 0 1 18.229818,3.0163903 Z" /><path
sodipodi:type="star"
style="opacity:1;fill:url(#linearGradient19952);fill-opacity:1;stroke:none;stroke-width:0.748601;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
id="path19944"
inkscape:flatsided="false"
sodipodi:sides="4"
sodipodi:cx="12.324831"
sodipodi:cy="10.91778"
sodipodi:r1="1.3303894"
sodipodi:r2="0.53215575"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.3561945"
inkscape:rounded="0"
inkscape:randomized="0"
d="M 12.324831,12.248169 11.94854,11.294071 10.994442,10.91778 11.94854,10.541489 12.324831,9.5873905 12.701122,10.541489 13.65522,10.91778 12.701122,11.294071 Z"
transform="matrix(1.0499917,0.14756671,-0.14756671,1.0499917,-0.24192665,0.97044458)" /><use
x="0"
y="0"
xlink:href="#path19944"
id="use20829"
transform="translate(8.953004,0.69247087)" /><path
sodipodi:type="star"
style="opacity:0.2;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.748601;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
id="path20831"
inkscape:flatsided="false"
sodipodi:sides="4"
sodipodi:cx="12.324831"
sodipodi:cy="10.91778"
sodipodi:r1="1.3303894"
sodipodi:r2="0.53215575"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.3561945"
inkscape:rounded="0"
inkscape:randomized="0"
d="M 12.324831,12.248169 11.94854,11.294071 10.994442,10.91778 11.94854,10.541489 12.324831,9.5873905 12.701122,10.541489 13.65522,10.91778 12.701122,11.294071 Z"
transform="matrix(1.0499917,0.14756671,-0.14756671,1.0499917,-0.24192665,0.97044458)" /><use
x="0"
y="0"
xlink:href="#path20831"
id="use20833"
transform="translate(8.953004,0.69247087)" /></svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_kosmovojaĝisto.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview7454"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="1.84375"
inkscape:cx="93.288136"
inkscape:cy="22.508475"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" /><title
id="title4279">Gutkato kosmovojaĝisto</title><defs
id="defs2" /><g
id="layer1"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="12.96371"
cy="12.570978"
rx="1.6752723"
ry="2.1418331"
transform="rotate(8)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(8.953004,0.69247082)"
style="stroke-width:1.07136" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /></g><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato kosmovojaĝisto</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><path
style="fill:#d9d9d9;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="m 30.067065,22.578246 c -0.01225,0.310625 -0.03043,0.612264 -0.05458,0.903114 -0.04829,0.5817 -0.120418,1.120244 -0.216573,1.601216 -0.192311,0.961944 -0.480728,1.693599 -0.866752,2.079627 C 24.518224,31.573189 5.67995,31.273305 4.0639285,25.242152 3.8140634,24.30963 3.7030413,23.125239 3.7092413,21.83 c 0.00155,-0.32381 0.010426,-0.654548 0.02629,-0.990011 0.9566749,1.507774 2.7170948,2.599541 4.9105046,3.331759 1.0967051,0.366109 2.3009841,0.646792 3.5685131,0.835722 0.882355,0.131519 2.850062,0.320318 3.939931,0.338743 2.689151,0.04546 5.439504,-0.163936 7.881853,-0.644083 2.44235,-0.480147 4.576178,-1.206928 6.030732,-2.123884 z"
id="path298-3"
sodipodi:nodetypes="cssssscssssc" /><path
style="opacity:0.8;fill:#d9d9d9;fill-opacity:0.38;stroke:#000000;stroke-width:1.00542;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:0.994046;paint-order:markers fill stroke;stop-color:#000000"
d="M 6.1031676,1.8017494 C 5.0569783,2.2899979 5.1066649,9.7782143 5.1066649,9.7782143 3.7941579,11.956181 3.0994126,14.450404 3.0969685,16.993278 c 0.00237,1.398428 0.2141835,2.788615 0.6283854,4.124296 0.00332,-0.09247 0.00593,-0.184261 0.010335,-0.277503 0.956674,1.507773 2.7168869,2.599362 4.9102945,3.33158 1.096704,0.366108 2.3012466,0.646678 3.5687746,0.835608 0.882354,0.131518 2.849943,0.320572 3.939811,0.338997 2.689148,0.04546 5.439343,-0.163742 7.881689,-0.643888 2.343679,-0.460749 4.40138,-1.149271 5.849256,-2.014348 0.80144,-1.791737 1.217297,-3.731933 1.220597,-5.694742 -3.45e-4,-1.375654 -0.203374,-2.743751 -0.602547,-4.060218 0,0 2.270056,-8.1016818 1.288115,-8.925987 C 30.809738,3.1827678 25.073632,5.4791491 25.073632,5.4791491 22.820131,3.8589082 20.034613,2.988708 17.101281,2.988448 c -2.18305,0.00253 -4.33528,0.5153669 -6.284887,1.497583 0,0 -3.6670371,-3.1725301 -4.7132264,-2.6842816 z"
id="path7625"
sodipodi:nodetypes="zccccssssccczcccz" /></svg>

After

Width:  |  Height:  |  Size: 7.2 KiB

View File

@@ -0,0 +1,192 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_datreveno.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
inkscape:export-filename="gutkato_salutas.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview9395"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="1.84375"
inkscape:cx="79.186441"
inkscape:cy="88.677966"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="g4915"
showguides="true"><sodipodi:guide
position="1.3004607,38.434469"
orientation="0,-1"
id="guide2081"
inkscape:locked="false" /></sodipodi:namedview><title
id="title4279">Gutkato, datreveno</title><defs
id="defs2" /><path
id="path236"
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 10.535567,3.5207153 C 10.147914,4.8207386 8.9573044,7.7874405 9.0095622,10.690304 8.0154143,11.785314 7.0855022,14.030927 6.4257406,16.531807 6.2240111,15.940592 6.0360692,15.449148 5.9218954,15.18822 5.5676856,14.378723 5.217515,13.779893 4.8563274,13.356808 4.1339491,12.510639 3.3665066,12.367339 2.4275352,12.647807 c -0.9389716,0.280467 -1.49875115,0.832641 -1.63607582,1.942 -0.0686619,0.55468 -0.0317375,1.248531 0.11627197,2.1177 0.0740055,0.434584 0.30219405,1.427221 0.60926505,2.453597 0.6377161,2.131546 1.9618151,5.858997 4.5361572,7.414535 3.0027112,5.244642 20.3254814,5.321586 24.5313184,1.115694 1.544094,-1.544112 1.690462,-7.147543 0.719336,-12.48916 1.213623,-1.809894 1.930026,-5.5632386 1.783354,-7.3773277 -2.933359,-0.089247 -5.119283,0.3570392 -7.4042,1.2412678 C 23.013384,7.7559667 18.865654,6.8579933 15.332173,7.446057 13.49569,5.6345298 12.124561,4.5629981 10.535567,3.5207153 Z" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="15.733004"
cy="12.040848"
rx="1.6752723"
ry="2.1418331"
transform="rotate(10)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(8.9233832,1.0045043)"
style="stroke-width:1.07136" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 25.062694,18.850658 4.898877,-0.563716"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 24.99808,21.00625 4.651959,1.014106"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 10.476811,17.256052 8.2257151,16.132353"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 9.8903258,19.119826 7.7064462,18.900184"
id="path7895" /><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato, datreveno</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><path
style="fill:#c2748e;fill-opacity:1;stroke:#382129;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 11.730252,19.594465 c -0.817385,5.341071 10.922078,5.919973 11.261059,1.072315 -1.618771,0.314656 -5.500246,-0.519619 -6.403931,-1.12916 -0.931547,0.454346 -3.490062,0.527565 -4.857128,0.05685 z"
id="path2839"
sodipodi:nodetypes="ccccc" /><path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path2893"
d="m 20.141567,22.001257 -0.724684,-1.62767 1.771945,0.186239 z" /><use
x="0"
y="0"
xlink:href="#path2893"
id="use2895"
transform="translate(-6.2574506,-0.68318504)" /><path
style="fill:none;fill-opacity:1;stroke:#382226;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 23.262547,20.600031 c -1.774758,0.344978 -5.522081,-0.31092 -6.670332,-1.08542 -1.119034,0.545788 -3.752009,0.449681 -5.119074,-0.02104"
id="path1289" /><g
id="g10107"
transform="rotate(53.343868,11.162503,18.556218)"><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.891479;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="circle1002"
cx="21.432327"
cy="10.351334"
r="0.33072916"
transform="matrix(-0.34202014,0.93969262,0.93969262,0.34202014,0,0)" /><path
id="path978"
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:1.2795;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
d="M 2.672936,22.551242 A 0.84504452,0.84504452 0 0 0 3.0422118,23.57034 0.84504452,0.84504452 0 0 0 3.5055487,23.980196 0.84504452,0.84504452 0 0 0 4.588953,23.475646 0.84504452,0.84504452 0 0 0 4.63556,23.264792 0.84504452,0.84504452 0 0 0 4.734815,23.074864 0.84504452,0.84504452 0 0 0 4.2294845,21.991178 0.84504452,0.84504452 0 0 0 3.6100306,22.007718 0.84504452,0.84504452 0 0 0 2.672867,22.551311 Z" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1004"
transform="translate(-0.27004874,-0.87258957)" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1008"
transform="translate(0.02459657,-1.6821205)" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1010"
transform="translate(0.79051461,-2.1719201)"
style="stroke-width:1.00012;stroke-dasharray:none" /></g><g
id="g2092"
transform="rotate(20,21.327759,11.017304)"><path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 15.875,9.7553935 c 2.14309,2.1430895 7.350183,2.1748165 9.524999,0 L 20.6375,0.18521512 Z"
id="path309"
sodipodi:nodetypes="cccc" /><path
style="fill:none;fill-opacity:1;stroke:#cc1000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="M 21.302869,11.202682 24.435536,8.0700157"
id="path1071" /><path
style="fill:none;fill-opacity:1;stroke:#008000;stroke-width:0.793749;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="M 19.186202,11.202682 23.672285,6.7165996"
id="path1343" /><path
style="fill:none;fill-opacity:1;stroke:#000499;stroke-width:0.793749;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="M 17.61775,10.654468 22.942329,5.32989"
id="path1345" /><path
style="fill:none;fill-opacity:1;stroke:#cc1100;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="M 16.348885,9.8066644 22.317308,3.8382423"
id="path1347" /><path
style="fill:none;fill-opacity:1;stroke:#008000;stroke-width:0.793748;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="M 17.58935,6.4495321 21.594881,2.4440023"
id="path1349" /><path
style="fill:none;fill-opacity:1;stroke:#000599;stroke-width:0.793751;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="M 19.644458,2.277757 20.888475,1.0337397"
id="path1351" /><path
style="fill:none;fill-opacity:1;stroke:#000599;stroke-width:0.793747;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="M 23.898866,10.723352 25.079728,9.5424895"
id="path1353" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 15.875,9.7553935 c 2.14309,2.1430895 7.350183,2.1748165 9.524999,0 L 20.6375,0.18521512 Z"
id="path1015"
sodipodi:nodetypes="cccc" /></g><g
id="g4915"
transform="rotate(4,-63.072768,226.22837)"><path
style="fill:#52c1ff;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m -14.435931,6.236229 c 1.163028,-1.1630284 3.064389,-2.6640796 5.1965117,-2.817159 l 3.6754965,5.1944402"
id="path1135"
sodipodi:nodetypes="ccc" /><path
style="fill:#d7d198;fill-opacity:1;stroke:none;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m -14.435915,11.134629 8.8718739,2.377211 1.183e-4,-4.898268 -8.8720082,-2.377211 z"
id="path1130"
sodipodi:nodetypes="ccccc" /><g
id="g2607"
transform="translate(0,-0.0849626)"><path
style="fill:none;fill-opacity:1;stroke:#c73232;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m -14.374801,9.5812993 8.7443008,2.3430277"
id="path1251" /><path
style="fill:none;fill-opacity:1;stroke:#c73232;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m -14.374801,7.9937992 8.7443008,2.3430268"
id="path2603" /></g><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m -14.435915,11.134629 8.8718739,2.377211 1.183e-4,-4.898268 -8.8720082,-2.377211 z"
id="path1137"
sodipodi:nodetypes="ccccc" /><path
style="fill:#ff7000;fill-opacity:1;stroke:#361800;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m -10.944346,0.96028347 c 0.158524,0.13780293 0.817992,0.14359113 0.918301,-0.0620731 0,0 0.442878,-0.60095947 0.401903,-1.14773202 -0.040344,-0.53835797 -0.57125,-0.82369135 -1.06775,-1.50320565 -0.25811,0.7136067 -0.780121,0.97296107 -0.731918,1.6622927 0.01614,0.23085025 0.09863,0.71966753 0.479464,1.05071807 z"
id="path4917"
sodipodi:nodetypes="ccscsc" /><path
id="rect2723"
style="fill:#e5e5e5;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
d="m -11.244578,1.2936345 c 0.199433,-0.3843902 1.133774,-0.42052285 1.5134217,-0.1058135 0.015798,0.013096 0.037039,0.01652 0.037039,0.037039 v 4.1592539 c 0,0.02052 -0.023525,0.021599 -0.037039,0.037039 -0.3818657,0.4362809 -1.2764267,0.3851105 -1.5134217,0.1058135 -0.01328,-0.015646 -0.03704,-0.016519 -0.03704,-0.037039 V 1.3306739 c 0,-0.02052 0.01652,-0.037039 0.03704,-0.037039 z"
sodipodi:nodetypes="csssssssc" /><path
style="fill:#e5e5e5;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="M -10.471592,0.9301988 V 0.20450723"
id="path4905" /></g></svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,119 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="131.81831mm"
height="112.04431mm"
viewBox="0 0 131.81832 112.0443"
version="1.1"
id="svg2114"
sodipodi:docname="blobcat_wrapped_in_blanket.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#">
<sodipodi:namedview
id="namedview2116"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="true"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="2.587745"
inkscape:cx="233.40785"
inkscape:cy="195.34382"
inkscape:window-width="2560"
inkscape:window-height="1391"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs2111" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-12.368137,-75.876434)"
style="display:inline">
<g
id="g3124"
inkscape:label="blanket_hem">
<path
style="display:inline;fill:#ffffff;stroke-width:0.264583"
d="m 14.479231,161.21636 c 0.09954,6.93692 0.09028,7.03247 0.09028,7.03247 0,0 1.601695,1.77545 2.494989,2.56631 0.81001,0.71713 1.705431,1.33251 2.584081,1.96367 1.113509,0.79987 2.253211,1.56344 3.403843,2.30891 1.007623,0.65283 2.018185,1.30371 3.063598,1.89413 1.646479,0.92988 3.254855,1.9859 5.046089,2.59175 1.375639,0.46528 2.477927,0.9916 4.287889,0.77063 1.883073,-0.2299 2.831258,-1.35057 2.831258,-1.35057 l 1.65886,-1.98616 -0.05499,0.0882 z"
id="path3115"
inkscape:label="left"
sodipodi:nodetypes="ccaaaaascccc" />
<path
style="display:inline;fill:#ffffff;stroke-width:0.264583"
d="m 39.821221,177.23063 c 0,0 1.803715,3.19488 3.168995,4.36478 1.567102,1.34284 3.569547,2.11926 5.508197,2.82683 2.854688,1.04191 5.883357,1.56841 8.885305,2.04077 4.299516,0.67654 8.662582,0.89 13.008569,1.1265 4.39996,0.23944 8.811083,0.40823 13.216109,0.29542 4.939261,-0.12649 9.881989,-0.45947 14.782562,-1.0893 3.971512,-0.51042 7.910852,-1.28121 11.813942,-2.17525 3.27766,-0.75077 6.53578,-1.61362 9.72683,-2.67378 3.38282,-1.12387 6.70887,-2.43231 9.95756,-3.89945 1.67615,-0.75697 3.31637,-1.59953 4.90628,-2.524 1.31462,-0.7644 2.60816,-1.57528 3.82049,-2.49332 1.04241,-0.78937 2.07487,-1.61302 2.95417,-2.58078 0.91992,-1.01246 1.91126,-2.05391 2.39228,-3.33451 0.26887,-0.7158 0.22056,-2.28325 0.22056,-2.28325 l -0.15492,-7.58621 z"
id="path3118"
inkscape:label="right"
sodipodi:nodetypes="caaaaaaaaaaaaaccc" />
<path
style="display:inline;fill:#ffffff;fill-opacity:1;image-rendering:auto"
d="M 215.61356,395.63853 C 197.18858,394.73005 168.10458,399.61437 159,397.34304 143.61099,393.50393 74.747369,379.6042 67.829659,365.90754 132.43952,315.9755 303.9448,407.01047 104.74572,382.53165 91.312221,380.40011 59.639274,344.91627 47.309424,347.78832 54.151376,307.57059 59.292606,206.70024 59.960976,247.49033 45.024543,289.83284 67.040383,148.18517 58.401636,132.91122 l 15.245485,-20.6155 C 152.90506,-40.001887 332.34617,31.327271 363.09831,233.99454 c 3.40924,18.78563 -40.35962,30.16341 -40.32647,44.96956 4.8254,40.96134 19.47854,120.7166 -107.15828,116.67443 z M 72.94428,371.41903 c -1.894354,-1.41953 -6.489211,-4.12893 -10.210792,-6.02089 -125.740723,-79.79636 97.201582,-187.48107 22.584986,5.63522 -3.21501,3.82082 -7.607328,3.95772 -12.374194,0.38567 z"
id="path10944"
inkscape:label="around_face"
sodipodi:nodetypes="cscccccccccsccs"
transform="matrix(0.26458333,0,0,0.26458333,12.315389,75.581875)" />
</g>
<path
style="display:inline;fill:#f9c019;fill-opacity:1;stroke-width:0.264583;image-rendering:auto"
d="m 48.514315,149.77285 c -0.629595,-3.70085 -1.577065,-5.43232 -4.828754,-8.82437 -4.439031,-4.63064 -5.73644,-6.55409 -7.287385,-10.80379 -0.719283,-1.97088 -1.308153,-4.82115 -0.996058,-4.82115 12.762817,5.15749 -0.07353,2.48576 -0.228008,-0.11536 -0.04582,-0.72722 -0.06626,-5.69437 0.02252,-6.1676 l 0.936046,-4.18182 0.972664,4.64413 c 0.247082,1.17973 6.236753,1.1844 1.922918,1.32273 -3.059396,0.0981 -4.767449,-7.82514 -0.939861,-4.13825 0.990595,-0.83824 2.399419,2.4503 1.562833,1.64363 -2.913062,2.13961 -1.426522,-1.20267 -1.935845,-1.48253 -2.209129,-1.21388 -2.201008,-1.13297 -0.463954,-4.6218 1.646445,-3.30685 3.169218,-5.41924 5.54634,-7.69389 4.348906,-4.16142 8.910442,-6.473342 15.422822,-7.816736 3.930785,-0.810854 9.397523,-0.607769 13.686112,0.50843 5.462294,1.421679 9.871834,3.860436 13.45497,7.441456 3.393887,3.39188 5.804858,7.51701 6.97048,11.92636 1.646179,6.48634 -1.476408,15.5435 -3.63905,18.7082 -2.440241,3.57092 -8.748993,7.0056 -4.011303,-0.79161 4.079184,-4.46399 -2.529615,2.72615 -0.189833,2.92863 l 5.618654,-4.77375 c 0,0 -1.87615,3.80958 -3.212891,5.43512 -1.63597,1.98941 -3.540688,3.66233 -5.767049,5.14282 -1.937988,1.28874 -3.925392,2.25904 -6.912154,3.37471 -2.754591,1.02893 -3.639402,1.20595 -10.044811,2.00957 -7.284038,0.91385 -10.57143,1.53741 -12.027398,2.2814 -2.049682,1.04738 -2.815269,1.40366 -3.016181,1.40366 -0.101216,0 -0.378338,-1.14218 -0.615828,-2.53819 z"
id="path471"
inkscape:label="face"
sodipodi:nodetypes="sssccscsscccssssscscccasssssss" />
<path
style="display:inline;fill:#6a647a;fill-opacity:1;stroke-width:0.264583;image-rendering:auto"
d="m 69.465388,182.45418 c -4.874942,-0.24037 -12.672329,-1.141 -15.08125,-1.74196 -4.071675,-1.01576 -6.504064,-2.92792 -8.334374,-6.55183 -0.989981,-1.9601 -1.058291,-2.24206 -1.057662,-4.36562 5.29e-4,-2.06857 0.08708,-2.45125 0.973535,-4.30889 1.947383,-4.08089 7.965569,-8.83538 12.85042,-10.1521 0.836663,-0.22552 3.12855,-0.5166 5.093081,-0.64684 8.337765,-0.55275 16.335452,-3.15365 21.719143,-7.06321 2.279544,-1.65537 4.11092,-3.01634 5.797524,-4.90357 1.861124,-2.08251 3.486404,-4.42885 4.660967,-6.96282 1.414021,-3.05058 2.332539,-6.3655 2.770096,-9.69927 0.379117,-2.88851 0.274256,-5.92275 -0.150183,-8.73857 C 96.677591,103.85799 84.867123,92.865967 69.876733,90.487391 66.322453,89.923422 59.199629,90.128153 55.937356,90.88805 c -7.04511,1.641054 -12.644132,5.016889 -17.655736,9.41883 -2.923297,2.56768 -4.821341,6.1401 -6.776567,9.50399 -0.799245,1.37507 -2.004708,4.32985 -2.004708,4.32985 -2.308691,-1.67602 -3.225727,-2.15021 -4.996944,-4.0357 l 2.845437,-5.55621 c 2.719265,-5.30983 4.152571,-6.47119 6.598261,-9.387769 2.037548,-2.429853 2.806572,-3.188804 5.974102,-5.895853 1.349304,-1.153148 1.542392,-1.458876 2.172296,-3.439583 0.380246,-1.195666 0.758052,-3.066907 0.839573,-4.158313 0.174633,-2.338083 0.832342,-3.915132 2.095243,-5.023975 1.208752,-1.061298 2.094574,-1.03858 6.933607,0.177822 4.782535,1.2022 8.115324,1.305269 13.137843,0.4063 5.452883,-0.976 8.993648,-1.195723 16.801042,-1.042594 5.800508,0.113768 7.874288,0.254581 10.226077,0.694366 5.341255,0.998816 11.952808,3.160214 16.181998,5.290093 2.91496,1.468017 3.85375,1.663747 9.04609,1.886051 5.38518,0.23056 7.31446,0.637477 8.35728,1.76269 1.03945,1.121585 1.7084,3.374143 1.98525,6.684913 0.58729,7.023229 0.39299,6.419319 4.21667,13.105692 4.74681,8.30062 7.89382,17.79365 10.30722,31.09197 0.90203,4.97037 1.8908,14.6191 1.89957,18.53656 0.007,3.26 -0.25461,3.83023 -3.15591,6.87082 -8.6736,9.09003 -20.00594,14.6018 -37.5028,18.24043 -10.240779,2.12967 -20.554968,2.76852 -33.996862,2.10575 z M 31.61523,173.85316 c -0.501215,-0.37559 -1.716938,-1.09245 -2.701606,-1.59303 -4.514124,-2.29486 -8.294355,-5.00335 -11.89171,-8.52026 l -2.569517,-2.51206 0.130444,-4.78912 c 0.329165,-12.08488 2.264335,-24.49925 5.457823,-35.01265 0.801341,-2.63812 1.601738,-5.38395 2.266264,-5.21716 6.905335,2.70594 6.439499,-1.53963 6.680131,8.86085 0.16456,1.54291 0.575606,3.46189 0.948607,5.17576 0.227196,1.04392 0.427604,2.10061 0.784632,3.10755 0.257844,0.72721 0.601776,1.42392 0.973663,2.09995 0.64963,1.18092 1.458606,2.27078 2.187726,3.40046 3.319947,4.69943 8.712875,8.54664 9.387761,13.57261 0.380476,3.0009 -0.03984,4.48694 -2.243429,7.93171 -0.492514,0.76992 -1.278384,2.16164 -1.746379,3.09271 -0.467998,0.93107 -1.214218,2.40723 -1.65827,3.28035 -0.444051,0.87313 -0.836319,1.86545 -0.871707,2.20516 -0.128643,1.23498 -1.21601,4.04928 -1.860428,4.81513 -0.850638,1.01092 -2.012772,1.04714 -3.274005,0.10204 z m -10.075727,-56.7694 1.239663,-3.48666 c 0.489418,-1.37653 1.582729,-3.60218 1.799079,-3.54918 0.552589,0.13534 4.449414,2.02234 5.135998,2.41697 0.67563,0.38833 -0.729604,5.28558 -1.150111,8.06034 -2.318407,-1.13232 -4.706224,-2.30914 -7.024629,-3.44147 z"
id="path467"
inkscape:label="blanket"
sodipodi:nodetypes="ssscssssaaasssaaccssssssssssssssssssssssscssccaaaccsssssscssscc" />
<path
style="display:inline;fill:#333333;fill-opacity:1;stroke-width:0.264583;image-rendering:auto"
d="m 40.193127,177.53387 c -1.394317,-3.33707 -1.842486,-8.56477 -1.009756,-11.77837 1.198309,-4.62443 4.258262,-8.78887 9.1796,-12.49297 1.834687,-1.38089 2.594813,-1.75981 2.572181,-1.28222 -0.0052,0.10914 -0.900859,0.84344 -1.990413,1.63177 -4.148735,3.00177 -7.57369,7.30515 -8.86156,11.13438 -1.141629,3.39441 -0.9663,8.10284 0.442063,11.8716 0.726681,1.94459 0.715897,1.88673 0.351645,1.88673 -0.152945,0 -0.460637,-0.43691 -0.68376,-0.97092 z"
id="path461"
inkscape:label="sleeve_line"
sodipodi:nodetypes="sssssssss" />
<path
style="display:inline;fill:#2b1100;fill-opacity:1;stroke-width:0.264583;image-rendering:auto"
d="m 88.250804,137.61912 c -5.79863,-0.15897 -6.24891,-0.20656 -6.68073,-0.70608 -0.55639,-0.64364 -0.59593,-1.36022 -0.0979,-1.77359 0.40329,-0.3347 20.342746,-0.42811 27.548376,-0.12905 4.13037,0.17142 5.15938,0.44642 5.15938,1.37883 0,1.06334 -0.33089,1.10515 -8.74724,1.10515 -5.963606,0.35856 -11.929236,0.28753 -17.181926,0.12474 z m -2.46944,-6.38655 c -0.30096,-0.30095 -0.19384,-1.59734 0.15434,-1.86786 0.1819,-0.14134 1.50382,-0.3964 2.9376,-0.56681 1.43378,-0.17041 2.82494,-0.42654 3.09146,-0.56918 0.26652,-0.14264 1.21937,-0.25934 2.11744,-0.25934 0.89806,0 2.30488,-0.16259 3.12625,-0.36131 0.82136,-0.19872 2.44589,-0.37842 3.610056,-0.39934 1.16417,-0.0209 3.57777,-0.27505 5.36356,-0.56473 1.7858,-0.28969 3.83054,-0.52671 4.54388,-0.52671 0.71334,0 1.89943,-0.13906 2.63576,-0.30902 1.77191,-0.40901 2.74468,-0.0266 2.62156,1.03045 -0.0642,0.55096 -0.26727,0.75861 -0.87726,0.89694 -0.43656,0.099 -1.36101,0.31115 -2.05432,0.47144 -0.69331,0.1603 -1.96276,0.29144 -2.82099,0.29144 -0.85824,0 -2.49364,0.18474 -3.63423,0.41054 -1.14058,0.22579 -3.41738,0.50874 -5.05955,0.62877 -2.253036,0.16468 -3.111666,0.33219 -3.498836,0.68258 -0.42888,0.38812 -1.13306,0.47721 -4.29029,0.54275 -2.07746,0.0431 -4.19313,0.20608 -4.70149,0.3621 -1.02856,0.31568 -2.99203,0.38021 -3.26494,0.10729 z M 37.753432,126.4966 c -0.757764,-0.61344 -2.032514,-0.76588 -2.727423,-1.11076 -0.04881,-0.11307 -1.219838,-0.7153 -2.602286,-1.33828 -1.382447,-0.62299 -2.811197,-1.3411 -3.175,-1.59582 -0.363802,-0.25471 -1.316302,-0.73954 -2.116666,-1.07739 -0.800365,-0.33786 -2.313034,-1.0836 -3.361488,-1.6572 -3.892447,-1.24806 -7.434232,-3.79758 -10.816566,-5.25021 -0.552253,-0.20996 -0.664833,-0.38855 -0.539559,-0.85592 0.08707,-0.32483 0.15993,-0.91802 0.161917,-1.3182 0.002,-0.40019 0.123706,-0.72761 0.270487,-0.72761 0.146781,0 0.633448,0.32742 1.081483,0.72761 0.959079,0.85664 -0.335418,0.42823 -0.335418,-0.003 0,-0.18081 2.343266,0.67244 2.625081,0.91538 0.254662,0.21953 0.820209,0.58225 1.256771,0.80603 0.436563,0.22378 1.482694,0.77554 2.324736,1.22614 0.842043,0.4506 1.615949,0.79561 1.719792,0.76668 0.103843,-0.0289 1.736618,0.69612 3.628389,1.61121 1.891771,0.91509 4.153958,1.98125 5.027083,2.36924 0.873125,0.388 2.420938,1.14975 3.439583,1.6928 1.018646,0.54305 2.62599,1.35458 3.571875,1.8034 5.160415,2.44864 5.48132,2.71146 4.503981,3.6888 -0.764153,0.76415 -1.437674,0.64902 -3.936772,-0.67297 z m -0.594748,-6.95333 c -0.931675,-0.7053 -2.059431,-1.47135 -2.506124,-1.70235 -0.446693,-0.23099 -0.966904,-0.60643 -1.156024,-0.8343 -1.093221,-0.596 -2.210366,-1.1905 -3.054501,-1.87696 -0.981415,-0.80445 -2.901554,-2.06488 -4.266976,-2.80096 -1.365422,-0.73608 -2.482585,-1.44609 -2.482585,-1.57781 0,-0.13172 -0.625079,-0.60305 -1.389063,-1.0474 -2.020684,-1.17527 -2.21958,-1.2982 -4.777512,-2.95286 -2.794768,-2.00879 -3.695448,-1.81729 -4.225709,-3.3875 -0.197529,-0.64514 0.282628,-1.5875 0.808867,-1.5875 0.268292,0 0.718613,0.21023 1.000714,0.46718 4.575245,3.03195 9.141319,6.11851 13.596352,8.78477 0.938497,0.57726 1.754842,1.00108 1.814102,0.94182 0.05926,-0.0592 0.338341,0.10709 0.620182,0.36967 0.281841,0.26257 1.13237,0.81163 1.890064,1.22012 0.757695,0.4085 1.913409,1.21074 2.568252,1.78277 0.654844,0.57203 1.607344,1.25949 2.116667,1.5277 0.509323,0.26821 1.380453,0.92581 1.935845,1.46134 l 1.009801,0.97369 -0.728573,0.76047 c -0.400716,0.41826 -0.807606,0.76047 -0.9042,0.76047 -0.09659,0 -0.937904,-0.57706 -1.869579,-1.28236 z"
id="path473"
inkscape:label="whiskers"
sodipodi:nodetypes="cssssccssssssssssssssssssssccsssccssssssssssssssscssccsssccsccssssscssss" />
<path
id="path3237"
style="display:inline;fill:#333333;fill-opacity:1;stroke-width:0.264583;image-rendering:auto"
inkscape:label="eyes_and_mouth"
d="m 42.903739,112.42062 c -0.236913,-0.0124 -0.478345,0.13976 -0.731736,0.45269 -0.639919,0.79025 -0.617549,1.96073 0.06408,3.36878 0.645184,1.33278 1.634437,2.11371 3.058726,2.41433 1.099852,0.23213 2.542442,0.0579 3.417364,-0.4129 0.659841,-0.35509 2.761588,-2.59767 2.761588,-2.94659 0,-1.3903 -1.115428,-1.40059 -2.942973,-0.0274 -2.209919,1.6605 -3.277071,1.32525 -4.440555,-1.39475 -0.408665,-0.95536 -0.791634,-1.43353 -1.186493,-1.45417 z m 40.972175,4.72374 c -0.54889,-0.0599 -1.06081,0.43005 -1.63297,1.54771 -0.92253,1.80209 -1.33396,2.13372 -2.64945,2.13372 -1.572883,0 -2.057173,-0.31039 -3.149173,-2.01745 -0.72431,-1.1323 -1.05822,-1.43596 -1.5074,-1.37201 -0.86322,0.12291 -0.92867,2.07017 -0.12247,3.63854 0.74923,1.45757 1.71312,2.18056 3.17862,2.38487 2.870543,0.40019 5.455733,-0.82931 6.271453,-2.98225 0.44798,-1.18235 0.36051,-3.07797 -0.1509,-3.27422 -0.0802,-0.0308 -0.15929,-0.0504 -0.23771,-0.0589 z m -34.18861,7.12102 c -1.747578,0 -1.489654,3.16443 0.61857,7.58299 1.359635,2.84965 2.144072,3.6229 3.274734,3.22875 0.417222,-0.14545 1.792515,-1.20892 3.056144,-2.36316 1.263629,-1.15426 2.453279,-2.09858 2.643769,-2.09858 0.19049,0 1.01252,0.99076 1.82676,2.20193 0.81424,1.21118 1.90593,2.69947 2.42621,3.30729 0.52027,0.60783 1.1048,1.10536 1.29914,1.10536 0.52007,0 4.29448,-2.86564 6.43837,-4.88808 1.87411,-1.76794 2.38431,-2.73045 2.03295,-3.83749 -0.38573,-1.2153 -1.32191,-0.68405 -5.93711,3.36776 -1.03596,0.90949 -1.98577,1.65364 -2.11046,1.65364 -0.12469,0 -0.73343,-0.80368 -1.35289,-1.78594 -2.30236,-3.65078 -3.53549,-5.41364 -3.87883,-5.54539 -0.56476,-0.21672 -1.63851,0.62564 -4.205948,3.29902 l -2.401403,2.50062 -0.972034,-2.53886 c -0.534443,-1.3963 -0.971516,-2.82004 -0.971516,-3.16415 0,-0.762 -1.114467,-2.02571 -1.786456,-2.02571 z"
sodipodi:nodetypes="ssssssssscsssssssscsssssscssssscscccss" />
</g>
<metadata
id="metadata10691">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -0,0 +1,147 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_libro.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><title
id="title2591">Gutkato, libro</title><sodipodi:namedview
id="namedview15"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
showguides="true"
inkscape:zoom="1.84375"
inkscape:cx="11.932203"
inkscape:cy="74.033898"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" /><defs
id="defs2" /><g
id="layer1"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="12.96371"
cy="12.570978"
rx="1.6752723"
ry="2.1418331"
transform="rotate(8)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(8.953004,0.69247082)"
style="stroke-width:1.07136" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /></g><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date><dc:title>Gutkato, libro</dc:title></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><g
id="g2587"
transform="rotate(2,629.37651,0.66971074)"><g
id="g1078"
transform="translate(0.10051564,1.0330724)"><path
style="fill:#f0e2ca;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;stop-color:#000000"
d="m 27.126988,36.844915 -0.529167,-1.347909 c -3.640441,0 -11.262715,0.564039 -11.262715,2.353489"
id="path1071"
sodipodi:nodetypes="ccc" /><path
style="fill:#f0e2ca;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;stop-color:#000000"
d="m 3.5432243,36.844915 0.5291666,-1.347909 c 3.6404416,0 11.2627151,0.564039 11.2627151,2.353489"
id="path1069"
sodipodi:nodetypes="ccc" /><path
id="rect351"
style="fill:#5c3b24;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;stop-color:#000000"
d="M 3.0319815,36.795038 13.879898,37.853371 V 52.93462 L 3.0319815,51.876287 Z"
sodipodi:nodetypes="ccccc" /><path
id="rect966"
style="fill:#5c3b24;stroke:#000000;stroke-width:0.793748;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;stop-color:#000000"
d="m 13.879898,37.853371 h 2.910416 V 52.93462 h -2.910416 z" /><path
id="rect968"
style="fill:#5c3b24;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;stop-color:#000000"
d="M 16.790314,37.853371 27.63823,36.795038 V 51.876287 L 16.790314,52.93462 Z"
sodipodi:nodetypes="ccccc" /></g><text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:2.46944px;line-height:0;font-family:'Gentium Book Plus';-inkscape-font-specification:'Gentium Book Plus Medium';text-align:center;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#e4b951;fill-opacity:1;stroke:none;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;stop-color:#000000"
x="22.344933"
y="43.833378"
id="text2425"
transform="skewY(-6)"><tspan
sodipodi:role="line"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:2.46944px;line-height:1;font-family:'Gentium Book Plus';-inkscape-font-specification:'Gentium Book Plus Bold';fill:#e4b951;fill-opacity:1;stroke:none;stroke-width:0.79375"
x="22.344933"
y="43.833378"
id="tspan2431"> FUNDA-</tspan><tspan
sodipodi:role="line"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:2.46944px;line-height:1;font-family:'Gentium Book Plus';-inkscape-font-specification:'Gentium Book Plus Bold';fill:#e4b951;fill-opacity:1;stroke:none;stroke-width:0.79375"
x="22.344933"
y="46.302818"
id="tspan2441">MENTO</tspan><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:2.46944px;line-height:1.2;font-family:'Gentium Book Plus';-inkscape-font-specification:'Gentium Book Plus Bold';fill:#e4b951;fill-opacity:1;stroke:none;stroke-width:0.79375"
sodipodi:role="line"
id="tspan2471"
x="22.344933"
y="49.019203">DE</tspan><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:2.46944px;line-height:1;font-family:'Gentium Book Plus';-inkscape-font-specification:'Gentium Book Plus Bold';fill:#e4b951;fill-opacity:1;stroke:none;stroke-width:0.79375"
sodipodi:role="line"
id="tspan2457"
x="22.344933"
y="51.735584"> ESPER-</tspan><tspan
sodipodi:role="line"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:2.46944px;line-height:1;font-family:'Gentium Book Plus';-inkscape-font-specification:'Gentium Book Plus Bold';fill:#e4b951;fill-opacity:1;stroke:none;stroke-width:0.79375"
x="22.344933"
y="54.205025"
id="tspan2445">ANTO</tspan></text></g><text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8.46667px;line-height:0.01%;font-family:'Gentium Book Plus';-inkscape-font-specification:'Gentium Book Plus Medium';text-align:center;text-decoration-color:#000000;letter-spacing:6.03525px;word-spacing:0px;text-anchor:middle;fill:#f0e2ca;fill-opacity:1;stroke:none;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;stop-color:#000000"
x="38.977058"
y="42.542854"
id="text2437"><tspan
sodipodi:role="line"
id="tspan2435"
style="stroke-width:0.79375"
x="38.977058"
y="42.542854" /></text></svg>

After

Width:  |  Height:  |  Size: 10 KiB

View File

@@ -0,0 +1,563 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_purpura.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview17"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="1.3037282"
inkscape:cx="83.989902"
inkscape:cy="110.83599"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="g7243" /><title
id="title4279">Gutkato pura</title><defs
id="defs2"><linearGradient
inkscape:collect="always"
id="linearGradient8699"><stop
style="stop-color:#ff2626;stop-opacity:0;"
offset="0"
id="stop8695" /><stop
style="stop-color:#6e26ff;stop-opacity:0;"
offset="0.60226071"
id="stop8711" /><stop
style="stop-color:#6e26ff;stop-opacity:1;"
offset="0.65937889"
id="stop8707" /><stop
style="stop-color:#2693ff;stop-opacity:1;"
offset="0.74224907"
id="stop8713" /><stop
style="stop-color:#26ff6e;stop-opacity:1;"
offset="0.82035089"
id="stop8703" /><stop
style="stop-color:#ffed26;stop-opacity:1;"
offset="0.87777418"
id="stop8715" /><stop
style="stop-color:#ff6e26;stop-opacity:1;"
offset="0.92098421"
id="stop8705" /><stop
style="stop-color:#ff2626;stop-opacity:1;"
offset="0.9605915"
id="stop8717" /><stop
style="stop-color:#ff2626;stop-opacity:0;"
offset="1"
id="stop8697" /></linearGradient><radialGradient
inkscape:collect="always"
xlink:href="#linearGradient8699"
id="radialGradient8701"
cx="72.177666"
cy="13.113784"
fx="72.177666"
fy="13.113784"
r="33.866665"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.43750005,0,0,0.43750005,-14.644398,9.0793872)" /></defs><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><circle
style="opacity:0.1;fill:url(#radialGradient8701);fill-opacity:1;stroke:none;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stop-color:#000000"
id="path8693"
cx="16.933332"
cy="14.816667"
r="14.816667" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato pura</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><path
style="fill:none;fill-opacity:0.6;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
d="m 9.3849149,14.378834 c 0.9021801,-1.154738 2.8479581,-0.902945 3.4061821,0.478707"
id="path304" /><use
x="0"
y="0"
xlink:href="#path304"
id="use470"
transform="translate(8.9530039,0.69247088)" /><path
style="fill:#c2748e;fill-opacity:1;stroke:#382129;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 9.5948498,19.024864 c -0.5114313,6.761462 10.9230342,6.853091 11.2916232,0.678656 -1.606805,0.37096 -5.515031,-0.327349 -6.439437,-0.904978 -0.915123,0.48658 -3.469525,0.649045 -4.8521862,0.226322 z"
id="path2839" /><g
id="g7271"
transform="translate(2.2180317,-8.8705534)"
style="opacity:0.8"><g
id="g7195"
transform="translate(-33.580734,12.513202)"
style="stroke:#800d0d;stroke-opacity:1;fill:#e57373;fill-opacity:1"><g
id="g7097"
transform="translate(9.0337451,7.8590196)"
style="stroke:#800d0d;stroke-opacity:1;fill:#e57373;fill-opacity:1"><path
sodipodi:type="spiral"
style="fill:#e57373;fill-opacity:1;fill-rule:evenodd;stroke:#800d0d;stroke-width:1.50041;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path1834"
sodipodi:cx="44.793747"
sodipodi:cy="5.9240394"
sodipodi:expansion="1.34"
sodipodi:revolution="1.5484091"
sodipodi:radius="7.1259093"
sodipodi:argument="-9.4101362"
sodipodi:t0="0.229"
d="m 45.409025,5.1502443 c 0.935411,0.122563 1.233094,1.2599949 0.966527,2.0315583 -0.50061,1.4489909 -2.295556,1.8428163 -3.581657,1.2573183 -2.011502,-0.9157368 -2.513649,-3.4842753 -1.547357,-5.3356236 1.366983,-2.61904172 4.794101,-3.23645455 7.25458,-1.8419728 2.400242,1.3603422 3.550743,4.2255532 3.059468,6.8960036"
transform="matrix(-0.61087412,0.35647324,0.34890344,0.61087413,73.882097,-6.6636759)" /><path
sodipodi:type="spiral"
style="fill:#e57373;fill-opacity:1;fill-rule:evenodd;stroke:#800d0d;stroke-width:1.50041;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path7070"
sodipodi:cx="44.793747"
sodipodi:cy="5.9240394"
sodipodi:expansion="1.34"
sodipodi:revolution="1.5878316"
sodipodi:radius="7.3700695"
sodipodi:argument="-9.4101362"
sodipodi:t0="0.22400001"
d="m 45.416858,5.1513029 c 0.936679,0.1305436 1.226924,1.2725201 0.953852,2.0443518 -0.512252,1.4478656 -2.313002,1.8298359 -3.597416,1.2340003 -2.00773,-0.9313801 -2.492762,-3.506867 -1.512042,-5.3541128 1.386923,-2.61235359 4.822087,-3.20679951 7.275699,-1.7935471 2.969501,1.7103984 3.873577,5.5729772 2.47553,8.5974539"
transform="matrix(-0.35079589,0.61415194,0.60759631,0.3545808,57.915673,-16.774807)" /><path
sodipodi:type="spiral"
style="fill:#e57373;fill-opacity:1;fill-rule:evenodd;stroke:#800d0d;stroke-width:1.50041;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path7072"
sodipodi:cx="44.793747"
sodipodi:cy="5.9240394"
sodipodi:expansion="1.34"
sodipodi:revolution="1.6133507"
sodipodi:radius="7.5292273"
sodipodi:argument="-9.4101362"
sodipodi:t0="0.20057641"
d="m 45.195352,5.1471069 c 0.873369,-0.092593 1.361914,0.8984278 1.271442,1.6417489 -0.175749,1.4439563 -1.776035,2.1478769 -3.077307,1.851821 -2.069404,-0.4708153 -3.025871,-2.7973477 -2.470999,-4.719802 0.792786,-2.7467512 3.930218,-3.97981751 6.527065,-3.12693541 3.470177,1.13970971 4.999212,5.15624191 3.816792,8.47379061 -0.208861,0.5860096 -0.493322,1.144598 -0.8422,1.659599"
transform="matrix(0.00327782,0.70726913,0.70348424,0.00327783,39.060828,-17.561511)" /></g><path
style="opacity:1;fill:#e57373;fill-opacity:1;stroke:#800d0d;stroke-width:1.00542;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
d="m 55.972081,26.001101 c -2.119513,-2.119513 -0.342903,-3.551323 0.332755,-4.226982"
id="path7188"
sodipodi:nodetypes="cc" /></g><g
id="g7207"
transform="translate(-30.629525,15.350192)"><g
id="g7203"
transform="translate(9.0337451,7.8590196)"
style="fill:#e57373;fill-opacity:1;stroke:#800d0d;stroke-opacity:1"><path
sodipodi:type="spiral"
style="fill:#e57373;fill-opacity:1;fill-rule:evenodd;stroke:#800d0d;stroke-width:1.50041;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path7197"
sodipodi:cx="44.793747"
sodipodi:cy="5.9240394"
sodipodi:expansion="1.34"
sodipodi:revolution="1.5484091"
sodipodi:radius="7.1259093"
sodipodi:argument="-9.4101362"
sodipodi:t0="0.229"
d="m 45.409025,5.1502443 c 0.935411,0.122563 1.233094,1.2599949 0.966527,2.0315583 -0.50061,1.4489909 -2.295556,1.8428163 -3.581657,1.2573183 -2.011502,-0.9157368 -2.513649,-3.4842753 -1.547357,-5.3356236 1.366983,-2.61904172 4.794101,-3.23645455 7.25458,-1.8419728 2.400242,1.3603422 3.550743,4.2255532 3.059468,6.8960036"
transform="matrix(-0.61087412,0.35647324,0.34890344,0.61087413,73.882097,-6.6636759)" /><path
sodipodi:type="spiral"
style="fill:#e57373;fill-opacity:1;fill-rule:evenodd;stroke:#800d0d;stroke-width:1.50041;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path7199"
sodipodi:cx="44.793747"
sodipodi:cy="5.9240394"
sodipodi:expansion="1.34"
sodipodi:revolution="1.5878316"
sodipodi:radius="7.3700695"
sodipodi:argument="-9.4101362"
sodipodi:t0="0.22400001"
d="m 45.416858,5.1513029 c 0.936679,0.1305436 1.226924,1.2725201 0.953852,2.0443518 -0.512252,1.4478656 -2.313002,1.8298359 -3.597416,1.2340003 -2.00773,-0.9313801 -2.492762,-3.506867 -1.512042,-5.3541128 1.386923,-2.61235359 4.822087,-3.20679951 7.275699,-1.7935471 2.969501,1.7103984 3.873577,5.5729772 2.47553,8.5974539"
transform="matrix(-0.35079589,0.61415194,0.60759631,0.3545808,57.915673,-16.774807)" /><path
sodipodi:type="spiral"
style="fill:#e57373;fill-opacity:1;fill-rule:evenodd;stroke:#800d0d;stroke-width:1.50041;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path7201"
sodipodi:cx="44.793747"
sodipodi:cy="5.9240394"
sodipodi:expansion="1.34"
sodipodi:revolution="1.6133507"
sodipodi:radius="7.5292273"
sodipodi:argument="-9.4101362"
sodipodi:t0="0.20057641"
d="m 45.195352,5.1471069 c 0.873369,-0.092593 1.361914,0.8984278 1.271442,1.6417489 -0.175749,1.4439563 -1.776035,2.1478769 -3.077307,1.851821 -2.069404,-0.4708153 -3.025871,-2.7973477 -2.470999,-4.719802 0.792786,-2.7467512 3.930218,-3.97981751 6.527065,-3.12693541 3.470177,1.13970971 4.999212,5.15624191 3.816792,8.47379061 -0.208861,0.5860096 -0.493322,1.144598 -0.8422,1.659599"
transform="matrix(0.00327782,0.70726913,0.70348424,0.00327783,39.060828,-17.561511)" /></g><path
style="opacity:1;fill:none;fill-opacity:1;stroke:#800d0d;stroke-width:1.00542;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
d="m 55.972081,26.001101 c -2.119513,-2.119513 -0.342903,-3.551323 0.332755,-4.226982"
id="path7205"
sodipodi:nodetypes="cc" /></g></g><g
id="g7257"
transform="translate(3.8055319,-8.870553)"
style="opacity:0.8"><g
id="g7231"
transform="matrix(-1,0,0,1,59.836337,12.513202)"
style="fill:#e57373;fill-opacity:1;stroke:#800d0d;stroke-opacity:1"><g
id="g7227"
transform="translate(9.0337451,7.8590196)"
style="fill:#e57373;fill-opacity:1;stroke:#800d0d;stroke-opacity:1"><path
sodipodi:type="spiral"
style="fill:#e57373;fill-opacity:1;fill-rule:evenodd;stroke:#800d0d;stroke-width:1.50041;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path7221"
sodipodi:cx="44.793747"
sodipodi:cy="5.9240394"
sodipodi:expansion="1.34"
sodipodi:revolution="1.5484091"
sodipodi:radius="7.1259093"
sodipodi:argument="-9.4101362"
sodipodi:t0="0.229"
d="m 45.409025,5.1502443 c 0.935411,0.122563 1.233094,1.2599949 0.966527,2.0315583 -0.50061,1.4489909 -2.295556,1.8428163 -3.581657,1.2573183 -2.011502,-0.9157368 -2.513649,-3.4842753 -1.547357,-5.3356236 1.366983,-2.61904172 4.794101,-3.23645455 7.25458,-1.8419728 2.400242,1.3603422 3.550743,4.2255532 3.059468,6.8960036"
transform="matrix(-0.61087412,0.35647324,0.34890344,0.61087413,73.882097,-6.6636759)" /><path
sodipodi:type="spiral"
style="fill:#e57373;fill-opacity:1;fill-rule:evenodd;stroke:#800d0d;stroke-width:1.50041;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path7223"
sodipodi:cx="44.793747"
sodipodi:cy="5.9240394"
sodipodi:expansion="1.34"
sodipodi:revolution="1.5878316"
sodipodi:radius="7.3700695"
sodipodi:argument="-9.4101362"
sodipodi:t0="0.22400001"
d="m 45.416858,5.1513029 c 0.936679,0.1305436 1.226924,1.2725201 0.953852,2.0443518 -0.512252,1.4478656 -2.313002,1.8298359 -3.597416,1.2340003 -2.00773,-0.9313801 -2.492762,-3.506867 -1.512042,-5.3541128 1.386923,-2.61235359 4.822087,-3.20679951 7.275699,-1.7935471 2.969501,1.7103984 3.873577,5.5729772 2.47553,8.5974539"
transform="matrix(-0.35079589,0.61415194,0.60759631,0.3545808,57.915673,-16.774807)" /><path
sodipodi:type="spiral"
style="fill:#e57373;fill-opacity:1;fill-rule:evenodd;stroke:#800d0d;stroke-width:1.50041;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path7225"
sodipodi:cx="44.793747"
sodipodi:cy="5.9240394"
sodipodi:expansion="1.34"
sodipodi:revolution="1.6133507"
sodipodi:radius="7.5292273"
sodipodi:argument="-9.4101362"
sodipodi:t0="0.20057641"
d="m 45.195352,5.1471069 c 0.873369,-0.092593 1.361914,0.8984278 1.271442,1.6417489 -0.175749,1.4439563 -1.776035,2.1478769 -3.077307,1.851821 -2.069404,-0.4708153 -3.025871,-2.7973477 -2.470999,-4.719802 0.792786,-2.7467512 3.930218,-3.97981751 6.527065,-3.12693541 3.470177,1.13970971 4.999212,5.15624191 3.816792,8.47379061 -0.208861,0.5860096 -0.493322,1.144598 -0.8422,1.659599"
transform="matrix(0.00327782,0.70726913,0.70348424,0.00327783,39.060828,-17.561511)" /></g><path
style="opacity:1;fill:#e57373;fill-opacity:1;stroke:#800d0d;stroke-width:1.00542;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
d="m 55.972081,26.001101 c -2.119513,-2.119513 -0.342903,-3.551323 0.332755,-4.226982"
id="path7229"
sodipodi:nodetypes="cc" /></g><g
id="g7243"
transform="matrix(-1,0,0,1,56.885128,15.350192)"><g
id="g7239"
transform="translate(9.0337451,7.8590196)"
style="stroke:#800d0d;stroke-opacity:1;fill:#e57373;fill-opacity:1"><path
sodipodi:type="spiral"
style="fill:#e57373;fill-opacity:1;fill-rule:evenodd;stroke:#800d0d;stroke-width:1.50041;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path7233"
sodipodi:cx="44.793747"
sodipodi:cy="5.9240394"
sodipodi:expansion="1.34"
sodipodi:revolution="1.5484091"
sodipodi:radius="7.1259093"
sodipodi:argument="-9.4101362"
sodipodi:t0="0.229"
d="m 45.409025,5.1502443 c 0.935411,0.122563 1.233094,1.2599949 0.966527,2.0315583 -0.50061,1.4489909 -2.295556,1.8428163 -3.581657,1.2573183 -2.011502,-0.9157368 -2.513649,-3.4842753 -1.547357,-5.3356236 1.366983,-2.61904172 4.794101,-3.23645455 7.25458,-1.8419728 2.400242,1.3603422 3.550743,4.2255532 3.059468,6.8960036"
transform="matrix(-0.61087412,0.35647324,0.34890344,0.61087413,73.882097,-6.6636759)" /><path
sodipodi:type="spiral"
style="fill:#e57373;fill-opacity:1;fill-rule:evenodd;stroke:#800d0d;stroke-width:1.50041;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path7235"
sodipodi:cx="44.793747"
sodipodi:cy="5.9240394"
sodipodi:expansion="1.34"
sodipodi:revolution="1.5878316"
sodipodi:radius="7.3700695"
sodipodi:argument="-9.4101362"
sodipodi:t0="0.22400001"
d="m 45.416858,5.1513029 c 0.936679,0.1305436 1.226924,1.2725201 0.953852,2.0443518 -0.512252,1.4478656 -2.313002,1.8298359 -3.597416,1.2340003 -2.00773,-0.9313801 -2.492762,-3.506867 -1.512042,-5.3541128 1.386923,-2.61235359 4.822087,-3.20679951 7.275699,-1.7935471 2.969501,1.7103984 3.873577,5.5729772 2.47553,8.5974539"
transform="matrix(-0.35079589,0.61415194,0.60759631,0.3545808,57.915673,-16.774807)" /><path
sodipodi:type="spiral"
style="fill:#e57373;fill-opacity:1;fill-rule:evenodd;stroke:#800d0d;stroke-width:1.50041;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path7237"
sodipodi:cx="44.793747"
sodipodi:cy="5.9240394"
sodipodi:expansion="1.34"
sodipodi:revolution="1.6133507"
sodipodi:radius="7.5292273"
sodipodi:argument="-9.4101362"
sodipodi:t0="0.20057641"
d="m 45.195352,5.1471069 c 0.873369,-0.092593 1.361914,0.8984278 1.271442,1.6417489 -0.175749,1.4439563 -1.776035,2.1478769 -3.077307,1.851821 -2.069404,-0.4708153 -3.025871,-2.7973477 -2.470999,-4.719802 0.792786,-2.7467512 3.930218,-3.97981751 6.527065,-3.12693541 3.470177,1.13970971 4.999212,5.15624191 3.816792,8.47379061 -0.208861,0.5860096 -0.493322,1.144598 -0.8422,1.659599"
transform="matrix(0.00327782,0.70726913,0.70348424,0.00327783,39.060828,-17.561511)" /></g><path
style="opacity:1;fill:none;fill-opacity:1;stroke:#800d0d;stroke-width:1.00542;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
d="m 55.972081,26.001101 c -2.119513,-2.119513 -0.342903,-3.551323 0.332755,-4.226982"
id="path7241"
sodipodi:nodetypes="cc" /></g></g><path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.622592;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path2893"
d="m 17.272345,21.517428 -1.048133,-1.81542 2.096266,0 z"
transform="matrix(0.84787223,0.059289,-0.059289,0.84787223,4.7120143,1.8917128)" /><use
x="0"
y="0"
xlink:href="#path2893"
id="use2895"
transform="translate(-6.2774815,-0.46438696)" /><path
style="fill:none;fill-opacity:1;stroke:#382226;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 21.151185,19.65051 c -1.761637,0.406706 -5.529568,-0.118013 -6.704149,-0.851968 -1.099304,0.58451 -3.73403,0.580351 -5.1166907,0.157628"
id="path1289" /><path
sodipodi:type="star"
style="fill:#fff6e5;fill-opacity:1;stroke:#d1cabc;stroke-width:0.924954;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000;opacity:0.8"
id="path1779"
inkscape:flatsided="false"
sodipodi:sides="4"
sodipodi:cx="10.937749"
sodipodi:cy="14.307776"
sodipodi:r1="3.2374179"
sodipodi:r2="1.2949672"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.3561945"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 10.937749,17.545194 -0.91568,-2.321737 -2.321738,-0.91568 2.321738,-0.915681 0.91568,-2.321737 0.91568,2.321737 2.321738,0.91568 -2.321738,0.915681 z"
transform="matrix(0.85815098,0,0,0.85815098,16.961227,13.433774)" /><path
sodipodi:type="star"
style="opacity:0.8;fill:#fff6e5;fill-opacity:1;stroke:#d1cabc;stroke-width:0.924954;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path1011"
inkscape:flatsided="false"
sodipodi:sides="4"
sodipodi:cx="10.937749"
sodipodi:cy="14.307776"
sodipodi:r1="3.2374179"
sodipodi:r2="1.2949672"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.3561945"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 10.937749,17.545194 -0.91568,-2.321737 -2.321738,-0.91568 2.321738,-0.915681 0.91568,-2.321737 0.91568,2.321737 2.321738,0.91568 -2.321738,0.915681 z"
transform="matrix(0.85815098,0,0,0.85815098,-2.8912463,-6.6561284)" /><path
sodipodi:type="star"
style="fill:#fff6e5;fill-opacity:1;stroke:#d1cabc;stroke-width:0.924954;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000;opacity:0.8"
id="path1013"
inkscape:flatsided="false"
sodipodi:sides="4"
sodipodi:cx="10.937749"
sodipodi:cy="14.307776"
sodipodi:r1="3.2374179"
sodipodi:r2="1.2949672"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.3561945"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 10.937749,17.545194 -0.91568,-2.321737 -2.321738,-0.91568 2.321738,-0.915681 0.91568,-2.321737 0.91568,2.321737 2.321738,0.91568 -2.321738,0.915681 z"
transform="matrix(0.85815098,0,0,0.85815098,-2.9281041,14.132886)" /><path
sodipodi:type="star"
style="fill:#fff6e5;fill-opacity:1;stroke:#d1cabc;stroke-width:0.924954;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000;opacity:0.8"
id="path1015"
inkscape:flatsided="false"
sodipodi:sides="4"
sodipodi:cx="10.937749"
sodipodi:cy="14.307776"
sodipodi:r1="3.2374179"
sodipodi:r2="1.2949672"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.3561945"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 10.937749,17.545194 -0.91568,-2.321737 -2.321738,-0.91568 2.321738,-0.915681 0.91568,-2.321737 0.91568,2.321737 2.321738,0.91568 -2.321738,0.915681 z"
transform="matrix(0.85815098,0,0,0.85815098,14.02584,-1.6330891)" /><path
sodipodi:type="star"
style="opacity:0.8;fill:#ffd8b3;fill-opacity:1;stroke:#e8e0d1;stroke-width:3.88449;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path2146"
inkscape:flatsided="false"
sodipodi:sides="4"
sodipodi:cx="10.937749"
sodipodi:cy="14.307776"
sodipodi:r1="3.2374179"
sodipodi:r2="1.2949672"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.3561945"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 10.937749,17.545194 -0.91568,-2.321737 -2.321738,-0.91568 2.321738,-0.915681 0.91568,-2.321737 0.91568,2.321737 2.321738,0.91568 -2.321738,0.915681 z"
transform="matrix(0.20384018,0.01425389,-0.01425389,0.20384018,24.74306,0.580017)" /><path
sodipodi:type="star"
style="fill:#ffd8b3;fill-opacity:1;stroke:#e8e0d1;stroke-width:3.88449;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000;opacity:0.8"
id="path1765"
inkscape:flatsided="false"
sodipodi:sides="4"
sodipodi:cx="10.937749"
sodipodi:cy="14.307776"
sodipodi:r1="3.2374179"
sodipodi:r2="1.2949672"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.3561945"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 10.937749,17.545194 -0.91568,-2.321737 -2.321738,-0.91568 2.321738,-0.915681 0.91568,-2.321737 0.91568,2.321737 2.321738,0.91568 -2.321738,0.915681 z"
transform="matrix(0.20384018,0.01425389,-0.01425389,0.20384018,26.360016,5.8614643)" /><path
sodipodi:type="star"
style="opacity:0.8;fill:#ffd8b3;fill-opacity:1;stroke:#e8e0d1;stroke-width:3.88449;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path1767"
inkscape:flatsided="false"
sodipodi:sides="4"
sodipodi:cx="10.937749"
sodipodi:cy="14.307776"
sodipodi:r1="3.2374179"
sodipodi:r2="1.2949672"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.3561945"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 10.937749,17.545194 -0.91568,-2.321737 -2.321738,-0.91568 2.321738,-0.915681 0.91568,-2.321737 0.91568,2.321737 2.321738,0.91568 -2.321738,0.915681 z"
transform="matrix(0.20384018,0.01425389,-0.01425389,0.20384018,0.74242585,0.59468888)" /><path
sodipodi:type="star"
style="fill:#ffd8b3;fill-opacity:1;stroke:#e8e0d1;stroke-width:3.88449;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000;opacity:0.8"
id="path1769"
inkscape:flatsided="false"
sodipodi:sides="4"
sodipodi:cx="10.937749"
sodipodi:cy="14.307776"
sodipodi:r1="3.2374179"
sodipodi:r2="1.2949672"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.3561945"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 10.937749,17.545194 -0.91568,-2.321737 -2.321738,-0.91568 2.321738,-0.915681 0.91568,-2.321737 0.91568,2.321737 2.321738,0.91568 -2.321738,0.915681 z"
transform="matrix(0.20384018,0.01425389,-0.01425389,0.20384018,8.2570132,26.208715)" /><path
sodipodi:type="star"
style="opacity:0.8;fill:#ffd8b3;fill-opacity:1;stroke:#c2b59c;stroke-width:3.88449;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path1771"
inkscape:flatsided="false"
sodipodi:sides="4"
sodipodi:cx="10.937749"
sodipodi:cy="14.307776"
sodipodi:r1="3.2374179"
sodipodi:r2="1.2949672"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.3561945"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 10.937749,17.545194 -0.91568,-2.321737 -2.321738,-0.91568 2.321738,-0.915681 0.91568,-2.321737 0.91568,2.321737 2.321738,0.91568 -2.321738,0.915681 z"
transform="matrix(0.20384018,0.01425389,-0.01425389,0.20384018,7.2822366,7.4054291)" /><path
sodipodi:type="star"
style="opacity:0.8;fill:#ffd8b3;fill-opacity:1;stroke:#e8e0d1;stroke-width:3.88449;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path1773"
inkscape:flatsided="false"
sodipodi:sides="4"
sodipodi:cx="10.937749"
sodipodi:cy="14.307776"
sodipodi:r1="3.2374179"
sodipodi:r2="1.2949672"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.3561945"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 10.937749,17.545194 -0.91568,-2.321737 -2.321738,-0.91568 2.321738,-0.915681 0.91568,-2.321737 0.91568,2.321737 2.321738,0.91568 -2.321738,0.915681 z"
transform="matrix(0.20384018,0.01425389,-0.01425389,0.20384018,19.280424,20.46862)" /><path
sodipodi:type="star"
style="opacity:0.8;fill:#fff2e5;fill-opacity:1;stroke:#e8e0d1;stroke-width:3.88449;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path1775"
inkscape:flatsided="false"
sodipodi:sides="4"
sodipodi:cx="10.937749"
sodipodi:cy="14.307776"
sodipodi:r1="3.2374179"
sodipodi:r2="1.2949672"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.3561945"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 10.937749,17.545194 -0.91568,-2.321737 -2.321738,-0.91568 2.321738,-0.915681 0.91568,-2.321737 0.91568,2.321737 2.321738,0.91568 -2.321738,0.915681 z"
transform="matrix(0.20384018,0.01425389,-0.01425389,0.20384018,9.9034209,16.830244)" /><path
sodipodi:type="star"
style="opacity:0.8;fill:#ffd8b3;fill-opacity:1;stroke:#e8e0d1;stroke-width:3.88449;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path1777"
inkscape:flatsided="false"
sodipodi:sides="4"
sodipodi:cx="10.937749"
sodipodi:cy="14.307776"
sodipodi:r1="3.2374179"
sodipodi:r2="1.2949672"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.3561945"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 10.937749,17.545194 -0.91568,-2.321737 -2.321738,-0.91568 2.321738,-0.915681 0.91568,-2.321737 0.91568,2.321737 2.321738,0.91568 -2.321738,0.915681 z"
transform="matrix(0.20384018,0.01425389,-0.01425389,0.20384018,29.359342,9.6490336)" /><path
sodipodi:type="star"
style="opacity:0.8;fill:#ffd8b3;fill-opacity:1;stroke:#e8e0d1;stroke-width:3.88449;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path1780"
inkscape:flatsided="false"
sodipodi:sides="4"
sodipodi:cx="10.937749"
sodipodi:cy="14.307776"
sodipodi:r1="3.2374179"
sodipodi:r2="1.2949672"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.3561945"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 10.937749,17.545194 -0.91568,-2.321737 -2.321738,-0.91568 2.321738,-0.915681 0.91568,-2.321737 0.91568,2.321737 2.321738,0.91568 -2.321738,0.915681 z"
transform="matrix(0.20384018,0.01425389,-0.01425389,0.20384018,-0.16821922,21.32597)" /><path
sodipodi:type="star"
style="opacity:0.8;fill:#ffd8b3;fill-opacity:1;stroke:#e8e0d1;stroke-width:3.88449;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path1782"
inkscape:flatsided="false"
sodipodi:sides="4"
sodipodi:cx="10.937749"
sodipodi:cy="14.307776"
sodipodi:r1="3.2374179"
sodipodi:r2="1.2949672"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.3561945"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 10.937749,17.545194 -0.91568,-2.321737 -2.321738,-0.91568 2.321738,-0.915681 0.91568,-2.321737 0.91568,2.321737 2.321738,0.91568 -2.321738,0.915681 z"
transform="matrix(0.20384018,0.01425389,-0.01425389,0.20384018,0.89939508,10.406173)" /><path
sodipodi:type="star"
style="opacity:0.8;fill:#ffd8b3;fill-opacity:1;stroke:#e8e0d1;stroke-width:3.88449;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path1784"
inkscape:flatsided="false"
sodipodi:sides="4"
sodipodi:cx="10.937749"
sodipodi:cy="14.307776"
sodipodi:r1="3.2374179"
sodipodi:r2="1.2949672"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.3561945"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 10.937749,17.545194 -0.91568,-2.321737 -2.321738,-0.91568 2.321738,-0.915681 0.91568,-2.321737 0.91568,2.321737 2.321738,0.91568 -2.321738,0.915681 z"
transform="matrix(0.20384018,0.01425389,-0.01425389,0.20384018,7.8445158,0.52550657)" /><path
sodipodi:type="star"
style="opacity:0.8;fill:#ffd8b3;fill-opacity:1;stroke:#e8e0d1;stroke-width:3.88449;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path326"
inkscape:flatsided="false"
sodipodi:sides="4"
sodipodi:cx="10.937749"
sodipodi:cy="14.307776"
sodipodi:r1="3.2374179"
sodipodi:r2="1.2949672"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.3561945"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 10.937749,17.545194 -0.91568,-2.321737 -2.321738,-0.91568 2.321738,-0.915681 0.91568,-2.321737 0.91568,2.321737 2.321738,0.91568 -2.321738,0.915681 z"
transform="matrix(0.20384018,0.01425389,-0.01425389,0.20384018,30.3658,19.211802)" /><path
style="opacity:1;fill:#fff2e5;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
d="M 39.687499,21.39981 H 50.270832 Z"
id="path327" /></svg>

After

Width:  |  Height:  |  Size: 34 KiB

View File

@@ -0,0 +1,78 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_kontenta.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview15"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
showguides="false"
inkscape:zoom="1.84375"
inkscape:cx="113.35593"
inkscape:cy="109.83051"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" /><title
id="title4279">Gutkato kontenta</title><defs
id="defs2" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato kontenta</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><path
style="fill:none;fill-opacity:0.6;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
d="m 9.3682146,13.895971 c 1.5764984,-0.910192 2.8654284,0.07422 3.4395824,1.068725"
id="path398"
sodipodi:nodetypes="cc" /><use
x="0"
y="0"
xlink:href="#path398"
id="use681"
transform="matrix(-1,0,0,1,31.129016,0.69247067)" /></svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@@ -0,0 +1,107 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_mojosa.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview15"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
showguides="true"
inkscape:zoom="1.3037282"
inkscape:cx="57.910846"
inkscape:cy="63.280063"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="g21711" /><title
id="title4279">Gutkato mojosa</title><defs
id="defs2" /><g
id="layer1"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="12.96371"
cy="12.570978"
rx="1.6752723"
ry="2.1418331"
transform="rotate(8)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(8.953004,0.69247082)"
style="stroke-width:1.07136" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /></g><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato mojosa</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><g
id="g21711"
transform="matrix(1.3500848,0.0953379,-0.09440712,1.3633955,-30.920455,-23.828606)"
style="stroke-width:0.735274"><g
id="g5702"
transform="matrix(-1.1615533,-4.9588646e-6,5.007312e-6,-1.168852,47.320866,61.937394)"
style="stroke-width:0.63103"><path
id="rect4914"
style="opacity:0.8;fill:#000000;fill-opacity:1;stroke-width:0.4174;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
d="m 11.511783,29.755993 c 0.408674,-0.108703 1.315843,-0.166511 1.950239,0.02749 0.250552,0.07662 0.798237,0.347902 0.869373,0.600495 l 0.440461,1.564013 c 0.07114,0.252595 -0.212013,0.493757 -0.473514,0.473514 l -3.259028,-0.252272 c -0.261501,-0.02024 -0.470575,-0.211207 -0.473513,-0.473514 l -0.01009,-0.901346 c -0.005,-0.450137 0.670864,-0.962513 0.956077,-1.038376 z"
sodipodi:nodetypes="sssssssss" /><path
style="fill:none;fill-opacity:1;stroke:#005c4c;stroke-width:0.50088;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 10.565801,30.713912 c 0,0 -0.163244,0.719306 0.17088,1.07354 0.978101,1.036969 4.120279,0.671181 4.120279,0.671181 3.42e-4,-0.497782 0.03214,-1.345651 -0.52063,-2.206869"
id="path5698"
sodipodi:nodetypes="cscc" /></g><use
x="0"
y="0"
xlink:href="#g5702"
id="use5710"
transform="matrix(-1.0000009,0.0013588,-0.00137207,1.0000009,72.534055,-0.04487566)"
style="stroke-width:0.735274" /><path
style="fill:none;fill-opacity:1;stroke:#005c4c;stroke-width:0.583624;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 35.136116,25.196582 c 0.768416,-0.304677 1.453943,-0.287621 2.22462,-0.0037"
id="path5766"
sodipodi:nodetypes="cc" /></g></svg>

After

Width:  |  Height:  |  Size: 7.1 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 43 KiB

View File

@@ -0,0 +1,144 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_kuketo.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview15"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
showguides="true"
inkscape:zoom="0.65186408"
inkscape:cx="55.993268"
inkscape:cy="97.412946"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" /><title
id="title4279">Gutkato kuketo</title><defs
id="defs2" /><g
id="layer1"><path
style="fill:#8b6536;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="12.96371"
cy="12.570978"
rx="1.6752723"
ry="2.1418331"
transform="rotate(8)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(8.953004,0.69247082)"
style="stroke-width:1.07136" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /><path
id="path14608"
style="fill:#20170d;stroke-width:0.793751;stroke-linecap:round;stroke-linejoin:round;stop-color:#000000"
d="m 19.963891,10.103738 c -0.135241,0.504761 -0.268431,0.903656 -0.687852,1.145804 -0.419417,0.242151 -0.911733,0.322317 -1.416495,0.187056 C 17.354781,11.301338 16.853667,10.939646 16.61152,10.520229 16.369367,10.10081 16.272219,9.6734621 16.407472,9.1686997 16.54273,8.6639404 16.887651,8.316789 17.307071,8.0746372 c 0.419418,-0.2421531 0.931201,-0.3507243 1.435963,-0.2154746 0.504763,0.1352583 0.74198,0.3836507 0.98413,0.8030694 0.242152,0.4194182 0.371991,0.9367441 0.236737,1.441506 z"
sodipodi:nodetypes="zzzzzzzzz" /><use
x="0"
y="0"
xlink:href="#path14608"
id="use4527"
transform="rotate(39.431893,-7.6347562,1.4055944)" /><use
x="0"
y="0"
xlink:href="#use4527"
id="use4529"
transform="rotate(17.212253,16.388558,79.70304)" /><use
x="0"
y="0"
xlink:href="#use4529"
id="use4531"
transform="rotate(23.0232,33.959909,-1.3986986)" /><use
x="0"
y="0"
xlink:href="#use4531"
id="use4533"
transform="translate(12.424673,-7.6989112)" /><use
x="0"
y="0"
xlink:href="#use4533"
id="use4535"
transform="matrix(0.73105806,0,0,0.73105806,-11.160602,-0.25725956)"
style="stroke-width:1.36788" /><use
x="0"
y="0"
xlink:href="#use4535"
id="use4537"
transform="rotate(36.700838,-2.4316512,9.1386865)" /><use
x="0"
y="0"
xlink:href="#use4537"
id="use4539"
transform="rotate(31.876324,-6.8155963,39.275444)" /><use
x="0"
y="0"
xlink:href="#use4539"
id="use4541"
transform="matrix(0.7658753,0,0,0.7658753,-1.8025063,7.6916486)"
style="stroke-width:1.3057" /><use
x="0"
y="0"
xlink:href="#use4541"
id="use4543"
transform="translate(1.2967401,-15.957032)" /><use
x="0"
y="0"
xlink:href="#use4543"
id="use4545"
transform="rotate(52.310754,16.141687,25.185641)" /><use
x="0"
y="0"
xlink:href="#use4545"
id="use4547"
transform="rotate(-76.826709,25.871488,26.065164)" /></g><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato kuketo</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata></svg>

After

Width:  |  Height:  |  Size: 7.4 KiB

View File

@@ -0,0 +1,150 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_manĝilaro.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview3241"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="2.6074563"
inkscape:cx="77.086624"
inkscape:cy="68.457524"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="g1099" /><title
id="title4279">Gutkato, manĝilaro</title><defs
id="defs2" /><path
id="path236"
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 7.1711384 3.7041666 C 6.9110626 5.035593 6.0130409 8.1032493 6.3458658 10.987443 C 4.9821773 12.817991 3.9864817 16.83846 3.7589436 20.429244 C 2.4330076 20.393523 1.6161803 20.915579 1.2076782 22.036381 C 0.57877445 23.761896 1.6086673 25.024631 4.4725951 26.171012 C 7.5725271 31.125495 23.661179 31.326304 28.481982 27.555423 C 30.50967 26.728348 31.135983 25.743809 30.81879 24.372672 C 30.687748 23.806214 30.441085 23.369303 30.04261 23.062158 C 30.219096 20.197737 29.855689 16.431196 28.972391 13.32115 C 30.00524 11.402343 30.354782 7.5977563 30.033308 5.8063638 C 27.105074 6.0012977 24.972801 6.6570667 22.784139 7.7581826 C 20.000341 6.7124258 15.785367 6.219729 12.325346 7.1468504 C 10.322236 5.5214737 8.8535064 4.5878477 7.1711384 3.7041666 z " /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="12.96371"
cy="12.570978"
rx="1.6752723"
ry="2.1418331"
transform="rotate(8)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(8.953004,0.69247082)"
style="stroke-width:1.07136" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="M 5.0744982,26.400303 C 1.7543396,25.191864 0.53649852,23.877922 1.2076516,22.036488 1.8788047,20.195054 3.6515924,19.969612 6.9748342,21.179173"
id="path915" /><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.891479;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="circle1002"
cx="21.432327"
cy="10.351334"
r="0.33072916"
transform="matrix(-0.34202014,0.93969262,0.93969262,0.34202014,0,0)" /><path
id="path978"
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:1.2795;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
d="M 2.672936,22.551242 A 0.84504452,0.84504452 0 0 0 3.0422118,23.57034 0.84504452,0.84504452 0 0 0 3.5055487,23.980196 0.84504452,0.84504452 0 0 0 4.588953,23.475646 0.84504452,0.84504452 0 0 0 4.63556,23.264792 0.84504452,0.84504452 0 0 0 4.734815,23.074864 0.84504452,0.84504452 0 0 0 4.2294845,21.991178 0.84504452,0.84504452 0 0 0 3.6100306,22.007718 0.84504452,0.84504452 0 0 0 2.672867,22.551311 Z" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1004"
transform="translate(-0.27004874,-0.87258957)" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1008"
transform="translate(0.02459657,-1.6821205)" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1010"
transform="translate(0.79051461,-2.1719201)"
style="stroke-width:1.00012;stroke-dasharray:none" /><g
id="g476"
transform="matrix(-0.22495105,-0.97437007,-0.97437007,0.22495105,56.066772,29.437218)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 7.8361683,29.645983 c 0,-4.572106 0.8181757,-6.185364 2.7781057,-6.184494 1.95993,8.7e-4 2.778105,1.614295 2.778105,6.184494"
id="path466" /></g><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.891479;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="circle1031"
cx="31.837284"
cy="-22.842051"
r="0.33072916"
transform="rotate(77)" /><path
id="path1033"
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:1.2795;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
d="m 29.281929,24.728792 a 0.84504452,0.84504452 0 0 1 -0.490721,0.966499 0.84504452,0.84504452 0 0 1 -0.509832,0.350333 0.84504452,0.84504452 0 0 1 -1.013839,-0.632822 0.84504452,0.84504452 0 0 1 -0.02056,-0.214963 0.84504452,0.84504452 0 0 1 -0.07536,-0.200608 0.84504452,0.84504452 0 0 1 0.633632,-1.014024 0.84504452,0.84504452 0 0 1 0.61282,0.09191 0.84504452,0.84504452 0 0 1 0.863931,0.653752 z" /><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.891479;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="use1035"
cx="31.109682"
cy="-23.394257"
r="0.33072916"
transform="rotate(77.000001)" /><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.891479;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="use1037"
cx="30.248196"
cy="-23.394257"
r="0.33072916"
transform="rotate(77.000001)" /><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.891479;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="use1039"
cx="29.525976"
cy="-22.842051"
r="0.33072916"
transform="rotate(77.000001)" /><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato, manĝilaro</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><g
id="g1099"
transform="translate(35.796008,2.9165592)"><path
id="rect307"
style="fill:#d9d9d9;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
d="m -7.6332875,8.0098623 c -0.8418716,0.589489 -1.2507295,3.2840547 -1.6621859,5.6175407 -0.202802,1.150145 0.1075222,2.879663 1.5112809,3.618495 l -1.7699369,10.03781 1.8239461,0.321611 1.7706547,-10.041882 c 1.5741589,-0.2276 2.464165,-1.785577 2.6570201,-2.879312 0.4475024,-2.537913 1.0854945,-4.8102471 0.3593678,-5.8472632 -1.0050537,0.7037461 -1.3569703,3.0229862 -2.194959,4.4489392 -0.034037,-1.603627 0.5922132,-3.8022856 -0.1501143,-4.8624389 -1.1240586,0.787074 -1.0961348,2.9844109 -1.8041135,4.5178559 -0.3047691,-1.635664 0.05496,-4.0802943 -0.54096,-4.9313557 z" /><path
id="rect307-3"
style="fill:#d9d9d9;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stop-color:#000000"
d="m -32.255801,6.2251027 c -3.442144,-0.6069428 -3.162333,7.0445753 -0.968758,10.1773263 l 0.899338,10.279485 1.845037,-0.16142 z"
sodipodi:nodetypes="ccccc" /></g></svg>

After

Width:  |  Height:  |  Size: 10 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 33 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 26 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 129 KiB

View File

@@ -0,0 +1,130 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_manĝas_kuketon.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
inkscape:export-filename="gutkato_manĝas_kuketon.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview15"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
showguides="false"
inkscape:zoom="1.3037282"
inkscape:cx="74.018498"
inkscape:cy="113.13708"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" /><title
id="title4279">Gutkato manĝas kuketon</title><defs
id="defs2" /><g
id="layer1"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="12.96371"
cy="12.570978"
rx="1.6752723"
ry="2.1418331"
transform="rotate(8)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(8.953004,0.69247082)"
style="stroke-width:1.07136" /><g
id="g12139"
transform="rotate(-60,15.833292,24.659032)"><g
id="g12161"
transform="rotate(-60,-5.6253757,29.38918)"><g
id="g17805"
transform="rotate(15,-62.782615,108.9766)"><path
id="path14553"
style="fill:#8b6536;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stop-color:#000000"
d="m -14.249506,32.875153 c -0.373794,-0.21581 -0.643461,-0.556388 -0.952174,-0.835679 -0.308711,-0.279294 -0.78783,-0.481805 -1.02861,-0.812756 -0.240778,-0.330955 -0.383336,-0.615079 -0.553324,-0.985882 -0.169988,-0.370803 -0.19108,-0.842693 -0.287424,-1.241526 -0.09634,-0.398834 -0.382826,-0.73348 -0.441604,-1.144823 -0.05246,-0.367103 -0.02342,-0.879953 0.193268,-1.243984 0.223425,-0.375343 0.481968,-0.864287 0.59769,-1.295901 0.112836,-0.420852 0.227177,-0.800527 0.399843,-1.258215 0.160093,-0.424361 0.266052,-0.796149 0.554702,-1.164524 0.268742,-0.342968 0.712458,-0.569493 1.045954,-0.830751 0.333497,-0.261258 0.566659,-0.613307 0.92847,-0.817638 0.321621,-0.181634 0.816727,-0.436858 1.206935,-0.466352 0.409139,-0.03093 0.964193,-0.0659 1.358204,0.03968 0.382251,0.102425 0.775553,0.05822 1.190903,-0.05307 0.395328,-0.105928 0.8281443,0.09449 1.2079041,0.216212 0.2972692,0.09528 0.6797924,0.21651 1.0535864,0.43232 0.373793,0.215809 0.7173249,0.373915 0.9582237,0.685063 0.2548555,0.329175 0.4803866,0.813689 0.7211646,1.144644 0.240777,0.330955 0.6559679,0.530536 0.9150419,0.896902 0.235517,0.333052 0.3542871,0.663771 0.4506321,1.062605 0.09634,0.398834 0.1339872,0.780225 0.1538312,1.195274 0.01985,0.415047 -0.106426,0.82981 -0.261221,1.224163 -0.167746,0.427345 -0.266404,0.956303 -0.294293,1.308139 -0.03443,0.434353 -0.215573,0.883351 -0.44235,1.276141 -0.226778,0.39279 -0.486068,0.754414 -0.772033,1.083158 -0.285964,0.328745 -0.598659,0.492035 -0.932156,0.753294 -0.333496,0.261258 -0.583199,0.501251 -0.902755,0.766848 -0.353855,0.294102 -0.779014,0.419535 -1.1725864,0.535517 -0.3935719,0.11598 -0.7984926,0.247134 -1.2050966,0.214501 -0.409487,-0.03287 -0.885765,-0.17857 -1.29121,-0.122716 -0.423092,0.05828 -0.83556,0.08459 -1.23179,-0.04312 -0.39623,-0.127704 -0.793933,-0.301719 -1.167726,-0.517528 z"
sodipodi:nodetypes="ssssssssssssssssssssssssssssssssss" /><path
id="path14608"
style="fill:#20170d;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stop-color:#000000"
d="m -10.326266,31.548448 c -0.259372,-0.149748 -0.460442,-0.282647 -0.53228,-0.550757 -0.07184,-0.268107 -0.04319,-0.552542 0.106563,-0.811913 0.149749,-0.259372 0.424319,-0.483134 0.692426,-0.554972 0.2681088,-0.07184 0.5190977,-0.06223 0.7784692,0.08752 0.2593713,0.149748 0.4003878,0.392195 0.472227,0.660304 0.07184,0.268108 0.056029,0.567535 -0.093719,0.826907 -0.1497482,0.259372 -0.3224497,0.353848 -0.5905576,0.425687 -0.2681086,0.07184 -0.5737576,0.06698 -0.8331296,-0.08277 z"
sodipodi:nodetypes="zzzzzzzzz" /><use
x="0"
y="0"
xlink:href="#path14608"
id="use17785"
transform="rotate(34.097283,2.4062893,27.829754)" /><use
x="0"
y="0"
xlink:href="#use17785"
id="use17787"
transform="rotate(-44.567025,-8.3293974,31.531351)" /><use
x="0"
y="0"
xlink:href="#use17787"
id="use17789"
transform="rotate(29.805558,-13.380054,33.959812)" /><use
x="0"
y="0"
xlink:href="#use17789"
id="use17791"
transform="rotate(-51.384473,-8.4135448,31.678324)" /><use
x="0"
y="0"
xlink:href="#use17791"
id="use17793"
transform="rotate(11.120789,10.116676,64.26247)" /><use
x="0"
y="0"
xlink:href="#use17793"
id="use17795"
transform="rotate(-7.6596374,-35.239765,68.602427)" /></g></g></g><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /></g><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato manĝas kuketon</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata></svg>

After

Width:  |  Height:  |  Size: 9.3 KiB

View File

@@ -0,0 +1,136 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_fingropafas.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview15"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="1.84375"
inkscape:cx="68.881356"
inkscape:cy="91.389831"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" /><title
id="title4279">Gutkato fingropafas</title><defs
id="defs2" /><g
id="layer1"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="use7712"
cx="21.925957"
cy="12.010693"
rx="1.6752723"
ry="2.1418331"
transform="rotate(8)" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /></g><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato fingropafas</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><path
style="fill:none;fill-opacity:0.6;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
d="m 9.3682146,13.895971 c 1.5764984,-0.910192 2.8654284,0.07422 3.4395824,1.068725"
id="path398" /><g
id="g1303"
transform="matrix(0,1,1,0,-4.603321,14.049861)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 10.637043,28.796488 c -2.2916736,-0.48566 -3.2015054,-1.11621 -3.0112784,-1.826147 0.1814899,-0.677329 1.0494102,-0.534428 2.2191996,-0.220984 0,-1.41238 -0.3920283,-4.935019 0.6728258,-5.220346 0.960577,-0.257386 0.820478,1.354267 0.820478,2.05183 0.352319,-0.191375 0.770941,-0.286936 1.260924,-0.286718 1.95993,8.7e-4 2.778105,1.523713 2.778105,4.596994"
id="path915"
sodipodi:nodetypes="cscscsc" /><g
id="g1296"
transform="translate(-0.0585258)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 11.599399,23.694455 v 1.058284"
id="path1283" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 12.657717,23.661518 v 1.058284"
id="use1287" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 13.716036,23.694455 v 1.058284"
id="use1291" /></g></g><g
id="g839"
transform="rotate(180,12.282633,32.548588)"><g
id="g904"><g
id="g1303-3"
transform="matrix(0,-0.99999999,-0.99999999,0,44.716119,52.028541)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 10.637043,28.796488 c -2.2916736,-0.48566 -3.2015054,-1.11621 -3.0112784,-1.826147 0.1814899,-0.677329 1.0494102,-0.534428 2.2191996,-0.220984 0,-1.41238 -0.4993666,-4.906258 0.6728258,-5.220346 0.960577,-0.257386 0.820478,1.354267 0.820478,2.05183 0.352319,-0.191375 0.770941,-0.286936 1.260924,-0.286718 1.95993,8.7e-4 2.778105,1.523713 2.778105,4.596994"
id="path915-6"
sodipodi:nodetypes="cscscsc" /></g><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.891479;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="circle1002"
cx="41.441479"
cy="-21.99547"
r="0.33072916"
transform="rotate(90)" /><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.891479;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="circle1002-3"
cx="43.386608"
cy="-17.413357"
r="0.33072916"
transform="rotate(90)" /><path
id="path978"
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:1.2795;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
d="m 19.869023,39.411903 a 0.84504451,0.84504451 0 0 1 -0.695557,0.831339 0.84504451,0.84504451 0 0 1 -0.575574,0.226668 0.84504451,0.84504451 0 0 1 -0.8455,-0.844668 0.84504451,0.84504451 0 0 1 0.02832,-0.214078 0.84504451,0.84504451 0 0 1 -0.02831,-0.212421 0.84504451,0.84504451 0 0 1 0.845497,-0.845499 0.84504451,0.84504451 0 0 1 0.57644,0.227408 0.84504451,0.84504451 0 0 1 0.694726,0.831339 z" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1004"
transform="translate(-1.7008587,-1.6018882)" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1008"
transform="translate(-1.7008585,-2.4633731)" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1010"
transform="translate(-2.2530649,-3.185593)"
style="stroke-width:1.00012;stroke-dasharray:none" /></g></g></svg>

After

Width:  |  Height:  |  Size: 9.4 KiB

View File

@@ -0,0 +1,86 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_fantomo.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview15"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
showguides="true"
inkscape:zoom="2.6074563"
inkscape:cx="95.687126"
inkscape:cy="60.787212"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="g409" /><title
id="title4279">Gutkato fantomo</title><defs
id="defs2" /><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato fantomo</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><g
id="g409"><g
id="g978"
style="opacity:0.75"><path
style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.68237,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.478427,10.376931 0.991528,14.593914 -0.162817,1.353095 -1.246825,1.934075 -1.962918,2.125952 -1.702007,0.456051 -2.835459,-0.699978 -4.133693,-0.452456 -1.298234,0.247523 -2.693018,1.872308 -4.156134,1.962289 -1.463116,0.08998 -2.925658,-1.077703 -4.414621,-1.149007 -1.488962,-0.07131 -2.766338,0.894805 -4.142113,0.658469 C 9.7786163,30.824156 8.8702179,29.543934 7.7466661,29.138822 6.6231139,28.733711 5.5029867,29.907347 4.1066348,28.80591 3.062186,27.982053 3.1269888,26.699228 3.1269888,25.964277 3.0535258,20.469501 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path393"
sodipodi:nodetypes="cccccccssssssscc" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="ellipse395"
cx="12.96371"
cy="12.570978"
rx="1.6752723"
ry="2.1418331"
transform="rotate(8)" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="use397"
cx="21.925957"
cy="12.010693"
rx="1.6752723"
ry="2.1418331"
transform="rotate(8)" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path399" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path401" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path403" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path405" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path407" /></g></g></svg>

After

Width:  |  Height:  |  Size: 5.8 KiB

View File

@@ -0,0 +1,329 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="800.0px"
height="800.0px"
viewBox="0 0 800.0 800.0"
version="1.1"
id="SVGRoot"
sodipodi:docname="blobcat_hammer.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview889"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="true"
inkscape:current-layer="SVGRoot"><inkscape:grid
type="xygrid"
id="grid1008"
spacingx="5"
spacingy="5"
empspacing="10"
color="#3fff00"
opacity="0.1254902"
empcolor="#ffff00"
empopacity="0.25098039" /></sodipodi:namedview><title
id="title1016">Blobcat with hammer</title><defs
id="defs1121"><linearGradient
inkscape:collect="always"
id="linearGradient1042"><stop
style="stop-color:#ed6c30;stop-opacity:1;"
offset="0.70157987"
id="stop1038" /><stop
style="stop-color:#ed6c30;stop-opacity:0;"
offset="1"
id="stop1040" /></linearGradient><linearGradient
id="linearGradient15303"
inkscape:swatch="solid"><stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop15301" /></linearGradient><linearGradient
id="symbols_colour"
inkscape:swatch="solid"
gradientTransform="translate(-13.10251,-10.076902)"><stop
style="stop-color:#66cccc;stop-opacity:1;"
offset="0"
id="stop14689" /></linearGradient><linearGradient
id="shaft_colour"
inkscape:swatch="solid"><stop
style="stop-color:#d0d4fe;stop-opacity:1;"
offset="0"
id="stop13975" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient1610"><stop
style="stop-color:#620c5f;stop-opacity:1;"
offset="0.1"
id="stop1606" /><stop
style="stop-color:#fc75e5;stop-opacity:1;"
offset="0.1"
id="stop8585" /><stop
style="stop-color:#fc75e5;stop-opacity:1;"
offset="0.34"
id="stop8587" /><stop
style="stop-color:#620c5f;stop-opacity:1;"
offset="0.34"
id="stop8589" /><stop
style="stop-color:#620c5f;stop-opacity:1"
offset="0.63825238"
id="stop8591" /><stop
style="stop-color:#fc75e5;stop-opacity:1;"
offset="0.63825238"
id="stop8593" /><stop
style="stop-color:#fc75e5;stop-opacity:1;"
offset="0.89999998"
id="stop8599" /><stop
style="stop-color:#620c5f;stop-opacity:1;"
offset="0.89999998"
id="stop8583" /></linearGradient><linearGradient
id="blush_colour"
inkscape:swatch="solid"
gradientTransform="matrix(1.6,0,0,1.6,-200,-369.99999)"><stop
style="stop-color:#ed6c30;stop-opacity:1;"
offset="0"
id="stop4680" /></linearGradient><linearGradient
id="contour_colour"
inkscape:swatch="solid"
gradientTransform="translate(9.4556245,-56.648413)"><stop
style="stop-color:#2b2b00;stop-opacity:1;"
offset="0"
id="stop7071" /></linearGradient><linearGradient
id="blob_color"
inkscape:swatch="solid"
gradientTransform="matrix(-1.347683,0,0,1.347683,886.60717,-374.81013)"><stop
style="stop-color:#fcc314;stop-opacity:1;"
offset="0"
id="stop5975" /></linearGradient><linearGradient
inkscape:collect="always"
xlink:href="#blob_color"
id="linearGradient5979"
x1="38.738472"
y1="437.70772"
x2="761.27481"
y2="437.70772"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.86140248,0,0,0.86140248,-29.560007,145.6653)" /><linearGradient
inkscape:collect="always"
xlink:href="#contour_colour"
id="linearGradient5558"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1.3827831,-0.35029425,0.38353716,-1.5700333,779.50946,1346.311)"
x1="539.43036"
y1="437.90143"
x2="660.23444"
y2="437.90143" /><linearGradient
inkscape:collect="always"
xlink:href="#contour_colour"
id="linearGradient15760"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1.3827831,-0.35029425,0.38353716,-1.5700333,1239.6278,1346.311)"
x1="539.43036"
y1="437.90143"
x2="660.23444"
y2="437.90143" /><linearGradient
inkscape:collect="always"
xlink:href="#contour_colour"
id="linearGradient15762"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1.3827831,-0.35029425,0.38353716,-1.5700333,1239.6278,1346.311)"
x1="539.43036"
y1="437.90143"
x2="660.23444"
y2="437.90143" /><linearGradient
inkscape:collect="always"
xlink:href="#contour_colour"
id="linearGradient5190"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.86140291,0,0,0.86140248,-29.560024,104.57064)" /><linearGradient
inkscape:collect="always"
xlink:href="#contour_colour"
id="linearGradient777"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1.3827831,-0.35029425,0.38353716,-1.5700333,779.50946,1346.311)"
x1="539.43036"
y1="437.90143"
x2="660.23444"
y2="437.90143" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1610"
id="linearGradient1612"
x1="590"
y1="190"
x2="840"
y2="440"
gradientUnits="userSpaceOnUse" /><linearGradient
inkscape:collect="always"
xlink:href="#shaft_colour"
id="linearGradient13979"
x1="370"
y1="507.5"
x2="665"
y2="507.5"
gradientUnits="userSpaceOnUse" /><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14362"><path
style="display:inline;fill:url(#linearGradient14366);fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 616.49185,679.73483 c -60.34067,156.88574 -544.0532,153.21421 -602.981733,0 C -29.560007,567.75251 91.59398,386.66189 91.03634,386.85799 c 0,0 -51.684153,-103.3683 -25.84208,-129.21037 25.84208,-25.84208 180.89453,17.22805 180.89453,17.22805 43.07012,-17.22805 94.75427,-17.22805 137.82439,0 0,0 155.05245,-43.07013 180.89452,-17.22805 25.84208,25.84207 -25.84207,129.21037 -25.84207,129.21037 -0.34673,0.0103 120.59635,180.89452 77.52622,292.87684 z"
id="path14364"
sodipodi:nodetypes="sscsccscs"
inkscape:label="body" /></clipPath><linearGradient
inkscape:collect="always"
xlink:href="#blob_color"
id="linearGradient14366"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.86140248,0,0,0.86140248,-29.560007,145.6653)"
x1="38.738472"
y1="437.70772"
x2="761.27481"
y2="437.70772" /><filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter14368"
x="-0.52919998"
y="-0.66149998"
width="2.0584"
height="2.323"><feGaussianBlur
inkscape:collect="always"
stdDeviation="88.2"
id="feGaussianBlur14370" /></filter><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1042"
id="linearGradient2298"
x1="300"
y1="400"
x2="300"
y2="600"
gradientUnits="userSpaceOnUse" /></defs><path
style="display:inline;fill:url(#linearGradient5979);fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 616.49185,679.73483 c -60.34067,156.88574 -544.0532,153.21421 -602.981733,0 C -29.560007,567.75251 91.59398,386.66189 91.03634,386.85799 c 0,0 -51.684153,-103.3683 -25.84208,-129.21037 25.84208,-25.84208 180.89453,17.22805 180.89453,17.22805 43.07012,-17.22805 94.75427,-17.22805 137.82439,0 0,0 155.05245,-43.07013 180.89452,-17.22805 25.84208,25.84207 -25.84207,129.21037 -25.84207,129.21037 -0.34673,0.0103 120.59635,180.89452 77.52622,292.87684 z"
id="blobcat_body"
sodipodi:nodetypes="sscsccscs"
inkscape:label="body"
sodipodi:insensitive="true" /><ellipse
style="display:inline;opacity:1;fill:url(#linearGradient2298);fill-opacity:1;stroke:none;stroke-width:25;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;filter:url(#filter14368)"
id="path14334"
inkscape:label="blush"
clip-path="url(#clipPath14362)"
sodipodi:insensitive="true"
ry="160"
rx="200"
cy="510"
cx="320" /><path
style="fill:none;stroke:url(#linearGradient5190);stroke-width:25;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 245.00012,559.99987 c 0,0 34.94756,-20.45844 70.00003,-20 35.05248,0.45844 70.24366,20.10824 70.00004,20"
id="mouth"
inkscape:label="mouth"
sodipodi:nodetypes="czc"
sodipodi:insensitive="true" /><g
id="whiskers"
inkscape:label="whiskers"
transform="matrix(0.86140291,0,0,0.86140248,-29.560024,125.6653)"
style="display:inline;stroke-width:1.1609"
sodipodi:insensitive="true"><path
style="display:none;fill:url(#linearGradient15760);fill-opacity:1;stroke:none;stroke-width:1.76264px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 760,555 c 5,-5 -160,-60 -165,-35 -5,25 160,40 165,35 z"
id="whisker_right_bottom"
sodipodi:nodetypes="zzz"
inkscape:label="right bottom" /><path
style="display:inline;fill:url(#linearGradient15762);fill-opacity:1;stroke:none;stroke-width:1.76264px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 760,410 c -5,-5 -180,55 -165,80 15,25 170,-75 165,-80 z"
id="whisker_right_top"
sodipodi:nodetypes="zzz"
inkscape:label="right top" /><path
style="fill:url(#linearGradient777);fill-opacity:1;stroke:none;stroke-width:1.76264px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 40,555 c -5,-5 160,-60 165,-35 5,25 -160,40 -165,35 z"
id="whisker_left_bottom"
sodipodi:nodetypes="zzz"
inkscape:label="left bottom" /><path
style="fill:url(#linearGradient5558);fill-opacity:1;stroke:none;stroke-width:1.76224;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="m 40,410 c 5,-5 180,55 165,80 C 190,515 35,415 40,410 Z"
id="whisker_left_top"
sodipodi:nodetypes="zzz"
inkscape:label="left top" /></g><g
id="eyes-6"
inkscape:label="eyes"
style="display:inline;stroke-width:1.23473"
transform="matrix(0.84597862,0,0,0.77535274,-23.391589,156.48907)"
sodipodi:insensitive="true"><path
style="opacity:1;fill:none;fill-opacity:1;stroke:url(#contour_colour);stroke-width:30.8682;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
d="m 600.95115,410.7947 c -50,-10 -130.02699,0 -130.02699,0 0,0 71.28825,-58.71362 124.11668,-70.93545"
id="eye_right-2"
sodipodi:nodetypes="ccc"
inkscape:label="right" /><path
style="opacity:1;fill:none;fill-opacity:1;stroke:url(#contour_colour);stroke-width:30.8682;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
d="m 199.04954,410.7947 c 50,-10 130.027,0 130.027,0 0,0 -71.28825,-58.71362 -124.11668,-70.93545"
id="eye_left"
sodipodi:nodetypes="ccc"
inkscape:label="left" /></g><metadata
id="metadata1014"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Blobcat with hammer</dc:title><dc:date>2022-07-04</dc:date><dc:creator><cc:Agent><dc:title>tastytea</dc:title></cc:Agent></dc:creator><dc:source>https://schlomp.space/tastytea/blobcats</dc:source><dc:subject><rdf:Bag><rdf:li>blobcat</rdf:li><rdf:li>emoji</rdf:li><rdf:li>hammer</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" /></cc:Work><cc:License
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /></cc:License></rdf:RDF></metadata><g
inkscape:groupmode="layer"
id="layer1"
inkscape:label="hammer"
style="display:inline;stroke-width:1.09373"
transform="matrix(0.91429913,0,0,0.91429913,-62.012208,122.42428)"
sodipodi:insensitive="true"><path
style="display:inline;fill:url(#linearGradient13979);fill-opacity:1;stroke:none;stroke-width:1.09373px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 587.34848,363.74936 605,360 665,420 658.44119,434.84206 642.97252,419.37339 410,655 370,615 603.75449,380.15537 Z"
id="path13587"
sodipodi:nodetypes="ccccccccc"
inkscape:label="shaft" /><path
style="display:inline;opacity:1;fill:url(#linearGradient1612);fill-opacity:1;stroke:none;stroke-width:1.09373px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 690,90 C 680,80 500,260 510,270 c 0,0 20.69382,25.03199 25,25 l 5,-5 c 5,15 185.93482,194.98337 200,200 l -5,5 c 0,5 25,25 25,25 10.18077,0.56259 190,-170 180,-180 0,0 -19.85396,-25.15562 -25,-25 l -5,5 C 905,305 725,125 710,120 l 5,-5 c -0.0533,-5.37853 -25,-25 -25,-25 z"
id="path930"
sodipodi:nodetypes="ssccccccccccs"
inkscape:label="head" /></g><g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="hands"
style="display:inline;stroke-width:1.1609"
transform="matrix(0.86140248,0,0,0.86140248,0.58908,111.2092)"
sodipodi:insensitive="true"><path
style="display:inline;fill:url(#blob_color);stroke:url(#contour_colour);stroke-width:29.0224;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
d="M 156.0373,677.72129 340,590 c 75,-20 70,55 60,80 -19.27093,41.47198 -44.13155,58.11312 -93.04602,83.17963"
id="path13857"
sodipodi:nodetypes="cccc"
inkscape:label="left" /><path
style="display:inline;fill:url(#blob_color);stroke:url(#contour_colour);stroke-width:29.0224;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
d="M 579.7649,695.13475 C 521.72002,671.9168 477.06617,631.45846 452.06617,596.45846 c -25,-45 -5.83287,-132.72886 95.11219,-76.4359 36.90269,22.11185 108.04488,47.41347 108.04488,47.41347"
id="path13860"
inkscape:label="right"
sodipodi:nodetypes="cccc" /></g><g
id="g3070"
inkscape:label="strain"
style="opacity:0.75;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:10;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
sodipodi:insensitive="true"><path
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
d="m 460,215 95,-125 60,80 z"
id="path3076"
sodipodi:nodetypes="cccc" /><path
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
d="m 495,42.5 -105,120 10,-155 z"
id="path3072"
sodipodi:nodetypes="cccc" /><path
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
d="M 300,162.5 195,50 295,10 Z"
id="path3074"
sodipodi:nodetypes="cccc" /><path
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
d="M 230,215 75,170 135,85 Z"
id="path3067"
sodipodi:nodetypes="cccc" /></g></svg>

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -0,0 +1,121 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_koro.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
inkscape:export-filename="gutkato_koro.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview15"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="2"
inkscape:cx="64.000001"
inkscape:cy="49.25"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" /><title
id="title4279">Gutkato, koro</title><defs
id="defs2" /><g
id="layer1"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="12.96371"
cy="12.570978"
rx="1.6752723"
ry="2.1418331"
transform="rotate(8)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(8.953004,0.69247082)"
style="stroke-width:1.07136" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /></g><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato, koro</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><path
style="fill:#ff2626;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
d="m 11.004545,15.628532 c -4.6092264,0.322308 -7.5278144,6.294852 -3.0513498,10.119633 3.9977238,3.415735 6.3221738,5.043679 9.1821358,7.487285 2.49204,-2.817855 4.567304,-4.753457 8.050745,-8.692325 3.900593,-4.410563 0.17919,-9.918793 -4.430037,-9.596484 -2.279213,0.159378 -3.581671,1.84816 -4.683248,3.093769 -1.264216,-1.080176 -2.789032,-2.571256 -5.068246,-2.411878 z"
id="path3500"
sodipodi:nodetypes="sscsscs" /><g
id="use414"
transform="matrix(-0.58778525,0.80901699,0.80901699,0.58778525,8.7774248,-0.98449244)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 9.8210863,30.007784 c 0,-5.108613 0.8181757,-6.714531 2.7781057,-6.713661 1.95993,8.7e-4 2.778105,1.584391 2.778105,6.713661"
id="path2192" /><g
id="g2200"
transform="translate(-0.0585258)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 11.599399,23.694455 v 1.058284"
id="path2194" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 12.657717,23.661518 v 1.058284"
id="path2196" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 13.716036,23.694455 v 1.058284"
id="path2198" /></g></g><g
id="g457"
transform="matrix(-0.74314483,-0.66913061,-0.66913061,0.74314483,36.246753,14.388183)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 9.8210863,28.420283 c 0,-3.614558 0.8181757,-5.12703 2.7781057,-5.12616 1.95993,8.7e-4 2.778105,1.512491 2.778105,5.12616"
id="path447" /><g
id="g455"
transform="translate(-0.0585258)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 11.599399,23.694455 v 1.058284"
id="path449" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 12.657717,23.661518 v 1.058284"
id="path451" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 13.716036,23.694455 v 1.058284"
id="path453" /></g></g></svg>

After

Width:  |  Height:  |  Size: 8.6 KiB

View File

@@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_korokuloj.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview15"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
showguides="true"
inkscape:zoom="0.92187502"
inkscape:cx="82.440676"
inkscape:cy="77.559321"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" /><title
id="title4279">Gutkato, korokuloj</title><defs
id="defs2" /><g
id="layer1"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /></g><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato, korokuloj</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><path
style="fill:#ff2626;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
d="m 9.3793304,11.756126 c -1.3795941,0.09517 -2.25316,1.858684 -0.9133044,2.988027 1.1965644,1.008566 1.892299,1.48925 2.748318,2.210774 0.745896,-0.832029 1.367047,-1.403555 2.40968,-2.566586 1.167493,-1.302309 0.05363,-2.928725 -1.32596,-2.833557 -0.682195,0.04706 -1.072035,0.545707 -1.40175,0.913498 -0.378394,-0.318944 -0.834789,-0.759215 -1.5169836,-0.712156 z"
id="path3500"
sodipodi:nodetypes="sscsscs" /><path
style="fill:#ff2626;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
d="m 21.608787,12.443843 c 1.437508,0.200713 2.222965,2.112241 0.737358,3.197314 -1.326729,0.969031 -2.0904,1.421688 -3.039538,2.114928 -0.720022,-0.926299 -1.328516,-1.570542 -2.334983,-2.865345 -1.126995,-1.44986 0.158406,-3.072244 1.595907,-2.871533 0.710833,0.09925 1.082476,0.650208 1.400755,1.059669 0.419555,-0.306442 0.92967,-0.734283 1.640501,-0.635033 z"
id="path1020"
sodipodi:nodetypes="sscsscs" /></svg>

After

Width:  |  Height:  |  Size: 5.8 KiB

View File

@@ -0,0 +1,491 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="800.0px"
height="800.0px"
viewBox="0 0 800.0 800.0"
version="1.1"
id="SVGRoot"
sodipodi:docname="blobcat_heart.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview529"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="true"
inkscape:current-layer="SVGRoot">
<inkscape:grid
type="xygrid"
id="grid1138" />
</sodipodi:namedview>
<title
id="title1016">Blobcat with heart in paws</title>
<defs
id="defs1121">
<linearGradient
id="light"
inkscape:swatch="gradient">
<stop
style="stop-color:#ffffff;stop-opacity:0"
offset="0"
id="stop17092" />
<stop
style="stop-color:#ffffff;stop-opacity:1"
offset="1"
id="stop17094" />
</linearGradient>
<linearGradient
id="heart"
inkscape:swatch="solid">
<stop
style="stop-color:#ff2050;stop-opacity:1;"
offset="0"
id="stop7049" />
</linearGradient>
<linearGradient
id="blush"
inkscape:swatch="solid">
<stop
style="stop-color:#ed6c30;stop-opacity:0.5;"
offset="0"
id="stop4680" />
</linearGradient>
<linearGradient
id="face"
inkscape:swatch="solid"
gradientTransform="matrix(0.86419753,0,0,1,63.82716,0)">
<stop
style="stop-color:#2b2b00;stop-opacity:1;"
offset="0"
id="stop7071" />
</linearGradient>
<linearGradient
id="body"
inkscape:swatch="solid">
<stop
style="stop-color:#fcc314;stop-opacity:1;"
offset="0"
id="stop5975" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#body"
id="linearGradient5979"
x1="38.738472"
y1="437.70772"
x2="761.27481"
y2="437.70772"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,-70.0002)" />
<linearGradient
inkscape:collect="always"
xlink:href="#face"
id="linearGradient7075"
x1="345.4498"
y1="91.322893"
x2="430"
y2="91.322893"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.69230773,0,0,1.375,17.307671,201.2498)" />
<linearGradient
inkscape:collect="always"
xlink:href="#face"
id="linearGradient7177"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.69230773,0,0,1.375,277.30767,201.2498)"
x1="345.4498"
y1="91.322893"
x2="430"
y2="91.322893" />
<linearGradient
inkscape:collect="always"
xlink:href="#face"
id="linearGradient5558"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1.3827831,-0.35029425,0.38353716,-1.5700333,779.50946,1276.3108)"
x1="539.43036"
y1="437.90143"
x2="660.23444"
y2="437.90143" />
<linearGradient
inkscape:collect="always"
xlink:href="#face"
id="linearGradient15760"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1.3827831,-0.35029425,0.38353716,-1.5700333,1239.6278,1276.3108)"
x1="539.43036"
y1="437.90143"
x2="660.23444"
y2="437.90143" />
<linearGradient
inkscape:collect="always"
xlink:href="#face"
id="linearGradient15762"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1.3827831,-0.35029425,0.38353716,-1.5700333,1239.6278,1276.3108)"
x1="539.43036"
y1="437.90143"
x2="660.23444"
y2="437.90143" />
<linearGradient
inkscape:collect="always"
xlink:href="#blush"
id="linearGradient4684"
x1="562.35876"
y1="515.12402"
x2="648.35876"
y2="515.12402"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.1627907,0,0,1.0619469,-93.905576,-112.03455)" />
<filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter5097"
x="-0.33"
y="-0.275"
width="1.66"
height="1.55">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="13.75"
id="feGaussianBlur5099" />
</filter>
<linearGradient
inkscape:collect="always"
xlink:href="#blush"
id="linearGradient5143"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.1627907,0,0,1.0619469,-513.90558,-112.03455)"
x1="562.35876"
y1="515.12402"
x2="648.35876"
y2="515.12402" />
<filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter5145"
x="-0.33"
y="-0.275"
width="1.66"
height="1.55">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="13.75"
id="feGaussianBlur5147" />
</filter>
<linearGradient
inkscape:collect="always"
xlink:href="#face"
id="linearGradient5190"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,-70.0002)" />
<linearGradient
inkscape:collect="always"
xlink:href="#heart"
id="linearGradient7053"
x1="182.67766"
y1="579.57064"
x2="617.32234"
y2="579.57064"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#light"
id="linearGradient18310"
gradientUnits="userSpaceOnUse"
x1="277.50012"
y1="491.90619"
x2="222.50011"
y2="436.90619"
gradientTransform="translate(-27.500114,-1.9059892)" />
<linearGradient
inkscape:collect="always"
xlink:href="#light"
id="linearGradient1285"
x1="429.62396"
y1="305.57281"
x2="297.92487"
y2="197.11472"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.14990233,0,0,0.21773855,220.27587,275.48419)" />
<linearGradient
inkscape:collect="always"
xlink:href="#light"
id="linearGradient1868"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.14990233,0,0,0.21773855,480.27587,275.48419)"
x1="429.62396"
y1="305.57275"
x2="297.92487"
y2="197.11472" />
<linearGradient
inkscape:collect="always"
xlink:href="#light"
id="linearGradient2712"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.07476526,0,0,0.11221501,277.68717,324.92333)"
x1="429.62396"
y1="305.57281"
x2="297.92487"
y2="197.11472" />
<linearGradient
inkscape:collect="always"
xlink:href="#light"
id="linearGradient2717"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.07476526,0,0,0.11221501,537.68717,324.92333)"
x1="429.62396"
y1="305.57281"
x2="297.92487"
y2="197.11472" />
<linearGradient
inkscape:collect="always"
xlink:href="#body"
id="linearGradient4005"
gradientTransform="matrix(1.0493826,0,0,1.3750004,21.790137,-243.75005)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#body"
id="linearGradient26217"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.0493826,0,0,1.3750002,-778.20986,-243.74992)" />
<linearGradient
inkscape:collect="always"
xlink:href="#face"
id="linearGradient26900"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1.3827831,-0.35029425,0.38353716,-1.5700333,779.50946,1276.3108)"
x1="539.43036"
y1="437.90143"
x2="660.23444"
y2="437.90143" />
</defs>
<path
style="display:inline;fill:url(#linearGradient5979);fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 750,549.9998 c -70.04933,182.12826 -631.59001,177.86599 -700,0 -50,-130 90.64736,-340.22765 90,-340 0,0 -60,-120.000001 -30,-150.000001 30,-30 210,20 210,20 50,-20 110,-20 160,0 0,0 180,-50 210,-20 30,30 -30,150.000001 -30,150.000001 -0.40252,0.012 140,210 90,340 z"
id="blobcat_body"
sodipodi:nodetypes="sscsccscs"
inkscape:label="body"
sodipodi:insensitive="true" />
<g
id="layer_blush"
inkscape:label="blush"
style="display:inline"
sodipodi:insensitive="true">
<ellipse
style="display:inline;mix-blend-mode:normal;fill:url(#linearGradient4684);fill-opacity:1;stroke:none;stroke-width:27.7805;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;filter:url(#filter5097)"
id="blush_right"
cx="610"
cy="434.99979"
inkscape:label="blush right"
rx="50"
ry="60" />
<ellipse
style="display:inline;mix-blend-mode:normal;fill:url(#linearGradient5143);fill-opacity:1;stroke:none;stroke-width:27.7805;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;filter:url(#filter5145)"
id="blush_left"
cx="190"
cy="434.99979"
inkscape:label="blush left"
rx="50"
ry="60" />
</g>
<path
style="fill:none;stroke:url(#linearGradient5190);stroke-width:25;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 320,449.9998 40,50 40,-50 40,50 40,-50"
id="mouth"
inkscape:label="mouth"
sodipodi:nodetypes="ccccc"
sodipodi:insensitive="true" />
<g
id="layer_whiskers"
inkscape:label="whiskers"
sodipodi:insensitive="true">
<path
style="fill:url(#linearGradient15760);fill-opacity:1;stroke:none;stroke-width:1.51834px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 760,484.9998 c 5,-5 -160,-60 -165,-35 -5,25 160,40 165,35 z"
id="whisker_right_bottom"
sodipodi:nodetypes="zzz"
inkscape:label="whisker right bottom" />
<path
style="fill:url(#linearGradient15762);fill-opacity:1;stroke:none;stroke-width:1.51834px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 760,339.9998 c -5,-5 -180,55 -165,80 15,25 170,-75 165,-80 z"
id="whisker_right_top"
sodipodi:nodetypes="zzz"
inkscape:label="whisker right top" />
<path
style="fill:url(#linearGradient5558);fill-opacity:1;stroke:none;stroke-width:1.51834px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 40,484.9998 c -5,-5 160,-60 165,-35 5,25 -160,40 -165,35 z"
id="whisker_left_bottom"
sodipodi:nodetypes="zzz"
inkscape:label="whisker left bottom" />
<path
style="fill:url(#linearGradient26900);fill-opacity:1;stroke:none;stroke-width:1.51834px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 40,339.9998 c 5,-5 180,55 165,80 -15,25 -170,-75 -165,-80 z"
id="whisker_left_top"
sodipodi:nodetypes="zzz"
inkscape:label="whisker left top" />
</g>
<g
id="layer_eyes"
inkscape:label="eyes"
style="display:inline"
sodipodi:insensitive="true">
<ellipse
style="display:inline;fill:url(#linearGradient7177);fill-opacity:1;stroke:none;stroke-width:29.2699;stroke-linecap:round;stroke-linejoin:round"
id="eye_right"
cx="530"
cy="324.99979"
rx="45"
ry="55"
inkscape:label="eye right" />
<ellipse
style="fill:url(#linearGradient7075);fill-opacity:1;stroke:none;stroke-width:29.2699;stroke-linecap:round;stroke-linejoin:round"
id="eye_left"
cx="270"
cy="324.99979"
rx="45"
ry="55"
inkscape:label="eye left" />
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="reflection"
style="display:none">
<ellipse
style="opacity:1;fill:url(#linearGradient2717);fill-opacity:1;stroke:#ffffff;stroke-width:2.2899;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0"
id="reflection_small_right"
cy="343.99979"
cx="557.5"
rx="6.3550477"
ry="7.8550501"
inkscape:label="small right" />
<ellipse
style="opacity:1;fill:url(#linearGradient1868);fill-opacity:1;stroke:#ffffff;stroke-width:4.5166;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0"
id="reflection_big_right"
cy="312.49979"
cx="520"
rx="12.741699"
ry="15.241702"
inkscape:label="big right" />
<ellipse
style="opacity:1;fill:url(#linearGradient2712);fill-opacity:1;stroke:#ffffff;stroke-width:2.2899;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0"
id="reflection_small_left"
cy="343.99979"
cx="297.5"
rx="6.3550477"
ry="7.8550501"
inkscape:label="small left" />
<ellipse
style="opacity:1;fill:url(#linearGradient1285);fill-opacity:1;stroke:#ffffff;stroke-width:4.5166;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0"
id="reflection_big_left"
cy="312.49979"
cx="260"
rx="12.741699"
ry="15.241702"
inkscape:label="big left" />
</g>
</g>
<metadata
id="metadata1014">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:title>Blobcat with heart in paws</dc:title>
<dc:date>2022-06-13</dc:date>
<dc:creator>
<cc:Agent>
<dc:title>tastytea</dc:title>
</cc:Agent>
</dc:creator>
<dc:source>https://schlomp.space/tastytea/blobcats/src/branch/main/svg/blobcat_heart.svg</dc:source>
<dc:subject>
<rdf:Bag>
<rdf:li>blobcat</rdf:li>
<rdf:li>emoji</rdf:li>
<rdf:li>heart</rdf:li>
</rdf:Bag>
</dc:subject>
<cc:license
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="layer_heart"
inkscape:label="heart"
style="display:inline"
transform="translate(0,-70.0002)"
sodipodi:insensitive="true">
<path
style="fill:url(#linearGradient7053);fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 400,820.0002 c 0,0 -300,-250 -225,-370.0002 75,-120.0002 225,20.0002 225,20.0002 0,0 150,-140.0004 225,-20.0002 75,120.0002 -225,370.0002 -225,370.0002 z"
id="heart_object"
sodipodi:nodetypes="czczc"
inkscape:label="heart" />
<path
style="opacity:0.5;fill:url(#linearGradient18310);fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 200,545.0002 c 20,-50 50,-90 100,-110 20,-20 -60,-35 -100,5 -40,40 -20,125 0,105 z"
id="heart_reflection"
sodipodi:nodetypes="cczc"
inkscape:label="reflection" />
</g>
<g
id="layer_hands"
inkscape:label="hands"
transform="translate(0,-70.0002)"
sodipodi:insensitive="true">
<rect
style="display:inline;opacity:1;fill:url(#linearGradient4005);fill-opacity:1;stroke:none;stroke-width:5.69783;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;paint-order:normal"
id="hand_support_right"
width="85"
height="110.00004"
x="515"
y="595.00018"
inkscape:label="support right" />
<path
style="fill:url(#body);stroke:url(#face);stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
d="m 515,705.0002 c -45,-95 -45,-100 -45,-125 0,-25 20,-35 30,-10 0,-25 20,-35 30,-10 0,-25 20,-35 30,-10 10,25 10,30 40,45"
id="hand_right"
sodipodi:nodetypes="cccccc"
inkscape:label="right" />
<rect
style="display:inline;opacity:1;fill:url(#linearGradient26217);fill-opacity:1;stroke:none;stroke-width:5.69783;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;paint-order:normal"
id="hand_support_left"
width="85"
height="110.00002"
x="-285"
y="595.00018"
inkscape:label="support left"
transform="scale(-1,1)" />
<path
style="fill:url(#body);stroke:url(#face);stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
d="m 285,705.0002 c 45,-95 45,-100 45,-125 0,-25 -20,-35 -30,-10 0,-25 -20,-35 -30,-10 0,-25 -20,-35 -30,-10 -10,25 -10,30 -40,45"
id="hand_left"
sodipodi:nodetypes="cccccc"
inkscape:label="left" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

View File

@@ -0,0 +1,145 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_heroo.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
inkscape:export-filename="gutkato_salutas.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview9395"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="2.6074563"
inkscape:cx="41.227921"
inkscape:cy="22.819175"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" /><title
id="title4279">Gutkato heroo</title><defs
id="defs2" /><path
style="fill:#1262b2;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;stroke-opacity:1;stop-color:#000000"
d="m 31.303808,14.673006 c 2.349408,2.349408 1.868115,13.93318 1.868115,18.264785 -1.423941,0 -2.162367,-1.058334 -3.200201,-1.058334 -1.037834,0 -2.133467,1.058334 -3.2002,1.058334 -1.066734,0 -2.133468,-1.058334 -3.200201,-1.058334 -1.066734,0 -2.133467,1.058334 -3.200201,1.058334 -1.066733,0 -2.133467,-1.058334 -3.200201,-1.058334 -1.066733,0 -2.133467,1.058334 -3.2002,1.058334 -1.066734,0 -2.214175,-1.058334 -3.200201,-1.058334 -0.9860262,0 -2.1474413,1.058334 -3.2002006,1.058334 0,-6.573959 0.4766265,-19.184114 1.4392447,-22.776654"
id="path310"
sodipodi:nodetypes="cczzzzzzzcc" /><path
id="path236"
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 10.535567,2.9915486 C 10.147914,4.2915719 8.9573044,7.2582738 9.0095622,10.161137 8.0154143,11.256147 7.0855022,13.50176 6.4257406,16.00264 6.2240111,15.411425 6.0360692,14.919981 5.9218954,14.659053 5.5676856,13.849556 5.217515,13.250726 4.8563274,12.827641 4.1339491,11.981472 3.3665066,11.838172 2.4275352,12.11864 c -0.9389716,0.280467 -1.49875115,0.832641 -1.63607582,1.942 -0.0686619,0.55468 -0.0317375,1.248531 0.11627197,2.1177 0.0740055,0.434584 0.30219405,1.427221 0.60926505,2.453597 0.6377161,2.131546 1.9618151,5.858997 4.5361572,7.414535 3.0027112,5.244642 20.3254814,5.321586 24.5313184,1.115694 1.544094,-1.544112 1.690462,-7.147543 0.719336,-12.48916 1.213623,-1.809894 1.930026,-5.5632383 1.783354,-7.3773274 -2.933359,-0.089247 -5.119283,0.3570392 -7.4042,1.2412678 C 23.013384,7.2268 18.865654,6.3288266 15.332173,6.9168903 13.49569,5.1053631 12.124561,4.0338314 10.535567,2.9915486 Z" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="15.641115"
cy="11.51972"
rx="1.6752723"
ry="2.1418331"
transform="rotate(10)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(8.9233832,1.0045043)"
style="stroke-width:1.07136" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 25.062694,18.321491 4.898877,-0.563716"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 24.99808,20.477083 4.651959,1.014106"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 10.476811,16.726885 8.2257151,15.603186"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 9.8903258,18.590659 7.7064462,18.371017"
id="path7895" /><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato heroo</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><path
style="fill:#c2748e;fill-opacity:1;stroke:#382129;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 11.730252,19.065298 c -0.817385,5.341071 10.922078,5.919973 11.261059,1.072315 -1.618771,0.314656 -5.500246,-0.519619 -6.403931,-1.12916 -0.931547,0.454346 -3.490062,0.527565 -4.857128,0.05685 z"
id="path2839"
sodipodi:nodetypes="ccccc" /><path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path2893"
d="m 20.141567,21.47209 -0.724684,-1.62767 1.771945,0.186239 z" /><use
x="0"
y="0"
xlink:href="#path2893"
id="use2895"
transform="translate(-6.2574506,-0.68318501)" /><path
style="fill:none;fill-opacity:1;stroke:#382226;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 23.262547,20.070864 c -1.774758,0.344978 -5.522081,-0.31092 -6.670332,-1.08542 -1.119034,0.545788 -3.752009,0.449681 -5.119074,-0.02104"
id="path1289" /><g
id="g10107"
transform="rotate(53.343868,11.689211,18.291635)"><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.891479;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="circle1002"
cx="21.432327"
cy="10.351334"
r="0.33072916"
transform="matrix(-0.34202014,0.93969262,0.93969262,0.34202014,0,0)" /><path
id="path978"
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:1.2795;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
d="M 2.672936,22.551242 A 0.84504452,0.84504452 0 0 0 3.0422118,23.57034 0.84504452,0.84504452 0 0 0 3.5055487,23.980196 0.84504452,0.84504452 0 0 0 4.588953,23.475646 0.84504452,0.84504452 0 0 0 4.63556,23.264792 0.84504452,0.84504452 0 0 0 4.734815,23.074864 0.84504452,0.84504452 0 0 0 4.2294845,21.991178 0.84504452,0.84504452 0 0 0 3.6100306,22.007718 0.84504452,0.84504452 0 0 0 2.672867,22.551311 Z" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1004"
transform="translate(-0.27004874,-0.87258957)" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1008"
transform="translate(0.02459657,-1.6821205)" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1010"
transform="translate(0.79051461,-2.1719201)"
style="stroke-width:1.00012;stroke-dasharray:none" /></g><g
id="g989"
transform="rotate(50,9.498425,8.0379448)"><path
id="rect1345"
style="fill:#804c2b;stroke:#000000;stroke-width:0.79375;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:8;stroke-dasharray:none;stop-color:#000000"
d="m 8.010885,12.517416 c -0.824068,0 -1.487247,0.553686 -1.487247,1.241268 0,0.687583 0.663179,1.240751 1.487247,1.240751 h 0.24753 c -6.57e-4,0.01814 -10e-4,0.03646 -10e-4,0.05478 v 3.229775 c 0,0.748107 0.553685,1.350305 1.2412677,1.350305 0.6875833,0 1.2407513,-0.602198 1.2407513,-1.350305 v -3.229778 c 0,-0.01832 -3.76e-4,-0.03664 -10e-4,-0.05478 h 0.247531 c 0.824067,0 1.487247,-0.553168 1.487247,-1.240751 0,-0.687582 -0.66318,-1.241268 -1.487247,-1.241268 z"
sodipodi:nodetypes="ssscssssscssss" /><path
id="rect3453"
style="fill:#d6d6d6;stroke:none;stroke-width:0.79375;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:8;stroke-dasharray:none;stop-color:#000000"
d="m 7.54644,-1.4417389 1.9519848,-2.1166666 1.9519842,2.1166666 -0.529166,15.0724939 c -0.6708,0.17974 -2.078188,0.205637 -2.845636,0 z"
sodipodi:nodetypes="cccccc" /><path
style="fill:none;stroke:#a6a6a6;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;stroke-opacity:1;stop-color:#000000"
d="M 9.4984243,0.992452 V 13.478137"
id="path921"
sodipodi:nodetypes="cc" /><path
id="path865"
style="fill:none;stroke:#000000;stroke-width:0.79375;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:8;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
d="m 7.54644,-1.4417389 1.9519848,-2.1166666 1.9519842,2.1166666 -0.529166,15.0724939 c -0.6708,0.17974 -2.078188,0.205637 -2.845636,0 z"
sodipodi:nodetypes="cccccc" /></g></svg>

After

Width:  |  Height:  |  Size: 10 KiB

View File

@@ -0,0 +1,155 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_hura.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview15"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
showguides="true"
inkscape:zoom="2.6074563"
inkscape:cx="35.666945"
inkscape:cy="74.210256"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" /><title
id="title4279">Gutkato, hura!</title><defs
id="defs2" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833331;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="M 5.0519279,21.318846 C 4.4023552,20.097177 2.3959674,16.682724 1.4392989,14.410505 0.08619746,11.196704 0.22617633,9.4274633 2.0193486,8.6672463 3.8238136,7.9022417 5.1977296,9.0450255 6.5795584,12.300409"
id="path441"
sodipodi:nodetypes="cssc" /><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.891479;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="circle443"
cx="2.6655858"
cy="10.446854"
r="0.33072916"
transform="matrix(-0.92050485,0.39073113,0.39073113,0.92050485,0,0)" /><path
id="path445"
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:1.2795;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
d="m 2.6422028,10.089949 a 0.84504452,0.84504452 0 0 0 -0.4934752,0.965094 0.84504452,0.84504452 0 0 0 0.016246,0.618384 0.84504452,0.84504452 0 0 0 1.1078843,0.448249 0.84504452,0.84504452 0 0 0 0.1859955,-0.109712 0.84504452,0.84504452 0 0 0 0.2065978,-0.05693 0.84504452,0.84504452 0 0 0 0.4479205,-1.108656 0.84504452,0.84504452 0 0 0 -0.4345631,-0.44176 0.84504452,0.84504452 0 0 0 -1.0367017,-0.314672 z" /><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.891479;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="use447"
cx="1.9379821"
cy="9.8946476"
r="0.33072916"
transform="matrix(-0.92050485,0.39073113,0.39073113,0.92050485,0,0)" /><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.891479;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="use449"
cx="1.0764976"
cy="9.8946476"
r="0.33072916"
transform="matrix(-0.92050485,0.39073113,0.39073113,0.92050485,0,0)" /><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.891479;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers fill stroke;stop-color:#000000"
id="use451"
cx="0.35427615"
cy="10.446854"
r="0.33072916"
transform="matrix(-0.92050485,0.39073113,0.39073113,0.92050485,0,0)" /><path
id="path236"
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 7.2579548 2.2437906 C 6.9030818 3.5531419 5.7871361 6.548918 5.9123005 9.4495522 C 3.6598907 12.059318 2.5352084 21.512304 3.5346679 25.242386 C 5.1506873 31.273533 23.988888 31.573152 28.399816 27.162166 C 29.067921 26.494054 29.347739 24.821655 29.361515 22.709724 C 30.237096 21.819073 31.929902 19.613181 32.541682 17.324007 C 33.717224 12.925349 33.342267 11.161185 31.452343 10.65568 C 30.595675 10.426544 29.879323 10.576851 29.242142 11.218953 C 29.790452 9.3878796 30.042235 7.2221846 29.910318 5.9799966 C 26.975645 5.9644671 24.801692 6.4659505 22.539709 7.4072997 C 19.838061 6.1646289 15.669306 5.370533 12.151713 6.047176 C 10.270304 4.282355 8.8726304 3.2458272 7.2579548 2.2437906 z " /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="12.832696"
cy="11.432744"
rx="1.6752723"
ry="2.1418331"
transform="rotate(10)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(8.9233832,1.0045043)"
style="stroke-width:1.07136" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.312044,17.748161 4.898878,-0.563716"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.247431,19.903753 4.651959,1.014106"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 7.7261616,16.153556 -2.2510961,-1.1237"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.1396762,18.01733 4.9557965,17.797688"
id="path7895" /><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato, hura!</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><path
style="fill:#c2748e;fill-opacity:1;stroke:#382129;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 8.9936748,18.20444 c -0.7470914,6.739494 10.6772102,7.230125 11.2610592,1.072314 -1.618773,0.314658 -5.500247,-0.519621 -6.403931,-1.129159 -0.931547,0.454346 -3.490063,0.527565 -4.8571282,0.05684 z"
id="path2839" /><path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path2893"
d="m 17.400155,20.634241 -0.724684,-1.62767 1.771945,0.186239 z" /><use
x="0"
y="0"
xlink:href="#path2893"
id="use2895"
transform="translate(-6.2574506,-0.68318501)" /><path
style="fill:none;fill-opacity:1;stroke:#382226;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 20.521135,19.233015 c -1.774758,0.344978 -5.522081,-0.31092 -6.670332,-1.08542 -1.119033,0.545788 -3.752009,0.449681 -5.1190742,-0.02104"
id="path1289" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833331;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 31.452582,10.655463 c -1.557664,-0.416634 -2.651372,0.420967 -3.648882,3.18915 -0.214986,0.596597 -0.390255,1.044118 -0.727468,1.628189"
id="path453"
sodipodi:nodetypes="csc" /><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.891479;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="circle457"
cx="34.295235"
cy="3.8561716"
r="0.33072916"
transform="rotate(15)" /><path
id="path459"
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:1.2795;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
d="m 31.045449,12.179723 a 0.84504452,0.84504452 0 0 1 0.622985,0.887025 0.84504452,0.84504452 0 0 1 0.06997,0.614628 0.84504452,0.84504452 0 0 1 -1.034717,0.598075 0.84504452,0.84504452 0 0 1 -0.199453,-0.08277 0.84504452,0.84504452 0 0 1 -0.212506,-0.02764 0.84504452,0.84504452 0 0 1 -0.597857,-1.035519 0.84504452,0.84504452 0 0 1 0.368853,-0.497939 0.84504452,0.84504452 0 0 1 0.982819,-0.455888 z" /><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.891479;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="circle461"
cx="33.567631"
cy="3.3039656"
r="0.33072916"
transform="rotate(15.000001)" /><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.891479;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="circle463"
cx="32.706146"
cy="3.3039656"
r="0.33072916"
transform="rotate(15.000001)" /><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.891479;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="circle465"
cx="31.983927"
cy="3.8561716"
r="0.33072916"
transform="rotate(15.000001)" /></svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -0,0 +1,172 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_malsata_manĝilaro.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview3241"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="0.92187502"
inkscape:cx="16.271186"
inkscape:cy="89.491523"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" /><title
id="title4279">Gutkato malsata, manĝilaro</title><defs
id="defs2" /><path
id="path236"
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 7.1711384 3.7041666 C 6.9110626 5.035593 6.0130409 8.1032493 6.3458658 10.987443 C 4.9821773 12.817991 3.9864817 16.83846 3.7589436 20.429244 C 2.4330076 20.393523 1.6161803 20.915579 1.2076782 22.036381 C 0.57877445 23.761896 1.6086673 25.024631 4.4725951 26.171012 C 7.5725271 31.125495 23.661179 31.326304 28.481982 27.555423 C 30.50967 26.728348 31.135983 25.743809 30.81879 24.372672 C 30.687748 23.806214 30.441085 23.369303 30.04261 23.062158 C 30.219096 20.197737 29.855689 16.431196 28.972391 13.32115 C 30.00524 11.402343 30.354782 7.5977563 30.033308 5.8063638 C 27.105074 6.0012977 24.972801 6.6570667 22.784139 7.7581826 C 20.000341 6.7124258 15.785367 6.219729 12.325346 7.1468504 C 10.322236 5.5214737 8.8535064 4.5878477 7.1711384 3.7041666 z " /><path
style="fill:none;fill-opacity:1;stroke:#66ffff;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 19.929561,21.153548 v 4.206455"
id="path4022" /><path
style="fill:none;fill-opacity:1;stroke:#66ffff;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 18.871227,21.486185 v 3.036292"
id="path1355" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="M 5.0744982,26.400303 C 1.7543396,25.191864 0.53649852,23.877922 1.2076516,22.036488 1.8788047,20.195054 3.6515924,19.969612 6.9748342,21.179173"
id="path915" /><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.891479;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="circle1002"
cx="21.432327"
cy="10.351334"
r="0.33072916"
transform="matrix(-0.34202014,0.93969262,0.93969262,0.34202014,0,0)" /><path
id="path978"
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:1.2795;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
d="M 2.672936,22.551242 A 0.84504452,0.84504452 0 0 0 3.0422118,23.57034 0.84504452,0.84504452 0 0 0 3.5055487,23.980196 0.84504452,0.84504452 0 0 0 4.588953,23.475646 0.84504452,0.84504452 0 0 0 4.63556,23.264792 0.84504452,0.84504452 0 0 0 4.734815,23.074864 0.84504452,0.84504452 0 0 0 4.2294845,21.991178 0.84504452,0.84504452 0 0 0 3.6100306,22.007718 0.84504452,0.84504452 0 0 0 2.672867,22.551311 Z" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1004"
transform="translate(-0.27004874,-0.87258957)" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1008"
transform="translate(0.02459657,-1.6821205)" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1010"
transform="translate(0.79051461,-2.1719201)"
style="stroke-width:1.00012;stroke-dasharray:none" /><g
id="g476"
transform="matrix(-0.22495105,-0.97437007,-0.97437007,0.22495105,56.066772,29.437218)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 7.8361683,29.645983 c 0,-4.572106 0.8181757,-6.185364 2.7781057,-6.184494 1.95993,8.7e-4 2.778105,1.614295 2.778105,6.184494"
id="path466" /></g><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.891479;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="circle1031"
cx="31.837284"
cy="-22.842051"
r="0.33072916"
transform="rotate(77)" /><path
id="path1033"
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:1.2795;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
d="m 29.281929,24.728792 a 0.84504452,0.84504452 0 0 1 -0.490721,0.966499 0.84504452,0.84504452 0 0 1 -0.509832,0.350333 0.84504452,0.84504452 0 0 1 -1.013839,-0.632822 0.84504452,0.84504452 0 0 1 -0.02056,-0.214963 0.84504452,0.84504452 0 0 1 -0.07536,-0.200608 0.84504452,0.84504452 0 0 1 0.633632,-1.014024 0.84504452,0.84504452 0 0 1 0.61282,0.09191 0.84504452,0.84504452 0 0 1 0.863931,0.653752 z" /><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.891479;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="use1035"
cx="31.109682"
cy="-23.394257"
r="0.33072916"
transform="rotate(77.000001)" /><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.891479;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="use1037"
cx="30.248196"
cy="-23.394257"
r="0.33072916"
transform="rotate(77.000001)" /><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.891479;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="use1039"
cx="29.525976"
cy="-22.842051"
r="0.33072916"
transform="rotate(77.000001)" /><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato malsata, manĝilaro</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><g
id="g1099"
transform="translate(35.796008,2.9165592)"><path
id="rect307"
style="fill:#d9d9d9;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
d="m -7.6332875,8.0098623 c -0.8418716,0.589489 -1.2507295,3.2840547 -1.6621859,5.6175407 -0.202802,1.150145 0.1075222,2.879663 1.5112809,3.618495 l -1.7699369,10.03781 1.8239461,0.321611 1.7706547,-10.041882 c 1.5741589,-0.2276 2.464165,-1.785577 2.6570201,-2.879312 0.4475024,-2.537913 1.0854945,-4.8102471 0.3593678,-5.8472632 -1.0050537,0.7037461 -1.3569703,3.0229862 -2.194959,4.4489392 -0.034037,-1.603627 0.5922132,-3.8022856 -0.1501143,-4.8624389 -1.1240586,0.787074 -1.0961348,2.9844109 -1.8041135,4.5178559 -0.3047691,-1.635664 0.05496,-4.0802943 -0.54096,-4.9313557 z" /><path
id="rect307-3"
style="fill:#d9d9d9;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stop-color:#000000"
d="m -32.255801,6.2251027 c -3.442144,-0.6069428 -3.162333,7.0445753 -0.968758,10.1773263 l 0.899338,10.279485 1.845037,-0.16142 z"
sodipodi:nodetypes="ccccc" /><g
id="g7421"
transform="translate(-40.783913,-2.5087462)"><circle
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="path379"
cx="16.075838"
cy="13.845025"
r="2.4418788" /><circle
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.793749;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="path3848"
cx="15.326144"
cy="13.152761"
r="0.90922391" /><use
x="0"
y="0"
xlink:href="#path3848"
id="use7413"
transform="matrix(0.77726379,0,0,0.77726379,5.0209783,4.3397258)"
style="stroke-width:1.28656" /><use
x="0"
y="0"
xlink:href="#path3848"
id="use7415"
transform="matrix(0.73159205,0,0,0.73159205,5.4309887,5.2006037)"
style="stroke-width:1.36688" /></g><use
x="0"
y="0"
xlink:href="#g7421"
id="use7429"
transform="translate(8.953077,0.6924552)" /></g></svg>

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -0,0 +1,138 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_ideo.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
inkscape:export-filename="gutkato_pensas.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview4310"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="0.453125"
inkscape:cx="57.37931"
inkscape:cy="76.137931"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="g2370"
showguides="false" /><title
id="title4279">Gutkato, ideo</title><defs
id="defs2" /><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato, ideo</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><g
id="g2370"
transform="translate(1.0697807,20.791498)"><path
sodipodi:type="star"
style="opacity:0.8;fill:#ffe666;fill-opacity:1;stroke:#998a3d;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path2306"
inkscape:flatsided="false"
sodipodi:sides="8"
sodipodi:cx="16.41181"
sodipodi:cy="-14.291964"
sodipodi:r1="6.1026907"
sodipodi:r2="3.6616147"
sodipodi:arg1="0.78539816"
sodipodi:arg2="1.1780972"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 20.727064,-9.9767096 -2.914015,-0.9323634 -1.401239,2.7198001 -1.401239,-2.7198001 -2.914015,0.9323634 0.932363,-2.9140144 -2.7198,-1.40124 2.7198,-1.401239 -0.932363,-2.914015 2.914015,0.932364 1.401239,-2.7198 1.401239,2.7198 2.914015,-0.932364 -0.932363,2.914015 2.7198,1.401239 -2.7198,1.40124 z"
transform="translate(-0.01909092)" /><path
style="opacity:1;fill:#ffffff;fill-opacity:0.2;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 15.202071,-10.245202 c 0,-1.810685 -1.587499,-2.102806 -1.5875,-4.101041 0,-1.534316 1.243809,-2.778125 2.778125,-2.778125 1.534316,0 2.778125,1.243809 2.778171,2.778125 4.6e-5,1.998235 -1.587453,2.290356 -1.587453,4.101041"
id="path2089"
sodipodi:nodetypes="ccscc" /><rect
style="fill:#d9ccc3;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="rect571"
width="2.3812499"
height="2.3812499"
x="15.202071"
y="-10.245202" /><path
style="opacity:1;fill:none;fill-opacity:0.2;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 16.689096,-10.431689 c 0,0 0.745714,-2.101971 0.745714,-2.783043 0,-0.982885 -1.978589,-0.157723 -1.142335,0.678531 0.05093,0.05093 0.150976,0.04951 0.200489,0 0.836254,-0.836254 -1.142335,-1.661416 -1.142335,-0.678531 0,0.681072 0.745714,2.783043 0.745714,2.783043"
id="path2364"
sodipodi:nodetypes="csccsc" /></g><g
id="layer1"
transform="matrix(0.73981744,0,0,0.7399986,4.4046041,9.6943303)"
style="stroke-width:1.35152"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.43035;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.86073;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="12.96371"
cy="12.570978"
rx="1.6752723"
ry="2.1418331"
transform="rotate(8)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(8.953004,0.69247082)"
style="stroke-width:1.44796" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.893974;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.893974;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.893974;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.893974;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /><g
id="g1303"
transform="rotate(76.822959,14.236723,26.294202)"
style="stroke-width:1.35152"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.893974;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 11.506204,32.810968 c -1.138288,-1.971572 -1.7029335,-4.30486 -1.5485994,-5.846417 0.095136,-0.950264 0.2440254,-1.674922 0.4590394,-2.218767 0.430028,-1.087691 1.124555,-1.452131 2.182548,-1.451661 1.057993,4.7e-4 1.75252,0.366916 2.182548,1.455374 0.215014,0.54423 0.363903,1.268962 0.459039,2.218703 0.09514,0.949741 0.355114,1.813896 1.077244,3.064662"
id="path915"
sodipodi:nodetypes="csssssc" /><g
id="g1296"
transform="translate(-0.0585258)"
style="stroke-width:1.35152"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.715179;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 11.599399,23.694455 v 1.058284"
id="path1283" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.715179;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 12.657717,23.661518 v 1.058284"
id="use1287" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.715179;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 13.716036,23.694455 v 1.058284"
id="use1291" /></g></g><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.893974;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /></g></svg>

After

Width:  |  Height:  |  Size: 9.5 KiB

View File

@@ -0,0 +1,169 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_en_skatolo.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview6195"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="1.84375"
inkscape:cx="41.491525"
inkscape:cy="68.067797"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="g8935" /><title
id="title4279">Gutkato en skatolo</title><defs
id="defs2" /><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato en skatolo</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><g
id="g9058"
transform="translate(0.02642716,-0.43371054)"><g
id="g351"
transform="translate(0,0.26458335)"><path
style="fill:#9e794d;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
d="m 6.3529061,16.885657 -3.1749999,7.039028 6.8498238,-1.587501 3.175,-6.509869 -6.8498239,1.058342"
id="path7051"
sodipodi:nodetypes="ccccc" /><path
id="path6630"
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stop-color:#000000"
d="M 27.46089,16.885647 13.202732,15.827322 6.3529077,16.885647"
sodipodi:nodetypes="ccc" /><g
id="g6620"
transform="translate(8.5579772e-5,-8.9958336)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="m 9.0994149,15.973076 c -0.246229,-2.134293 0.4181758,-4.404454 0.6105839,-5.389705 1.2446422,0.653921 2.3311172,1.344806 3.8130482,2.547579 2.559778,-0.686067 5.678212,-0.321465 7.737708,0.452392 1.619206,-0.814822 3.196652,-1.300001 5.363004,-1.444252 0.237832,1.325625 -0.02094,4.141096 -0.785054,5.561007 1.097369,3.864722 1.1104,9.099548 -0.03195,10.242185 C 22.543487,31.206397 8.6066515,30.984481 7.4110954,26.521453 6.6716799,23.761205 7.5757757,18.018836 9.0994149,15.973076 Z"
id="path236" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="15.04367"
cy="16.455294"
rx="1.2393969"
ry="1.5849401"
transform="matrix(0.99026337,0.13920652,-0.13913969,0.99027276,0,0)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(6.6235637,0.51242553)"
style="stroke-width:1.44797" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.661458;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 11.805703,21.991954 c -1.053414,2.249161 1.732771,3.235057 3.399376,1.251068 2.369384,2.6704 4.806093,0.883775 4.124655,-0.814337"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.661458;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 21.338295,21.239294 3.607499,-0.54341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.661458;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 21.346178,22.83512 3.465674,0.629838"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.661458;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 10.512846,20.436699 8.8194541,19.663808"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.661458;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 10.127341,21.83019 8.5069884,21.724154"
id="path7895" /></g><path
id="rect6420"
style="fill:#ae8a60;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
d="M 6.3529077,16.885647 20.611066,17.943989 27.46089,16.885647 V 31.559014 L 20.611066,32.617356 6.3529077,31.559014 Z"
sodipodi:nodetypes="ccccccc" /><path
style="fill:#9e794d;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
d="M 20.611066,32.617356 V 17.943989 l 3.175,7.039028 6.849824,-1.587501 -3.175,-6.509869 -6.849824,1.058342"
id="path7049"
sodipodi:nodetypes="cccccc" /><g
id="g1303"
transform="matrix(0.71233628,0.05273291,0.05176818,-0.69930429,-0.16514121,34.945029)"
style="stroke-width:1.41299"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.93463083;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 9.8210863,27.36195 c 0,-2.482737 0.8181757,-4.068697 2.7781057,-4.067827 1.95993,8.7e-4 2.778105,1.547181 2.778105,4.067827"
id="path915" /><g
id="g1296"
transform="translate(-0.0585258)"
style="stroke-width:1.41299"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.747705;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 11.599399,23.694455 v 1.058284"
id="path1283" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.747705;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 12.657717,23.661518 v 1.058284"
id="use1287" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.747705;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 13.716036,23.694455 v 1.058284"
id="use1291" /></g></g><g
id="g8935"
transform="matrix(0.71233628,0.05273291,0.05176818,-0.69930429,7.1798168,35.534491)"
style="stroke-width:1.41299"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.93463083;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 9.8210863,27.36195 c 0,-2.482737 0.8181757,-4.068697 2.7781057,-4.067827 1.95993,8.7e-4 2.778105,1.547181 2.778105,4.067827"
id="path8925" /><g
id="g8933"
transform="translate(-0.0585258)"
style="stroke-width:1.41299"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.747705;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 11.599399,23.694455 v 1.058284"
id="path8927" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.747705;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 12.657717,23.661518 v 1.058284"
id="path8929" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.747705;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 13.716036,23.694455 v 1.058284"
id="path8931" /></g></g><g
id="g2360"
transform="matrix(-1.2010471,2.7490882,2.7490882,1.2010471,-30.251261,16.442963)"
style="fill:#78634a;fill-opacity:1;stroke-width:0.333333"><circle
style="fill:#78634a;fill-opacity:1;stroke:none;stroke-width:0.29716;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="circle1002"
cx="15.844251"
cy="1.3037357"
r="0.33072916"
transform="matrix(-0.34202014,0.93969262,0.93969262,0.34202014,0,0)" /><path
id="path978"
style="fill:#78634a;fill-opacity:1;stroke:none;stroke-width:0.4265;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
d="m -3.9177901,14.205707 a 0.84504452,0.84504452 0 0 0 0.3692758,1.019098 0.84504452,0.84504452 0 0 0 0.4633369,0.409856 0.84504452,0.84504452 0 0 0 1.0834043,-0.50455 0.84504452,0.84504452 0 0 0 0.046607,-0.210854 0.84504452,0.84504452 0 0 0 0.099255,-0.189928 0.84504452,0.84504452 0 0 0 -0.5053305,-1.083686 0.84504452,0.84504452 0 0 0 -0.6194539,0.01654 0.84504452,0.84504452 0 0 0 -0.9371636,0.543593 z" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1004"
transform="translate(-0.2700487,-0.8725896)"
style="fill:#78634a;fill-opacity:1;stroke-width:0.333333" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1008"
transform="translate(0.0245966,-1.6821205)"
style="fill:#78634a;fill-opacity:1;stroke-width:0.333333" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1010"
transform="translate(0.7905146,-2.1719201)"
style="fill:#78634a;fill-opacity:1;stroke-width:0.333373;stroke-dasharray:none" /></g></g></g></svg>

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -0,0 +1,103 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><title
id="title4279">Gutkato ĝojsurprizita</title><defs
id="defs2" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato ĝojsurprizita</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><path
style="fill:#c2748e;fill-opacity:1;stroke:#382129;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 9.5948498,19.024864 c -0.5114313,6.761462 10.9230342,6.853091 11.2916232,0.678656 -1.606805,0.37096 -5.515031,-0.327349 -6.439437,-0.904978 -0.915123,0.48658 -3.469525,0.649045 -4.8521862,0.226322 z"
id="path2839" /><path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.622592;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path2893"
d="m 17.272345,21.517428 -1.048133,-1.81542 2.096266,0 z"
transform="matrix(0.84787223,0.059289,-0.059289,0.84787223,4.7120143,1.8917128)" /><use
x="0"
y="0"
xlink:href="#path2893"
id="use2895"
transform="translate(-6.2774815,-0.46438696)" /><path
style="fill:none;fill-opacity:1;stroke:#382226;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 21.151185,19.65051 c -1.761637,0.406706 -5.529568,-0.118013 -6.704149,-0.851968 -1.099304,0.58451 -3.73403,0.580351 -5.1166907,0.157628"
id="path1289" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="12.96371"
cy="12.570978"
rx="1.6752723"
ry="2.1418331"
transform="rotate(8)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(8.953004,0.69247082)"
style="stroke-width:1.07136" /><g
id="g1303"
transform="rotate(18,12.148968,17.314602)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 9.8210863,27.36195 c 0,-2.482737 0.8181757,-4.068697 2.7781057,-4.067827 1.95993,8.7e-4 2.778105,1.547181 2.778105,4.067827"
id="path915" /><g
id="g1296"
transform="translate(-0.0585258)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 11.599399,23.694455 v 1.058284"
id="path1283" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 12.657717,23.661518 v 1.058284"
id="use1287" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 13.716036,23.694455 v 1.058284"
id="use1291" /></g></g><g
id="g507"
transform="matrix(-0.98480775,0.17364819,0.17364819,0.98480775,27.220769,-1.4325415)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 9.8210863,27.36195 c 0,-2.482737 0.8181757,-4.068697 2.7781057,-4.067827 1.95993,8.7e-4 2.778105,1.547181 2.778105,4.067827"
id="path497" /><g
id="g505"
transform="translate(-0.0585258)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 11.599399,23.694455 v 1.058284"
id="path499" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 12.657717,23.661518 v 1.058284"
id="path501" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 13.716036,23.694455 v 1.058284"
id="path503" /></g></g></svg>

After

Width:  |  Height:  |  Size: 8.0 KiB

View File

@@ -0,0 +1,89 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_ridas.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview260"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="1.84375"
inkscape:cx="34.711864"
inkscape:cy="65.355932"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" /><title
id="title4279">Gutkato ridas</title><defs
id="defs2" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato ridas</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><path
style="fill:none;fill-opacity:0.6;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
d="m 9.3849149,14.378834 c 0.9021801,-1.154738 2.8479581,-0.902945 3.4061821,0.478707"
id="path304" /><use
x="0"
y="0"
xlink:href="#path304"
id="use470"
transform="translate(8.9530039,0.69247088)" /><g
id="g437"><path
style="fill:#c2748e;fill-opacity:1;stroke:#382129;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 9.5948498,19.024864 c -0.5114313,6.761462 10.9230342,6.853091 11.2916232,0.678656 -1.606805,0.37096 -5.515031,-0.327349 -6.439437,-0.904978 -0.915123,0.48658 -3.469525,0.649045 -4.8521862,0.226322 z"
id="path2839" /><path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.622592;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path2893"
d="m 17.272345,21.517428 -1.048133,-1.81542 2.096266,0 z"
transform="matrix(0.84787223,0.059289,-0.059289,0.84787223,4.7120143,1.8917128)" /><use
x="0"
y="0"
xlink:href="#path2893"
id="use2895"
transform="translate(-6.2774815,-0.46438696)" /><path
style="fill:none;fill-opacity:1;stroke:#382226;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 21.151185,19.65051 c -1.761637,0.406706 -5.529568,-0.118013 -6.704149,-0.851968 -1.099304,0.58451 -3.73403,0.580351 -5.1166907,0.157628"
id="path1289" /></g></svg>

After

Width:  |  Height:  |  Size: 6.0 KiB

View File

@@ -0,0 +1,172 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_poto.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview9438"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="3.3657916"
inkscape:cx="36.544152"
inkscape:cy="97.599625"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" /><title
id="title4279">Gutkato, poto</title><defs
id="defs2" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="12.96371"
cy="12.570978"
rx="1.6752723"
ry="2.1418331"
transform="rotate(8)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(8.953004,0.69247082)"
style="stroke-width:1.07136" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato, poto</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><g
id="g9586"
transform="rotate(20,18.60407,1.8632772)"><g
id="g9788"
transform="rotate(-80,12.599192,26.650953)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 9.8210863,28.949451 c 0,-3.977729 0.8181757,-5.656198 2.7781057,-5.655328 1.95993,8.7e-4 2.778105,1.678866 2.778105,5.655328"
id="path9576"
sodipodi:nodetypes="csc" /><g
id="g2360"
transform="matrix(-0.34202014,0.93969262,0.93969262,0.34202014,-2.0894044,23.535565)"><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.891479;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="circle1002"
cx="15.844251"
cy="1.3037357"
r="0.33072916"
transform="matrix(-0.34202014,0.93969262,0.93969262,0.34202014,0,0)" /><path
id="path978"
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:1.2795;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
d="m -3.9177901,14.205707 a 0.84504452,0.84504452 0 0 0 0.3692758,1.019098 0.84504452,0.84504452 0 0 0 0.4633369,0.409856 0.84504452,0.84504452 0 0 0 1.0834043,-0.50455 0.84504452,0.84504452 0 0 0 0.046607,-0.210854 0.84504452,0.84504452 0 0 0 0.099255,-0.189928 0.84504452,0.84504452 0 0 0 -0.5053305,-1.083686 0.84504452,0.84504452 0 0 0 -0.6194539,0.01654 0.84504452,0.84504452 0 0 0 -0.9371636,0.543593 z" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1004"
transform="translate(-0.2700487,-0.8725896)" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1008"
transform="translate(0.0245966,-1.6821205)" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1010"
transform="translate(0.7905146,-2.1719201)"
style="stroke-width:1.00012;stroke-dasharray:none" /></g></g></g><path
style="fill:#10446e;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
d="M 8.0160491,21.35022 4.597134,26.818318 c 0,0 -5.704888,-2.776511 -3.69178761,-5.996199 1.49607031,-2.392762 3.03276051,-1.073043 3.60909871,-0.713128 0,0 -0.5369639,-0.789054 0.2266872,-1.194852 0.8660142,-0.460189 1.392684,0.757242 2.4664453,1.714973 z"
id="path1029"
sodipodi:nodetypes="ccscssc" /><g
id="g3922"
transform="translate(-36.841471,0.45345094)"><ellipse
style="fill:#b2b2b2;fill-opacity:1;stroke:#000000;stroke-width:0.801335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;stroke-dasharray:none;stop-color:#000000"
id="ellipse3472"
cx="49.915237"
cy="27.128843"
rx="8.8597488"
ry="2.9532492" /><path
id="path632"
style="fill:#999999;stroke:#000000;stroke-width:0.801335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;stop-color:#000000"
d="m 58.774986,18.662169 a 8.8597488,2.9532492 0 0 1 -8.859749,2.953249 8.8597488,2.9532492 0 0 1 -8.859748,-2.953249 8.8597488,2.9532492 0 0 1 8.859748,-2.95325 8.8597488,2.9532492 0 0 1 8.859749,2.95325 z" /><ellipse
style="fill:#411c12;fill-opacity:1;stroke:none;stroke-width:0.801335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;stroke-dasharray:none;stop-color:#000000"
id="ellipse3906"
cx="49.915237"
cy="20.24967"
rx="8.8597488"
ry="2.9532492" /><path
id="rect3696"
style="fill:#b2b2b2;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;stop-color:#000000"
d="m 41.055374,18.677929 v 8.456332 h 17.719849 v -8.456332 h -0.0016 a 8.8597488,2.9532492 0 0 1 -8.858374,2.937289 8.8597488,2.9532492 0 0 1 -8.858373,-2.937289 z" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
d="m 58.774972,18.667544 v 8.466675"
id="path3638" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
d="m 41.055612,18.677834 v 8.466675"
id="path3640" /><ellipse
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.801335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;stroke-dasharray:none;stop-color:#000000"
id="ellipse3908"
cx="49.915237"
cy="18.662169"
rx="8.8597488"
ry="2.9532492" /></g><g
id="g1303"
transform="rotate(-60,14.615752,17.337884)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 9.8210863,30.007784 c 0,-5.108613 0.8181757,-6.714531 2.7781057,-6.713661 1.95993,8.7e-4 2.778105,1.584391 2.778105,6.713661"
id="path915" /><g
id="g1296"
transform="translate(-0.0585258)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 11.599399,23.694455 v 1.058284"
id="path1283" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 12.657717,23.661518 v 1.058284"
id="use1287" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 13.716036,23.694455 v 1.058284"
id="use1291" /></g></g><path
style="fill:#10446e;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
d="m 25.476966,22.231237 -3.22474,5.58296 c 0,0 -6.218437,-2.432142 -4.152141,-6.009497 1.411101,-2.443025 2.992384,-1.177946 3.58073,-0.838414 0,0 -0.563991,-0.769701 0.18476,-1.201803 0.849116,-0.490023 1.417777,0.708071 2.523938,1.627594 z"
id="path482"
sodipodi:nodetypes="ccscssc" /></svg>

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -0,0 +1,192 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_profito.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><g
id="g328"
transform="translate(3.1749805,3.1749431)"><g
id="g4695"
transform="translate(1.4862571,1.0490002)"><rect
style="fill:#f2f2f2;fill-opacity:1;stroke:none;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="rect1077"
width="22.754169"
height="14.816669"
x="-1.8875235"
y="-2.3625138" /><g
id="g4598"
transform="translate(0,-1.0583333)"><g
id="path4600"><path
style="color:#000000;fill:#00802b;fill-rule:evenodd;stroke-width:0.260886pt;-inkscape-stroke:none"
d="M 17.600498,0.24705554 16.927167,2.7651273 15.082426,0.92038607 Z"
id="path4604" /><path
style="color:#000000;fill:#00802b;fill-rule:evenodd;-inkscape-stroke:none"
d="M 17.845703,0.00195313 17.554687,0.078125 14.746094,0.83007813 17.017578,3.1015625 Z M 17.353516,0.49414063 16.837891,2.4296875 15.417969,1.0097656 Z"
id="path4606" /></g></g><path
style="color:#000000;fill:#00802b;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:markers fill stroke"
d="M -0.0356373,6.2895952 1.9120474,4.3419105 4.300532,6.7288449 c 0.1549322,0.1545834 0.4057571,0.1545834 0.5606893,0 L 8.4294789,3.1605873 11.02932,5.7599118 c 0.155109,0.1556177 0.407131,0.1556177 0.56224,0 l 5.225004,-5.22655426 c 0.154605,-0.15492306 0.154605,-0.40576616 0,-0.56068926 -0.07458,-0.074875 -0.175953,-0.11691066 -0.281637,-0.11678866 -0.104788,5.627e-4 -0.205101,0.042546 -0.279053,0.11678866 L 11.31044,4.9160357 8.7111155,2.3187782 c -0.1549322,-0.1545834 -0.4057571,-0.1545834 -0.5606893,0 L 4.5821686,5.8870358 2.1931672,3.5001014 c -0.1551092,-0.1556175 -0.4071304,-0.1556175 -0.5622396,0 l -1.6665649,1.6675985"
id="path4667" /><rect
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="rect1805"
width="22.754169"
height="14.816669"
x="-1.8875235"
y="-2.3625138" /><path
style="fill:#f2f2f2;fill-opacity:1;stroke:#999999;stroke-width:0.529166;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="M -0.03544048,-0.24584958 V 10.337491"
id="path4545" /><path
style="fill:#f2f2f2;fill-opacity:1;stroke:#999999;stroke-width:0.529164;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="M 18.485336,10.337492 H -0.03544146"
id="path4547" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 8.7559403,11.475071 C 8.5089818,9.3407706 9.1753556,7.0706004 9.3683336,6.0853457 c 1.2483294,0.6539235 2.3380234,1.3448111 3.8243454,2.5475892 2.567362,-0.6860697 5.695035,-0.3214657 7.760633,0.4523937 1.624004,-0.8148254 3.206123,-1.3000064 5.378895,-1.4442574 0.238536,1.3256294 -0.021,4.1411108 -0.787381,5.5610268 1.10062,3.864737 1.11369,9.099583 -0.03204,10.242224 C 22.239845,26.708449 8.2617169,26.486532 7.0626187,22.023487 6.3210123,19.263229 7.2277868,13.520838 8.7559403,11.475071 Z"
id="path236" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.661458;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 11.470247,17.493971 c -1.056535,2.24917 1.737905,3.23507 3.409447,1.251073 2.376404,2.67041 4.820334,0.883778 4.136876,-0.814341"
id="path7824" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="14.092894"
cy="12.053194"
rx="1.2429981"
ry="1.5850369"
transform="matrix(0.99031991,0.13880374,-0.13954341,0.99021595,0,0)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(6.6431882,0.51242744)"
style="stroke-width:1.44583" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.661458;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 21.031082,16.741308 24.64927,16.197897"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.661458;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 21.038988,18.33714 3.475943,0.62984"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.661458;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 10.17356,15.93871 8.47515,15.165816"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.661458;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 9.7869123,17.332207 8.1617585,17.226171"
id="path7895" /><g
id="g9586"
transform="matrix(0.69725814,0.25309443,-0.25378121,0.69537122,5.3525253,-1.2811027)"
style="stroke-width:1.34952"><g
id="g9788"
transform="rotate(-80,12.599192,26.650953)"
style="stroke-width:0.892654;stroke-dasharray:none"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.892654;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 9.8210863,28.949451 c 0,-3.977729 0.8181757,-5.656198 2.7781057,-5.655328 1.95993,8.7e-4 2.778105,1.678866 2.778105,5.655328"
id="path9576"
sodipodi:nodetypes="csc" /><g
id="g2360"
transform="matrix(-0.34202014,0.93969262,0.93969262,0.34202014,-2.0894044,23.535565)"
style="stroke-width:0.892654;stroke-dasharray:none"><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.892654;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers fill stroke;stop-color:#000000"
id="circle1002"
cx="15.844251"
cy="1.3037357"
r="0.33072916"
transform="matrix(-0.34202014,0.93969262,0.93969262,0.34202014,0,0)" /><path
id="path978"
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.892654;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers fill stroke;stop-color:#000000"
d="m -3.9177901,14.205707 a 0.84504452,0.84504452 0 0 0 0.3692758,1.019098 0.84504452,0.84504452 0 0 0 0.4633369,0.409856 0.84504452,0.84504452 0 0 0 1.0834043,-0.50455 0.84504452,0.84504452 0 0 0 0.046607,-0.210854 0.84504452,0.84504452 0 0 0 0.099255,-0.189928 0.84504452,0.84504452 0 0 0 -0.5053305,-1.083686 0.84504452,0.84504452 0 0 0 -0.6194539,0.01654 0.84504452,0.84504452 0 0 0 -0.9371636,0.543593 z" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1004"
transform="translate(-0.2700487,-0.8725896)"
style="stroke-width:0.892654;stroke-dasharray:none" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1008"
transform="translate(0.0245966,-1.6821205)"
style="stroke-width:0.892654;stroke-dasharray:none" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1010"
transform="translate(0.7905146,-2.1719201)"
style="stroke-width:0.892654;stroke-dasharray:none" /></g></g></g><g
id="g4860"
transform="translate(0.26471261,0.52916664)"><path
style="fill:#b84b4b;fill-opacity:1;stroke:#361616;stroke-width:0.661458;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 15.335756,22.416854 1.031983,3.85141 -1.606828,1.62615 -1.606828,-1.62615 1.031983,-3.85141"
id="path4856"
sodipodi:nodetypes="ccccc" /><ellipse
style="fill:#b84b4b;fill-opacity:1;stroke:#361616;stroke-width:0.661458;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path4798"
cx="14.760911"
cy="21.635794"
rx="1.3229165"
ry="0.82419419" /></g><g
id="g5773"
transform="rotate(4,10.683076,15.010351)"><g
id="g5702"
transform="translate(-0.07752655,-16.362683)"><rect
style="opacity:0.4;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.661458;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="rect4914"
width="3.5718749"
height="2.6458333"
x="10.565801"
y="29.523396"
ry="0.47351354"
rx="0" /><path
style="fill:none;fill-opacity:1;stroke:#361616;stroke-width:0.661458;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 10.565801,30.713912 v 1.455209 h 3.571875 v -1.455209"
id="path5698" /></g><use
x="0"
y="0"
xlink:href="#g5702"
id="use5710"
transform="translate(6.4822915)" /><path
style="opacity:1;fill:none;fill-opacity:1;stroke:#361616;stroke-width:0.661458;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 14.118607,15.264419 c 0.958249,-0.304806 1.813182,-0.287865 2.774351,-0.004"
id="path5766"
sodipodi:nodetypes="cc" /></g></g></g><sodipodi:namedview
id="namedview9438"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="1.84375"
inkscape:cx="74.847458"
inkscape:cy="85.423729"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="g4695"
showguides="false" /><title
id="title4279">Gutkato, profito</title><defs
id="defs2" /><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato, profito</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata></svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -0,0 +1,54 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><title
id="title4279">Gutkato fiera</title><defs
id="defs2" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 9.9700104,18.375122 c -1.5810083,2.960738 2.1101606,4.488312 4.5001236,1.928804 3.00942,3.771338 6.42494,1.532653 5.625208,-0.807168"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.890691,18.033756 4.90797,-0.478133"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.788468,20.187893 4.633552,1.095139"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.3348592,16.184835 6.1037172,15.02202"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7159358,18.03809 5.536222,17.780367"
id="path7895" /><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato fiera</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><path
style="fill:none;fill-opacity:0.6;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 9.6297444,13.168841 c -0.3643963,1.874657 3.0103576,2.539373 3.3763886,0.656304"
id="path298" /><use
x="0"
y="0"
xlink:href="#path298"
id="use1804"
transform="translate(8.9044931,1.1600859)" /></svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@@ -0,0 +1,132 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_ronronas.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview15"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
showguides="false"
inkscape:zoom="1.3948786"
inkscape:cx="37.27923"
inkscape:cy="110.76233"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" /><title
id="title4279">Gutkato ronronas</title><defs
id="defs2" /><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato ronronas</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><text
xml:space="preserve"
style="font-style:oblique;font-size:7.05556px;line-height:0%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Oblique';text-align:center;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#4fff88;fill-opacity:1;stroke:#11361d;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
x="28.121662"
y="21.194006"
id="text523"><tspan
sodipodi:role="line"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05556px;font-family:'Komika Axis';-inkscape-font-specification:'Komika Axis';fill:#4fffa7;fill-opacity:1;stroke:#113624;stroke-width:0.79375;stroke-dasharray:none;stroke-opacity:1"
x="28.121662"
y="21.194006"
id="tspan2721">R</tspan></text><text
xml:space="preserve"
style="font-style:oblique;font-size:8.46667px;line-height:0%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Oblique';text-align:center;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#4fff88;fill-opacity:1;stroke:#11361d;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
x="30.302967"
y="13.983141"
id="text3453"><tspan
sodipodi:role="line"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'Komika Axis';-inkscape-font-specification:'Komika Axis';fill:#4fffa7;fill-opacity:1;stroke:#113624;stroke-width:0.79375;stroke-dasharray:none;stroke-opacity:1"
x="30.302967"
y="13.983141"
id="tspan3451">R</tspan></text><g
id="g7758"
transform="translate(-3.1750001)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /><path
style="fill:none;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 9.3054817,14.290686 c 0.8633843,1.066192 2.8395103,1.311661 3.9469853,0.414844"
id="path448"
sodipodi:nodetypes="cc" /><use
x="0"
y="0"
xlink:href="#path448"
id="use1004"
transform="translate(8.939555,0.84861668)" /></g><text
xml:space="preserve"
style="font-style:oblique;font-size:9.87778px;line-height:0%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Oblique';text-align:center;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#4fff88;fill-opacity:1;stroke:#113624;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
x="24.397238"
y="9.015687"
id="text5011"><tspan
sodipodi:role="line"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'Komika Axis';-inkscape-font-specification:'Komika Axis';fill:#4fffa7;fill-opacity:1;stroke:#113624;stroke-width:0.79375;stroke-dasharray:none;stroke-opacity:1"
x="24.397238"
y="9.015687"
id="tspan5009">R</tspan></text><g
id="g1303"
transform="matrix(0.91354546,-0.40673665,-0.40673665,-0.91354546,5.6856048,56.258016)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 9.8210863,26.832783 c 0,-1.981793 0.8181757,-3.53953 2.7781057,-3.53866 1.95993,8.7e-4 2.778105,1.542933 2.778105,3.53866"
id="path915"
sodipodi:nodetypes="csc" /><g
id="g1296"
transform="translate(-0.0585258)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 11.599399,23.694455 v 1.058284"
id="path1283" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 12.657717,23.661518 v 1.058284"
id="use1287" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 13.716036,23.694455 v 1.058284"
id="use1291" /></g></g><use
x="0"
y="0"
xlink:href="#g1303"
id="use9097"
transform="matrix(-0.99026807,-0.1391731,-0.1391731,0.99026807,26.542566,2.1435518)" /></svg>

After

Width:  |  Height:  |  Size: 9.4 KiB

View File

@@ -0,0 +1,110 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_ĉielarka.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview15"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="2.6074563"
inkscape:cx="40.46089"
inkscape:cy="72.29268"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" /><title
id="title4279">Gutkato ĉielarka</title><defs
id="defs2"><linearGradient
inkscape:collect="always"
id="linearGradient10511"><stop
style="stop-color:#ff2626;stop-opacity:1;"
offset="0"
id="stop10507" /><stop
style="stop-color:#ff6e26;stop-opacity:1;"
offset="0.19"
id="stop10615" /><stop
style="stop-color:#ffed26;stop-opacity:1;"
offset="0.38"
id="stop10611" /><stop
style="stop-color:#26ff6e;stop-opacity:1;"
offset="0.57892859"
id="stop10617" /><stop
style="stop-color:#2693ff;stop-opacity:1;"
offset="0.77999997"
id="stop10613" /><stop
style="stop-color:#6e26ff;stop-opacity:1;"
offset="1"
id="stop10509" /></linearGradient><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10511"
id="linearGradient10513"
x1="6.3710175"
y1="6.2275181"
x2="26.910519"
y2="26.767019"
gradientUnits="userSpaceOnUse" /></defs><g
id="layer1"><path
style="fill:url(#linearGradient10513);fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="12.96371"
cy="12.570978"
rx="1.6752723"
ry="2.1418331"
transform="rotate(8)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(8.953004,0.69247082)"
style="stroke-width:1.07136" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /></g><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato ĉielarka</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata></svg>

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

@@ -0,0 +1,170 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_roboto.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview15"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="5.0843915"
inkscape:cx="41.794579"
inkscape:cy="67.363027"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="layer1"
showguides="false" /><title
id="title4279">Gutkato roboto</title><defs
id="defs2" /><g
id="layer1"><path
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><ellipse
style="fill:#001a4d;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="12.96371"
cy="12.570978"
rx="1.6752723"
ry="2.1418331"
transform="rotate(8)" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /><path
style="fill:#b2a68e;fill-opacity:1;stroke:none;stroke-width:2.99999;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
d="m 111.46294,23.180272 c -8.34018,0.631135 -16.517915,2.957101 -24.019332,6.641056 -0.657887,0.278968 -1.335665,0.734049 -2.042461,0.315607 -6.510842,-2.193431 -13.317557,-3.554825 -20.189011,-3.832387 -1.142929,0.182483 -1.579963,1.474781 -2.337921,2.223868 -5.547348,7.174677 -7.905217,16.324403 -8.333294,25.261723 7.87e-4,2.549024 -0.109393,5.147099 0.415864,7.652873 0.451208,1.140293 1.903606,0.805246 2.871933,1.009373 6.255602,0.698665 12.567,3.313305 16.711972,8.184181 1.5009,1.696795 2.339202,3.827161 2.867102,6.001881 3.090918,11.149491 6.00658,22.346872 9.024269,33.516333 0.475888,1.21476 1.863468,0.5237 2.783524,0.37761 5.968817,-1.33875 11.974715,-3.19622 17.075215,-6.66783 1.99382,-1.33885 3.65255,-3.24081 4.31129,-5.587322 1.75758,-5.534391 2.02678,-11.411411 2.06525,-17.178612 -0.1216,-10.10763 -1.42364,-20.213541 -4.0075,-29.990104 -0.46839,-1.252038 0.61854,-2.335658 0.93892,-3.492132 2.37059,-6.273716 3.17294,-13.038613 3.28697,-19.709775 -0.0926,-1.415072 0.17715,-2.950233 -0.39359,-4.279514 -0.23202,-0.314774 -0.64211,-0.482176 -1.0292,-0.446829 z"
id="path1138"
transform="scale(0.26458333)" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
d="m 17.093322,6.8021728 c -2.99385,3.0633436 -3.053878,8.2424972 -2.631224,9.8198622 2.998413,0 5.360989,1.676154 5.800896,3.349149 0.299641,1.139552 0.913106,3.407756 2.521,9.408499"
id="path906"
sodipodi:nodetypes="ccsc" /><ellipse
style="fill:#b20000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="use7712"
cx="21.925957"
cy="12.010693"
rx="1.6752723"
ry="2.1418331"
transform="rotate(8)" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path1165" /><circle
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.793752;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
id="path1236"
cx="17.697741"
cy="7.9221539"
r="0.39687496" /><circle
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.793752;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
id="circle1498"
cx="17.697741"
cy="7.9221539"
r="0.39687496" /><use
x="0"
y="0"
xlink:href="#circle1498"
id="use1510"
transform="translate(-0.67636512,0.98129872)" /><use
x="0"
y="0"
xlink:href="#use1510"
id="use1512"
transform="translate(-0.56264954,1.0514698)" /><use
x="0"
y="0"
xlink:href="#use1512"
id="use1514"
transform="translate(-0.43203517,1.0404306)" /><use
x="0"
y="0"
xlink:href="#use1514"
id="use1516"
transform="translate(-0.32825345,1.1138479)" /><use
x="0"
y="0"
xlink:href="#use1516"
id="use1518"
transform="translate(-0.18752529,1.1029486)" /><use
x="0"
y="0"
xlink:href="#use1518"
id="use1520"
transform="translate(-0.05124651,1.1061496)" /><use
x="0"
y="0"
xlink:href="#use1520"
id="use1522"
transform="translate(0.05771907,1.1537005)" /><use
x="0"
y="0"
xlink:href="#use1522"
id="use1524"
transform="translate(8.2235096,12.598917)" /><use
x="0"
y="0"
xlink:href="#use1524"
id="use1526"
transform="translate(-0.28310908,-1.1164265)" /><use
x="0"
y="0"
xlink:href="#use1526"
id="use1528"
transform="translate(-0.33930238,-1.1818476)" /><use
x="0"
y="0"
xlink:href="#use1528"
id="use1530"
transform="translate(-0.34556673,-1.1444535)" /><use
x="0"
y="0"
xlink:href="#use1530"
id="use1532"
transform="translate(-0.28676315,-1.0767652)" /><use
x="0"
y="0"
xlink:href="#use1532"
id="use1534"
transform="translate(-0.32341214,-1.1874371)" /></g><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato roboto</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata></svg>

After

Width:  |  Height:  |  Size: 10 KiB

View File

@@ -0,0 +1,148 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_rozo_rozkolora.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview15"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
showguides="true"
inkscape:zoom="1.8437501"
inkscape:cx="100.33898"
inkscape:cy="114.71186"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="g1192" /><title
id="title4279">Gutkato, rozo rozkolora</title><defs
id="defs2" /><g
id="layer1"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="12.96371"
cy="12.570978"
rx="1.6752723"
ry="2.1418331"
transform="rotate(8)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(8.953004,0.69247082)"
style="stroke-width:1.07136" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:#e567bc;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /><g
id="g9015"
transform="rotate(2,591.64066,161.57623)"><path
style="color:#000000;fill:#2ba23c;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
d="m 4.3203125,40.621094 c -2.1783713,0.167135 -4.29045749,0.506893 -6.2109375,1.021484 a 0.52916664,0.52916664 0 0 0 -0.3730469,0.648438 0.52916664,0.52916664 0 0 0 0.6464844,0.375 C 5.7570394,40.690098 16.437909,41.494916 21.859375,44.625 a 0.52916664,0.52916664 0 0 0 0.722656,-0.193359 0.52916664,0.52916664 0 0 0 -0.193359,-0.722657 C 17.993023,41.171156 10.855426,40.119687 4.3203125,40.621094 Z"
id="path1947" /><path
id="path8969"
style="fill:#e567bc;fill-opacity:1;stroke:#000000;stroke-width:0.527506;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;stroke-dasharray:none;paint-order:markers fill stroke;stop-color:#000000"
d="m 19.116865,34.757814 c -0.09809,0.0096 -0.199485,0.04066 -0.306546,0.102468 -0.37855,0.218556 -0.387568,0.565931 -0.446497,0.941548 -0.164506,0.160218 -0.381723,0.51458 -0.386036,0.844773 -0.345365,0.353263 -0.801388,0.501898 -0.801388,1.044175 0,0.457611 0.324687,0.634886 0.633654,0.891316 0.007,0.258022 0.0566,0.493281 0.138295,0.607691 0.09993,0.139954 0.244929,0.220571 0.396268,0.276937 0.08037,0.418134 0.04967,0.813894 0.465913,1.054209 0.353223,0.203933 0.642655,0.0732 0.967988,-0.05635 0.224624,0.07399 0.707411,0.09152 1.008203,-0.112247 0.472168,0.124829 0.826482,0.437305 1.291892,0.1686 0.54395,-0.314049 0.324673,-0.893804 0.587645,-1.44166 1.31e-4,-9e-5 1.79e-4,-2.84e-4 3.1e-4,-3.74e-4 0.170647,-0.118375 0.303375,-0.247569 0.352083,-0.354258 0.01911,-0.04186 0.03284,-0.08453 0.04231,-0.127425 0.314289,-0.264822 0.651948,-0.439833 0.651948,-0.90647 0,-0.406559 -0.256442,-0.592119 -0.530313,-0.808191 0.02832,-0.114568 0.04419,-0.226332 0.03457,-0.326204 -0.02244,-0.233102 -0.303553,-0.792698 -0.71505,-0.907972 -0.04575,-0.315504 -0.09696,-0.599673 -0.423372,-0.788128 -0.416017,-0.240187 -0.743269,-0.0158 -1.145274,0.123677 -0.203443,-0.10119 -0.400805,-0.160374 -0.526546,-0.148308 -0.15061,0.01445 -0.278697,0.082 -0.392132,0.167883 -0.324035,-0.102819 -0.596404,-0.275332 -0.897928,-0.245686 z"
transform="matrix(1.4960166,0.1438939,-0.14402061,1.4996261,-2.8550356,-15.245416)" /><g
id="g1192"
transform="matrix(1.0495246,0,0,1.0496537,4.5414616,2.5557791)"
style="stroke-width:0.952754"><path
sodipodi:type="star"
style="fill:#e567bc;fill-opacity:1;stroke:#000000;stroke-width:0.351671;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;paint-order:markers fill stroke;stop-color:#000000"
id="path1180"
inkscape:flatsided="false"
sodipodi:sides="6"
sodipodi:cx="20.444601"
sodipodi:cy="37.690636"
sodipodi:r1="3.2682688"
sodipodi:r2="2.614615"
sodipodi:arg1="1.0471976"
sodipodi:arg2="1.5707963"
inkscape:rounded="0.4"
inkscape:randomized="0"
d="m 22.078735,40.52104 c -0.570995,0.329664 -0.974806,-0.215789 -1.634134,-0.215789 -0.659328,0 -1.063139,0.545453 -1.634134,0.215788 -0.570995,-0.329664 -0.300525,-0.952101 -0.630189,-1.523096 -0.329664,-0.570995 -1.003946,-0.647979 -1.003946,-1.307307 0,-0.659329 0.674282,-0.736313 1.003946,-1.307308 0.329664,-0.570995 0.05919,-1.193432 0.630189,-1.523096 0.570995,-0.329664 0.974806,0.215789 1.634134,0.215789 0.659328,0 1.06314,-0.545453 1.634135,-0.215789 0.570994,0.329664 0.300524,0.952101 0.630188,1.523096 0.329664,0.570995 1.003946,0.64798 1.003946,1.307308 0,0.659328 -0.674282,0.736312 -1.003946,1.307307 -0.329664,0.570995 -0.05919,1.193432 -0.630189,1.523097 z"
transform="matrix(1.4254231,0.13708702,-0.13722462,1.4286865,-7.0474739,-16.959112)" /><path
style="fill:#e567bc;fill-opacity:1;stroke:#000000;stroke-width:0.504166;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;paint-order:markers fill stroke;stop-color:#000000"
d="m 17.514249,42.166309 c 0,0 0.06161,0.929159 -0.298364,1.25479 -0.466553,0.422052 -1.392621,0.280949 -1.690931,0.108563 -0.409376,-0.236564 -0.740468,-0.901486 -0.997641,-1.18467 -0.248612,-0.273768 -1.050309,-0.301769 -1.368638,-0.853647 -0.224359,-0.388955 -0.139315,-1.612019 0.2711,-2.10706 0.262801,-0.316994 1.07797,-0.549705 1.07797,-0.549705"
id="path1095"
sodipodi:nodetypes="csssssc" /><path
style="fill:#e567bc;fill-opacity:1;stroke:#000000;stroke-width:0.504166;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;paint-order:markers fill stroke;stop-color:#000000"
d="m 18.856185,37.408636 c 0,0 0.773143,-0.517978 1.234872,-0.368772 0.598453,0.193388 0.9394,1.066669 0.939399,1.411441 0,0.473135 -0.409764,1.092591 -0.5262,1.457105 -0.112569,0.352384 0.26405,1.061306 -0.05429,1.613176 -0.224359,0.388955 -1.325122,0.926771 -1.958657,0.818538 -0.405676,-0.0693 -1.01461,-0.659547 -1.01461,-0.659547"
id="path1093"
sodipodi:nodetypes="csssssc" /><path
style="fill:#e567bc;fill-opacity:1;stroke:#000000;stroke-width:0.504166;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;paint-order:markers fill stroke;stop-color:#000000"
d="m 14.498999,39.045524 c 0,0 -0.834746,-0.411181 -0.936512,-0.886018 -0.131899,-0.615441 0.453224,-1.347619 0.751534,-1.520005 0.409374,-0.236567 1.150232,-0.191105 1.523841,-0.272434 0.361178,-0.07862 0.786257,-0.759535 1.422923,-0.759535 0.448717,0 1.464438,0.685248 1.687557,1.288522 0.142871,0.386299 -0.06336,1.209252 -0.06336,1.209252"
id="path1070"
sodipodi:nodetypes="csssssc" /><path
style="fill:#e567bc;fill-opacity:1;stroke:#000000;stroke-width:0.504166;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;paint-order:markers fill stroke;stop-color:#000000"
d="m 18.621728,39.945347 c 0,0 0.535232,0.542079 0.535232,1.137733 0,0.520455 -0.29434,0.741778 -0.555082,0.929722 -0.26902,0.193913 -0.440713,0.739981 -1.085773,0.739981 -0.252355,0 -0.685181,-0.296256 -1.102138,-0.391448 -0.78736,-0.179763 -0.905964,-1.077176 -0.905964,-1.077176"
id="path1068"
sodipodi:nodetypes="cssssc" /><path
style="fill:#e567bc;fill-opacity:1;stroke:#000000;stroke-width:0.504166;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;paint-order:markers fill stroke;stop-color:#000000"
d="m 16.580469,37.627457 c 0,0 0.115434,-0.529389 0.714075,-0.650109 0.509737,-0.102803 0.843926,-0.03809 1.294242,0.222125 0.287103,0.165911 0.227114,0.590107 0.299149,0.735396 0.112181,0.226255 0.554031,0.37359 0.638502,0.793214 0.159504,0.792396 -0.721095,1.2147 -0.721095,1.2147"
id="path1066"
sodipodi:nodetypes="cssssc" /><path
style="fill:#e567bc;fill-opacity:1;stroke:#000000;stroke-width:0.504166;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;paint-order:markers fill stroke;stop-color:#000000"
d="m 15.807637,38.102616 c 0,0 -0.495936,-0.450462 -1.060118,-0.216556 -0.4804,0.199169 -0.878216,0.704244 -0.878217,1.224698 0,0.162199 0.173019,0.374085 0.19417,0.534896 0.02121,0.161272 -0.290307,0.295471 -0.126649,0.690945 0.309045,0.74679 1.082926,0.474204 1.082926,0.474204"
id="path1064"
sodipodi:nodetypes="cssssc" /><path
style="fill:#e567bc;fill-opacity:1;stroke:#000000;stroke-width:0.504166;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;paint-order:markers fill stroke;stop-color:#000000"
d="m 15.60414,39.287143 c 0.194174,0.72533 0.877046,1.419973 1.702333,1.64131 0,0 -0.607408,0.63325 -1.395879,0.454608 -0.422095,-0.09564 -0.749897,-0.34086 -0.906813,-0.612894 -0.489665,-0.848896 0.600359,-1.483024 0.600359,-1.483024 z"
id="path297"
sodipodi:nodetypes="ccssc" /><path
style="fill:#e567bc;fill-opacity:1;stroke:#000000;stroke-width:0.504166;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;paint-order:markers fill stroke;stop-color:#000000"
d="m 17.689639,38.885076 c -0.72467,-0.194351 -1.56165,-0.182569 -2.165801,0.422129 0,0 -0.340694,-0.787365 0.208113,-1.381502 0.293798,-0.318059 0.765205,-0.386296 1.151518,-0.282691 0.636464,0.170696 0.613845,0.523641 0.80617,1.242064 z"
id="path1006"
sodipodi:nodetypes="ccssc" /><path
style="fill:#e567bc;fill-opacity:1;stroke:#000000;stroke-width:0.504166;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;paint-order:markers fill stroke;stop-color:#000000"
d="m 17.065173,40.863073 c 0.480709,-0.576518 0.986183,-1.21073 0.691828,-2.01355 0,0 1.06319,-0.111645 1.371227,0.636473 0.164898,0.400494 -0.121464,0.833895 -0.377722,1.14123 -0.422198,0.506345 -0.953192,0.363051 -1.685333,0.235847 z"
id="path1008"
sodipodi:nodetypes="ccssc" /></g></g><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /></g><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato, rozo rozkolora</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><g
id="g8935"
transform="translate(0.98908471,1.545638)" /></svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,148 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_rozo_ruĝa.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview15"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
showguides="true"
inkscape:zoom="3.6875001"
inkscape:cx="98.169489"
inkscape:cy="71.728812"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" /><title
id="title4279">Gutkato, rozo ruĝa</title><defs
id="defs2" /><g
id="layer1"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="12.96371"
cy="12.570978"
rx="1.6752723"
ry="2.1418331"
transform="rotate(8)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(8.953004,0.69247082)"
style="stroke-width:1.07136" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /><g
id="g9015"
transform="rotate(2,591.64066,161.57623)"><path
style="color:#000000;fill:#2ba23c;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
d="m 4.3203125,40.621094 c -2.1783713,0.167135 -4.29045749,0.506893 -6.2109375,1.021484 a 0.52916664,0.52916664 0 0 0 -0.3730469,0.648438 0.52916664,0.52916664 0 0 0 0.6464844,0.375 C 5.7570394,40.690098 16.437909,41.494916 21.859375,44.625 a 0.52916664,0.52916664 0 0 0 0.722656,-0.193359 0.52916664,0.52916664 0 0 0 -0.193359,-0.722657 C 17.993023,41.171156 10.855426,40.119687 4.3203125,40.621094 Z"
id="path1947" /><path
id="path8969"
style="fill:#e50013;fill-opacity:1;stroke:#000000;stroke-width:0.527506;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;stroke-dasharray:none;paint-order:markers fill stroke;stop-color:#000000"
d="m 19.116865,34.757814 c -0.09809,0.0096 -0.199485,0.04066 -0.306546,0.102468 -0.37855,0.218556 -0.387568,0.565931 -0.446497,0.941548 -0.164506,0.160218 -0.381723,0.51458 -0.386036,0.844773 -0.345365,0.353263 -0.801388,0.501898 -0.801388,1.044175 0,0.457611 0.324687,0.634886 0.633654,0.891316 0.007,0.258022 0.0566,0.493281 0.138295,0.607691 0.09993,0.139954 0.244929,0.220571 0.396268,0.276937 0.08037,0.418134 0.04967,0.813894 0.465913,1.054209 0.353223,0.203933 0.642655,0.0732 0.967988,-0.05635 0.224624,0.07399 0.707411,0.09152 1.008203,-0.112247 0.472168,0.124829 0.826482,0.437305 1.291892,0.1686 0.54395,-0.314049 0.324673,-0.893804 0.587645,-1.44166 1.31e-4,-9e-5 1.79e-4,-2.84e-4 3.1e-4,-3.74e-4 0.170647,-0.118375 0.303375,-0.247569 0.352083,-0.354258 0.01911,-0.04186 0.03284,-0.08453 0.04231,-0.127425 0.314289,-0.264822 0.651948,-0.439833 0.651948,-0.90647 0,-0.406559 -0.256442,-0.592119 -0.530313,-0.808191 0.02832,-0.114568 0.04419,-0.226332 0.03457,-0.326204 -0.02244,-0.233102 -0.303553,-0.792698 -0.71505,-0.907972 -0.04575,-0.315504 -0.09696,-0.599673 -0.423372,-0.788128 -0.416017,-0.240187 -0.743269,-0.0158 -1.145274,0.123677 -0.203443,-0.10119 -0.400805,-0.160374 -0.526546,-0.148308 -0.15061,0.01445 -0.278697,0.082 -0.392132,0.167883 -0.324035,-0.102819 -0.596404,-0.275332 -0.897928,-0.245686 z"
transform="matrix(1.4960166,0.1438939,-0.14402061,1.4996261,-2.8550356,-15.245416)" /><g
id="g1192"
transform="matrix(1.0495246,0,0,1.0496537,4.5414616,2.5557791)"
style="stroke-width:0.952754"><path
sodipodi:type="star"
style="fill:#e50013;fill-opacity:1;stroke:#000000;stroke-width:0.351671;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;paint-order:markers fill stroke;stop-color:#000000"
id="path1180"
inkscape:flatsided="false"
sodipodi:sides="6"
sodipodi:cx="20.444601"
sodipodi:cy="37.690636"
sodipodi:r1="3.2682688"
sodipodi:r2="2.614615"
sodipodi:arg1="1.0471976"
sodipodi:arg2="1.5707963"
inkscape:rounded="0.4"
inkscape:randomized="0"
d="m 22.078735,40.52104 c -0.570995,0.329664 -0.974806,-0.215789 -1.634134,-0.215789 -0.659328,0 -1.063139,0.545453 -1.634134,0.215788 -0.570995,-0.329664 -0.300525,-0.952101 -0.630189,-1.523096 -0.329664,-0.570995 -1.003946,-0.647979 -1.003946,-1.307307 0,-0.659329 0.674282,-0.736313 1.003946,-1.307308 0.329664,-0.570995 0.05919,-1.193432 0.630189,-1.523096 0.570995,-0.329664 0.974806,0.215789 1.634134,0.215789 0.659328,0 1.06314,-0.545453 1.634135,-0.215789 0.570994,0.329664 0.300524,0.952101 0.630188,1.523096 0.329664,0.570995 1.003946,0.64798 1.003946,1.307308 0,0.659328 -0.674282,0.736312 -1.003946,1.307307 -0.329664,0.570995 -0.05919,1.193432 -0.630189,1.523097 z"
transform="matrix(1.4254231,0.13708702,-0.13722462,1.4286865,-7.0474739,-16.959112)" /><path
style="fill:#e50013;fill-opacity:1;stroke:#000000;stroke-width:0.504166;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;paint-order:markers fill stroke;stop-color:#000000"
d="m 17.514249,42.166309 c 0,0 0.06161,0.929159 -0.298364,1.25479 -0.466553,0.422052 -1.392621,0.280949 -1.690931,0.108563 -0.409376,-0.236564 -0.740468,-0.901486 -0.997641,-1.18467 -0.248612,-0.273768 -1.050309,-0.301769 -1.368638,-0.853647 -0.224359,-0.388955 -0.139315,-1.612019 0.2711,-2.10706 0.262801,-0.316994 1.07797,-0.549705 1.07797,-0.549705"
id="path1095"
sodipodi:nodetypes="csssssc" /><path
style="fill:#e50013;fill-opacity:1;stroke:#000000;stroke-width:0.504166;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;paint-order:markers fill stroke;stop-color:#000000"
d="m 18.856185,37.408636 c 0,0 0.773143,-0.517978 1.234872,-0.368772 0.598453,0.193388 0.9394,1.066669 0.939399,1.411441 0,0.473135 -0.409764,1.092591 -0.5262,1.457105 -0.112569,0.352384 0.26405,1.061306 -0.05429,1.613176 -0.224359,0.388955 -1.325122,0.926771 -1.958657,0.818538 -0.405676,-0.0693 -1.01461,-0.659547 -1.01461,-0.659547"
id="path1093"
sodipodi:nodetypes="csssssc" /><path
style="fill:#e50013;fill-opacity:1;stroke:#000000;stroke-width:0.504166;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;paint-order:markers fill stroke;stop-color:#000000"
d="m 14.498999,39.045524 c 0,0 -0.834746,-0.411181 -0.936512,-0.886018 -0.131899,-0.615441 0.453224,-1.347619 0.751534,-1.520005 0.409374,-0.236567 1.150232,-0.191105 1.523841,-0.272434 0.361178,-0.07862 0.786257,-0.759535 1.422923,-0.759535 0.448717,0 1.464438,0.685248 1.687557,1.288522 0.142871,0.386299 -0.06336,1.209252 -0.06336,1.209252"
id="path1070"
sodipodi:nodetypes="csssssc" /><path
style="fill:#e50013;fill-opacity:1;stroke:#000000;stroke-width:0.504166;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;paint-order:markers fill stroke;stop-color:#000000"
d="m 18.621728,39.945347 c 0,0 0.535232,0.542079 0.535232,1.137733 0,0.520455 -0.29434,0.741778 -0.555082,0.929722 -0.26902,0.193913 -0.440713,0.739981 -1.085773,0.739981 -0.252355,0 -0.685181,-0.296256 -1.102138,-0.391448 -0.78736,-0.179763 -0.905964,-1.077176 -0.905964,-1.077176"
id="path1068"
sodipodi:nodetypes="cssssc" /><path
style="fill:#e50013;fill-opacity:1;stroke:#000000;stroke-width:0.504166;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;paint-order:markers fill stroke;stop-color:#000000"
d="m 16.580469,37.627457 c 0,0 0.115434,-0.529389 0.714075,-0.650109 0.509737,-0.102803 0.843926,-0.03809 1.294242,0.222125 0.287103,0.165911 0.227114,0.590107 0.299149,0.735396 0.112181,0.226255 0.554031,0.37359 0.638502,0.793214 0.159504,0.792396 -0.721095,1.2147 -0.721095,1.2147"
id="path1066"
sodipodi:nodetypes="cssssc" /><path
style="fill:#e50013;fill-opacity:1;stroke:#000000;stroke-width:0.504166;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;paint-order:markers fill stroke;stop-color:#000000"
d="m 15.807637,38.102616 c 0,0 -0.495936,-0.450462 -1.060118,-0.216556 -0.4804,0.199169 -0.878216,0.704244 -0.878217,1.224698 0,0.162199 0.173019,0.374085 0.19417,0.534896 0.02121,0.161272 -0.290307,0.295471 -0.126649,0.690945 0.309045,0.74679 1.082926,0.474204 1.082926,0.474204"
id="path1064"
sodipodi:nodetypes="cssssc" /><path
style="fill:#e50013;fill-opacity:1;stroke:#000000;stroke-width:0.504166;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;paint-order:markers fill stroke;stop-color:#000000"
d="m 15.60414,39.287143 c 0.194174,0.72533 0.877046,1.419973 1.702333,1.64131 0,0 -0.607408,0.63325 -1.395879,0.454608 -0.422095,-0.09564 -0.749897,-0.34086 -0.906813,-0.612894 -0.489665,-0.848896 0.600359,-1.483024 0.600359,-1.483024 z"
id="path297"
sodipodi:nodetypes="ccssc" /><path
style="fill:#e50013;fill-opacity:1;stroke:#000000;stroke-width:0.504166;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;paint-order:markers fill stroke;stop-color:#000000"
d="m 17.689639,38.885076 c -0.72467,-0.194351 -1.56165,-0.182569 -2.165801,0.422129 0,0 -0.340694,-0.787365 0.208113,-1.381502 0.293798,-0.318059 0.765205,-0.386296 1.151518,-0.282691 0.636464,0.170696 0.613845,0.523641 0.80617,1.242064 z"
id="path1006"
sodipodi:nodetypes="ccssc" /><path
style="fill:#e50013;fill-opacity:1;stroke:#000000;stroke-width:0.504166;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:8;paint-order:markers fill stroke;stop-color:#000000"
d="m 17.065173,40.863073 c 0.480709,-0.576518 0.986183,-1.21073 0.691828,-2.01355 0,0 1.06319,-0.111645 1.371227,0.636473 0.164898,0.400494 -0.121464,0.833895 -0.377722,1.14123 -0.422198,0.506345 -0.953192,0.363051 -1.685333,0.235847 z"
id="path1008"
sodipodi:nodetypes="ccssc" /></g></g><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /></g><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato, rozo ruĝa</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><g
id="g8935"
transform="translate(0.98908471,1.545638)" /></svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,125 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_sciencisto.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview15"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="4"
inkscape:cx="68.625"
inkscape:cy="86.125"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" /><title
id="title4279">Gutkato sciencisto</title><defs
id="defs2" /><g
id="layer1"><path
style="fill:#ffdb26;fill-opacity:1;stroke:none;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><path
style="fill:#f2f2f2;fill-opacity:1;stroke:none;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="m 30.067065,22.578246 c -0.01225,0.310625 -0.03043,0.612264 -0.05458,0.903114 -0.04829,0.5817 -0.120418,1.120244 -0.216573,1.601216 -0.192311,0.961944 -0.480728,1.693599 -0.866752,2.079627 C 24.518224,31.573189 5.67995,31.273305 4.0639285,25.242152 3.8140634,24.30963 3.7030413,23.125239 3.7092413,21.83 c 0.00155,-0.32381 0.010426,-0.654548 0.02629,-0.990011 0.9566749,1.507774 2.7170948,2.599541 4.9105046,3.331759 1.0967051,0.366109 2.3016571,0.642331 3.5685131,0.835722 0.633428,0.0967 1.282331,3.347685 1.940917,3.403848 0.658587,0.05616 1.326855,-3.0825 1.999014,-3.065105 2.688635,0.06958 5.439504,-0.163936 7.881853,-0.644083 2.44235,-0.480147 4.576178,-1.206928 6.030732,-2.123884 z"
id="path298"
sodipodi:nodetypes="cssssscsssssc" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79374998;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000;stroke-opacity:1"
d="m 30.067065,22.578246 c -0.01225,0.310625 -0.03043,0.612264 -0.05458,0.903114 -0.04829,0.5817 -0.120418,1.120244 -0.216573,1.601216 -0.192311,0.961944 -0.480728,1.693599 -0.866752,2.079627 C 24.518224,31.573189 5.67995,31.273305 4.0639285,25.242152 3.8140634,24.30963 3.7030413,23.125239 3.7092413,21.83 c 0.00155,-0.32381 0.010426,-0.654548 0.02629,-0.990011 0.9566749,1.507774 2.7170948,2.599541 4.9105046,3.331759 1.0967051,0.366109 2.3016571,0.642331 3.5685131,0.835722 0.633428,0.0967 1.282331,3.347685 1.940917,3.403848 0.658587,0.05616 1.326855,-3.0825 1.999014,-3.065105 2.688635,0.06958 5.439504,-0.163936 7.881853,-0.644083 2.44235,-0.480147 4.576178,-1.206928 6.030732,-2.123884 z"
id="path866"
sodipodi:nodetypes="cssssscsssssc" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000;stroke-opacity:1"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path860" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="12.96371"
cy="12.570978"
rx="1.6752723"
ry="2.1418331"
transform="rotate(8)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(8.953004,0.69247082)"
style="stroke-width:1.07136" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /><path
style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:0.79374998;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="m 8.6460359,24.171748 c 1.0967051,0.366109 2.3016571,0.642331 3.5685131,0.835722 0.633428,0.0967 1.282331,3.347685 1.940917,3.403848 0.658587,0.05616 1.326855,-3.0825 1.999014,-3.065105 1.344318,0.03479 2.704194,-0.0062 4.033284,-0.115894 -3.019481,2.241515 -5.12988,3.284591 -6.031936,3.181048 -0.902056,-0.103543 -2.807674,-0.904569 -5.5097921,-4.239619 z"
id="path1678"
sodipodi:nodetypes="csssczc" /><circle
style="fill:#e5fff6;fill-opacity:0.40000001;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
id="path1786"
cx="11.088006"
cy="14.252838"
r="2.6458333" /><use
x="0"
y="0"
xlink:href="#path1786"
id="use3392"
transform="translate(8.9530039,0.69247065)" /><path
style="fill:none;fill-opacity:0.4;stroke:#000000;stroke-width:0.52916666;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
d="m 13.398391,15.577865 c 1.269435,-0.619145 2.958541,-0.490106 4.111382,0.287496"
id="path3448"
sodipodi:nodetypes="cc" /><g
id="g3574"
transform="rotate(8,123.73454,-78.756393)"><path
style="fill:#00ff7f;fill-opacity:0.80000001;stroke:none;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
d="m 41.142708,32.014583 v 2.910416 l 0,5.820833 c 0,2.748019 4.233333,2.780961 4.233333,0 v -5.820833 l 0.0077,-3.504292 c -1.085626,-0.438622 -3.373895,-0.08358 -4.241,0.593876 z"
id="path5028"
sodipodi:nodetypes="ccccccc" /><path
style="fill:#e5fff6;fill-opacity:0.4;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
d="m 40.084374,28.045833 c 0.492377,0 1.058334,0.432133 1.058334,1.058333 v 11.641666 c 0,2.748019 4.233333,2.780961 4.233333,0 V 29.104166 c 0,-0.574955 0.587157,-1.058333 1.058333,-1.058333 -2.125954,-0.492681 -4.242409,-0.481458 -6.35,0 z"
id="path3508"
sodipodi:nodetypes="ccccccc" /><path
style="fill:none;fill-opacity:0.4;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
d="m 42.08234,28.742783 c 0.654591,0.16184 1.63105,0.193733 2.354072,0"
id="path3510"
sodipodi:nodetypes="cc" /></g></g><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato sciencisto</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata></svg>

After

Width:  |  Height:  |  Size: 10 KiB

View File

@@ -0,0 +1,155 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_afiŝo_10_el_10.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview35"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="0.92187498"
inkscape:cx="-93.288138"
inkscape:cy="98.169494"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg5"
showguides="false" /><title
id="title4279">Gutkato, afiŝo »10/10«</title><defs
id="defs2" /><path
id="path236"
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 7.1711384 3.7041666 C 6.9110626 5.035593 6.0130409 8.1032493 6.3458658 10.987443 C 5.1926054 12.535523 4.3026267 15.649985 3.9175903 18.746142 C 2.6912511 18.679601 1.9596439 19.16417 1.5120524 20.168278 C 0.84938348 21.65488 1.455011 22.844306 3.8519612 24.172167 C 3.9063771 24.555244 3.9761727 24.915224 4.0638346 25.242386 C 5.6798539 31.273533 24.518054 31.573152 28.928983 27.162166 C 30.473077 25.618054 30.455692 18.543772 28.972391 13.32115 C 30.00524 11.402343 30.354782 7.5977563 30.033308 5.8063638 C 27.105074 6.0012977 24.972801 6.6570667 22.784139 7.7581826 C 20.000341 6.7124258 15.785367 6.219729 12.325346 7.1468504 C 10.322236 5.5214737 8.8535064 4.5878477 7.1711384 3.7041666 z " /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato, afiŝo »10/10«</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><g
id="g7502"
transform="rotate(-66,-6.0895021,34.248777)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 6.8721321,40.638034 c 0,-4.15255 0.8181757,-5.656197 2.7781057,-5.655327 1.9599302,8.7e-4 2.7781052,1.4977 2.7781052,5.655327"
id="path915" /><g
id="g552"><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.891479;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="circle1002"
cx="-8.5123949"
cy="36.662296"
r="0.33072916"
transform="scale(-1,1)" /><path
id="path978"
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:1.2795;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
d="m 9.6676836,36.53568 a 0.84504452,0.84504452 0 0 0 -0.8313391,0.695558 0.84504452,0.84504452 0 0 0 -0.2266681,0.575573 0.84504452,0.84504452 0 0 0 0.844668,0.845501 0.84504452,0.84504452 0 0 0 0.2140785,-0.02832 0.84504452,0.84504452 0 0 0 0.2124211,0.02831 0.84504452,0.84504452 0 0 0 0.845499,-0.845498 0.84504452,0.84504452 0 0 0 -0.227409,-0.576439 0.84504452,0.84504452 0 0 0 -0.8313388,-0.694726 z" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1004"
transform="translate(0.72760407,-0.5522063)" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1008"
transform="translate(1.589089,-0.55220624)" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1010"
transform="translate(2.3113092)"
style="stroke-width:1.00012;stroke-dasharray:none" /></g></g><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="12.96371"
cy="12.570978"
rx="1.6752723"
ry="2.1418331"
transform="rotate(8)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(8.953004,0.69247082)"
style="stroke-width:1.07136" /><g
id="g437"
transform="rotate(4,13.80983,22.06832)" /><rect
style="opacity:1;fill:#ffffff;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="rect425"
width="20.372917"
height="11.377083"
x="3.9484324"
y="15.450813"
transform="rotate(4)" /><text
xml:space="preserve"
style="font-weight:bold;font-size:7.05556px;line-height:0.01%;font-family:'Granstander Clean';-inkscape-font-specification:'Granstander Clean Bold';text-align:center;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000033;stroke-width:3.70417;stroke-linecap:square;stroke-linejoin:round;stop-color:#000000"
x="14.189651"
y="23.854576"
id="text429"
transform="rotate(4)"><tspan
sodipodi:role="line"
id="tspan427"
style="stroke-width:3.70417"
x="14.189651"
y="23.854576">1<tspan
style="letter-spacing:-0.264583px"
id="tspan368">0</tspan><tspan
style="letter-spacing:0.264583px"
id="tspan370">/</tspan>10</tspan></text><g
id="g457"
transform="rotate(-66,16.759466,16.41439)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 9.8210863,28.420283 c 0,-3.614558 0.8181757,-5.12703 2.7781057,-5.12616 1.95993,8.7e-4 2.778105,1.512491 2.778105,5.12616"
id="path447" /><g
id="g455"
transform="translate(-0.0585258)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 11.599399,23.694455 v 1.058284"
id="path449" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 12.657717,23.661518 v 1.058284"
id="path451" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 13.716036,23.694455 v 1.058284"
id="path453" /></g></g><g
id="g7902"
transform="rotate(-66,-5.8249188,33.841354)" /></svg>

After

Width:  |  Height:  |  Size: 9.7 KiB

View File

@@ -0,0 +1,122 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_dormas.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
inkscape:export-filename="gutkato_dormas.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview15"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="3.6874999"
inkscape:cx="66.711866"
inkscape:cy="72.271188"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" /><title
id="title4279">Gutkato dormas</title><defs
id="defs2" /><g
id="layer1"><text
xml:space="preserve"
style="font-weight:bold;font-size:8.46667px;line-height:0%;font-family:'Komika Axis';-inkscape-font-specification:'Komika Axis Bold';text-align:center;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-anchor:middle;opacity:1;fill:#ef8dff;fill-opacity:1;stroke:#351f38;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
x="30.863598"
y="12.944016"
id="text9038"><tspan
sodipodi:role="line"
id="tspan9036"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.46667px;font-family:'Komika Axis';-inkscape-font-specification:'Komika Axis Bold';fill:#ef8dff;fill-opacity:1;stroke:#351f38;stroke-width:0.79375;stroke-dasharray:none;stroke-opacity:1"
x="30.863598"
y="12.944016">Z</tspan></text><text
xml:space="preserve"
style="font-weight:bold;font-size:7.05556px;line-height:0%;font-family:'Komika Axis';-inkscape-font-specification:'Komika Axis Bold';text-align:center;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-anchor:middle;opacity:1;fill:#ef8dff;fill-opacity:1;stroke:#351f38;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
x="28.934319"
y="20.387606"
id="text9030"><tspan
sodipodi:role="line"
id="tspan9028"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:7.05556px;font-family:'Komika Axis';-inkscape-font-specification:'Komika Axis Bold';fill:#ef8dff;fill-opacity:1;stroke:#351f38;stroke-width:0.79375;stroke-dasharray:none;stroke-opacity:1"
x="28.934319"
y="20.387606">Z</tspan></text><g
id="g9054"
transform="translate(-2.4548678)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 4.7832619,14.061517 C 3.7152924,11.361739 3.7887549,8.1660314 3.6953702,6.8126583 5.5491283,7.2308003 7.2093073,7.7525254 9.5648438,8.8040768 12.667014,7.013025 16.866065,6.3979822 19.825671,6.6876063 c 1.829098,-1.6300655 3.718967,-2.8152344 6.496974,-3.7614098 0.774167,1.6471504 1.421043,5.4127493 0.920011,7.5334975 2.784475,4.660764 3.230602,15.158396 1.686506,16.702509 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 3.509469,17.264907 4.7832619,14.061517 Z"
id="path236"
sodipodi:nodetypes="ccccccssc" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.400762,17.051177 4.674623,-1.569933"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.785733,19.173097 4.761148,0.02475"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.802078,18.523993 5.3665436,17.892877"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.6159094,20.468976 5.4340865,20.708188"
id="path7895" /><path
style="opacity:1;fill:none;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 8.1853362,15.737759 c 1.0956731,0.825649 3.0724838,0.585758 3.9301028,-0.552341"
id="path448"
sodipodi:nodetypes="cc" /><use
x="0"
y="0"
xlink:href="#path448"
id="use1004"
transform="translate(8.9372343,-0.87272217)" /><path
style="opacity:1;fill:none;fill-opacity:1;stroke:#66ffff;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="M 11.955544,22.629288 V 25.11525"
id="path4022" /><path
style="opacity:1;fill:#c2748e;fill-opacity:1;stroke:#382129;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 15.046279,19.740668 c -1.546069,0.135263 -4.73578,2.406814 -3.968055,3.49108 1.157713,1.635048 8.284286,0.859149 9.152217,-0.976907 0.544851,-1.1526 -3.240461,-2.684225 -5.184162,-2.514173 z"
id="path1062"
sodipodi:nodetypes="cssc" /><path
style="opacity:1;fill:#c2748e;fill-opacity:1;stroke:#382129;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 14.874173,19.740668 c -1.546069,0.135263 -4.73578,2.406814 -3.968055,3.49108 1.157713,1.635048 8.284286,0.859149 9.152217,-0.976907 0.544851,-1.1526 -3.240461,-2.684225 -5.184162,-2.514173 z"
id="path4026"
sodipodi:nodetypes="cssc" /></g><text
xml:space="preserve"
style="font-weight:bold;font-size:9.87778px;line-height:0%;font-family:'Komika Axis';-inkscape-font-specification:'Komika Axis Bold';text-align:center;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-anchor:middle;opacity:1;fill:#ef8dff;fill-opacity:1;stroke:#351f38;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
x="26.550436"
y="8.9421425"
id="text9042"><tspan
sodipodi:role="line"
id="tspan9040"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9.87778px;font-family:'Komika Axis';-inkscape-font-specification:'Komika Axis Bold';fill:#ef8dff;fill-opacity:1;stroke:#351f38;stroke-width:0.79375;stroke-dasharray:none;stroke-opacity:1"
x="26.550436"
y="8.9421425">Z</tspan></text></g><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato dormas</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata></svg>

After

Width:  |  Height:  |  Size: 9.1 KiB

View File

@@ -0,0 +1,106 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_kosmo.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview13134"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="1"
inkscape:cx="57"
inkscape:cy="40.5"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" /><title
id="title4279">Gutkato kosmo</title><defs
id="defs2"><pattern
inkscape:collect="always"
xlink:href="#pattern13325"
id="pattern14673"
patternTransform="matrix(0.41652724,0.01774195,-0.01774195,0.41652724,-4.8372985,-6.6977061)" /><pattern
patternUnits="userSpaceOnUse"
width="112.49999"
height="112.49999"
patternTransform="translate(154.1181,5.1950185)"
id="pattern13325"><image
width="112.49998"
height="112.49998"
preserveAspectRatio="none"
style="stroke-width:30.72;image-rendering:optimizeSpeed"
xlink:href="fotoj/kolonoj%20de%20kreo.jxl"
id="image13321"
x="0"
y="0" /></pattern></defs><g
id="layer1"><path
style="fill:url(#pattern14673);fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><ellipse
style="fill:#ffb480;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000;opacity:0.75"
id="path6982"
cx="12.96371"
cy="12.570978"
rx="1.6752723"
ry="2.1418331"
transform="rotate(8)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(8.953004,0.69247082)"
style="stroke-width:1.07136" /><path
style="fill:none;fill-opacity:1;stroke:#ffb480;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000;opacity:0.75"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#ffb480;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000;opacity:0.75"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#ffb480;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000;opacity:0.75"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#ffb480;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000;opacity:0.75"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#ffb480;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000;opacity:0.75"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /></g><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato kosmo</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><rect
style="stroke:none;fill:url(#pattern13325)"
transform="scale(0.26458333)"
width="112.49999"
height="112.49999"
x="154.1181"
y="5.1950185"
id="rect13328" /></svg>

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

@@ -0,0 +1,158 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_brilokuloj.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview1560"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="1.2139373"
inkscape:cx="61.782432"
inkscape:cy="77.845864"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" /><title
id="title4279">Gutkato, brilokuloj</title><defs
id="defs2" /><g
id="layer1"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /></g><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato, brilokuloj</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><path
sodipodi:type="star"
style="fill:#ffb3ec;fill-opacity:1;stroke:#6b4b63;stroke-width:0.924954;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path1779"
inkscape:flatsided="false"
sodipodi:sides="4"
sodipodi:cx="10.937749"
sodipodi:cy="14.307776"
sodipodi:r1="3.2374179"
sodipodi:r2="1.2949672"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.3561945"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 10.937749,17.545194 -0.91568,-2.321737 -2.321738,-0.91568 2.321738,-0.915681 0.91568,-2.321737 0.91568,2.321737 2.321738,0.91568 -2.321738,0.915681 z"
transform="matrix(0.85606057,0.05986159,-0.05986159,0.85606057,2.5811166,1.3497637)" /><path
sodipodi:type="star"
style="fill:#ffd8b3;fill-opacity:1;stroke:#6b5a4b;stroke-width:3.88449;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path2146"
inkscape:flatsided="false"
sodipodi:sides="4"
sodipodi:cx="10.937749"
sodipodi:cy="14.307776"
sodipodi:r1="3.2374179"
sodipodi:r2="1.2949672"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.3561945"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 10.937749,17.545194 -0.91568,-2.321737 -2.321738,-0.91568 2.321738,-0.915681 0.91568,-2.321737 0.91568,2.321737 2.321738,0.91568 -2.321738,0.915681 z"
transform="matrix(0.20384018,0.01425389,-0.01425389,0.20384018,5.3277131,9.9482463)" /><path
sodipodi:type="star"
style="fill:#b3ffcc;fill-opacity:1;stroke:#4b6b56;stroke-width:0.924954;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path2200"
inkscape:flatsided="false"
sodipodi:sides="4"
sodipodi:cx="10.937749"
sodipodi:cy="14.307776"
sodipodi:r1="3.2374179"
sodipodi:r2="1.2949672"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.3561945"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 10.937749,17.545194 -0.91568,-2.321737 -2.321738,-0.91568 2.321738,-0.915681 0.91568,-2.321737 0.91568,2.321737 2.321738,0.91568 -2.321738,0.915681 z"
transform="matrix(0.85606057,0.05986159,-0.05986159,0.85606057,11.534121,2.0422345)" /><path
sodipodi:type="star"
style="fill:#ffd8b3;fill-opacity:1;stroke:#6b5a4b;stroke-width:3.88449;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path2202"
inkscape:flatsided="false"
sodipodi:sides="4"
sodipodi:cx="10.937749"
sodipodi:cy="14.307776"
sodipodi:r1="3.2374179"
sodipodi:r2="1.2949672"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.3561945"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 10.937749,17.545194 -0.91568,-2.321737 -2.321738,-0.91568 2.321738,-0.915681 0.91568,-2.321737 0.91568,2.321737 2.321738,0.91568 -2.321738,0.915681 z"
transform="matrix(0.20384018,0.01425389,-0.01425389,0.20384018,15.490645,14.059293)" /><path
sodipodi:type="star"
style="fill:#b3ffff;fill-opacity:1;stroke:#4b6b6b;stroke-width:3.88449;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path2204"
inkscape:flatsided="false"
sodipodi:sides="4"
sodipodi:cx="10.937749"
sodipodi:cy="14.307776"
sodipodi:r1="3.2374179"
sodipodi:r2="1.2949672"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.3561945"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 10.937749,17.545194 -0.91568,-2.321737 -2.321738,-0.91568 2.321738,-0.915681 0.91568,-2.321737 0.91568,2.321737 2.321738,0.91568 -2.321738,0.915681 z"
transform="matrix(0.20384018,0.01425389,-0.01425389,0.20384018,11.381027,9.1577654)" /><path
sodipodi:type="star"
style="fill:#ffb3ec;fill-opacity:1;stroke:#6b4b63;stroke-width:3.88449;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path2144"
inkscape:flatsided="false"
sodipodi:sides="4"
sodipodi:cx="10.937749"
sodipodi:cy="14.307776"
sodipodi:r1="3.2374179"
sodipodi:r2="1.2949672"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.3561945"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 10.937749,17.545194 -0.91568,-2.321737 -2.321738,-0.91568 2.321738,-0.915681 0.91568,-2.321737 0.91568,2.321737 2.321738,0.91568 -2.321738,0.915681 z"
transform="matrix(0.20384018,0.01425389,-0.01425389,0.20384018,22.107732,11.023068)" /></svg>

After

Width:  |  Height:  |  Size: 9.2 KiB

View File

@@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_fiervanta.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview2272"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="0.4609375"
inkscape:cx="49.898305"
inkscape:cy="57.491525"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" /><title
id="title4279">Gutkato fiervanta</title><defs
id="defs2" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 9.9700104,18.375122 c -1.5810083,2.960738 2.1101606,4.488312 4.5001236,1.928804 3.00942,3.771338 6.42494,1.532653 5.625208,-0.807168"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.890691,18.033756 4.90797,-0.478133"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.788468,20.187893 4.633552,1.095139"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.3348592,16.184835 6.1037172,15.02202"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7159358,18.03809 5.536222,17.780367"
id="path7895" /><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato fiervanta</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 8.9559745,13.199433 c 1.3710045,-0.166475 3.9714055,0.238678 4.6982595,0.524274 0,0 -0.36508,0.920999 -1.250595,0.796548 -0.885514,-0.124451 -0.769441,-1.077253 -0.769441,-1.077253"
id="path2445"
sodipodi:nodetypes="cczc" /><use
x="0"
y="0"
xlink:href="#path2445"
id="use2812"
transform="translate(8.904493,1.1600861)" /></svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@@ -0,0 +1,290 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_frago.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview15"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
showguides="true"
inkscape:zoom="0.46093751"
inkscape:cx="75.932202"
inkscape:cy="61.830507"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" /><title
id="title4279">Gutkato frago</title><defs
id="defs2" /><g
id="layer1"><path
style="fill:#ff0d00;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="12.96371"
cy="12.570978"
rx="1.6752723"
ry="2.1418331"
transform="rotate(8)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(8.953004,0.69247082)"
style="stroke-width:1.07136" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 10.004075,19.121173 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.104059 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.260593 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,17.019465 5.9675926,15.975012"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.902572 5.5452359,18.75928"
id="path7895" /><ellipse
style="fill:#f9f18b;fill-opacity:1;stroke:none;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:normal;stop-color:#000000"
id="use12081"
cx="-32.210674"
cy="-18.081869"
rx="0.59469193"
ry="0.84932899"
transform="rotate(-165)" /><use
x="0"
y="0"
xlink:href="#use12081"
id="use9272"
transform="translate(-3.6186704,-2.8234491)" /><use
x="0"
y="0"
xlink:href="#use9272"
id="use9274"
transform="translate(4.3481082,-3.8520102)" /><use
x="0"
y="0"
xlink:href="#use9274"
id="use9276"
transform="translate(-1.448796,-3.586122)" /><use
x="0"
y="0"
xlink:href="#use9276"
id="use9278"
transform="translate(1.5974526,-5.5761369)" /><use
x="0"
y="0"
xlink:href="#use9278"
id="use9280"
transform="translate(-3.1400291,2.6622014)" /><use
x="0"
y="0"
xlink:href="#use9280"
id="use9282"
transform="translate(-7.1425415,-1.8288787)" /><use
x="0"
y="0"
xlink:href="#use9282"
id="use9284"
transform="translate(-3.1051931,6.4977931)" /><use
x="0"
y="0"
xlink:href="#use9284"
id="use9286"
transform="translate(4.1570581,2.8896568)" /><use
x="0"
y="0"
xlink:href="#use9286"
id="use9288"
transform="translate(-10.64617,5.1461273)" /><use
x="0"
y="0"
xlink:href="#use9288"
id="use9290"
transform="translate(-1.5323505,-4.0113325)" /><use
x="0"
y="0"
xlink:href="#use9290"
id="use9292"
transform="translate(2.096724,-7.3316314)" /><use
x="0"
y="0"
xlink:href="#use9292"
id="use9294"
transform="translate(-0.03782278,-5.3968883)" /><use
x="0"
y="0"
xlink:href="#use9294"
id="use9296"
transform="translate(2.1689957,1.7778981)" /><use
x="0"
y="0"
xlink:href="#use9296"
id="use9298"
transform="translate(3.8443537,14.228019)" /><use
x="0"
y="0"
xlink:href="#use9298"
id="use9300"
transform="translate(3.5111608,3.3267663)" /><use
x="0"
y="0"
xlink:href="#use9300"
id="use9302"
transform="translate(2.2581056,-2.8085936)" /><use
x="0"
y="0"
xlink:href="#use12081"
id="use9304"
transform="rotate(15,22.8565,11.094337)" /><use
x="0"
y="0"
xlink:href="#use9304"
id="use9306"
transform="translate(-12.137007,-1.9204024)" /><use
x="0"
y="0"
xlink:href="#use9306"
id="use9308"
transform="translate(1.6239578,2.943076)" /><use
x="0"
y="0"
xlink:href="#use9308"
id="use9310"
transform="translate(4.6524695,-9.7832342)" /><use
x="0"
y="0"
xlink:href="#use9310"
id="use9312"
transform="translate(-2.1665385,-4.1586645)" /><use
x="0"
y="0"
xlink:href="#use9312"
id="use9314"
transform="translate(-1.0418915,-4.2603593)" /><use
x="0"
y="0"
xlink:href="#use9314"
id="use9316"
transform="translate(6.4753654,0.07048727)" /><use
x="0"
y="0"
xlink:href="#use9316"
id="use9318"
transform="translate(1.7486114,2.6164543)" /><use
x="0"
y="0"
xlink:href="#use9318"
id="use9320"
transform="translate(2.8617263,-2.6282054)" /><use
x="0"
y="0"
xlink:href="#use9320"
id="use9322"
transform="translate(-16.470174,-3.0124724)" /><use
x="0"
y="0"
xlink:href="#use9322"
id="use9324"
transform="translate(3.7488956,14.402944)" /><use
x="0"
y="0"
xlink:href="#use9324"
id="use9326"
transform="translate(-2.3558304,-2.8953702)" /><use
x="0"
y="0"
xlink:href="#use9326"
id="use9328"
transform="translate(7.1285066,7.5296947)" /><use
x="0"
y="0"
xlink:href="#use12081"
id="use9330"
transform="rotate(-30,21.038656,26.518138)" /><use
x="0"
y="0"
xlink:href="#use9330"
id="use9332"
transform="translate(-3.7832377,-4.5128265)" /><use
x="0"
y="0"
xlink:href="#use9332"
id="use9334"
transform="translate(-4.787421,-4.3513164)" /><use
x="0"
y="0"
xlink:href="#use9334"
id="use9336"
transform="translate(11.677756,9.3882411)" /><use
x="0"
y="0"
xlink:href="#use9336"
id="use9338"
transform="translate(-8.6186262,4.6754638)" /><use
x="0"
y="0"
xlink:href="#use9338"
id="use9340"
transform="translate(-10.95023,-1.2972587)" /><use
x="0"
y="0"
xlink:href="#use9340"
id="use9342"
transform="translate(-0.5549209,-5.198489)" /><use
x="0"
y="0"
xlink:href="#use9342"
id="use9344"
transform="translate(20.012936,-14.255151)" /><use
x="0"
y="0"
xlink:href="#use9344"
id="use9346"
transform="translate(-5.2378137,8.2581687)" /><use
x="0"
y="0"
xlink:href="#use9346"
id="use9348"
transform="translate(4.4738208,-2.6997347)" /><use
x="0"
y="0"
xlink:href="#use9348"
id="use9350"
transform="translate(-22.077184,4.0578245)" /></g><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato frago</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata></svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -0,0 +1,356 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="800"
height="800"
viewBox="0 0 800 800"
version="1.1"
id="svg5"
sodipodi:docname="blobcat_teapot.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview47"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:current-layer="svg5">
<inkscape:grid
type="xygrid"
id="grid172"
spacingx="5"
spacingy="5"
empcolor="#ff3f3f"
empopacity="0.50196078"
color="#3f3fff"
opacity="0.25098039" />
</sodipodi:namedview>
<title
id="title1375">Blobcat drinks directly from teapot</title>
<defs
id="defs2">
<linearGradient
id="face"
gradientTransform="matrix(0.30608992,-1.0449013e-8,0,0.65476465,178.46518,287.84523)"
inkscape:swatch="solid">
<stop
style="stop-color:#2b2b00;stop-opacity:1;"
offset="0"
id="stop999" />
</linearGradient>
<linearGradient
id="blob_body"
gradientTransform="matrix(0.22421862,0,0,0.47790186,125.85533,423.809)"
inkscape:swatch="solid">
<stop
style="stop-color:#fcc314;stop-opacity:1;"
offset="0"
id="stop5823" />
</linearGradient>
<linearGradient
xlink:href="#face"
id="linearGradient3200"
x1="539.43036"
y1="437.90143"
x2="660.23444"
y2="437.90143"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.0455177,0,0,1.0676148,14.762898,45.330691)" />
<linearGradient
xlink:href="#face"
id="linearGradient5554"
gradientUnits="userSpaceOnUse"
x1="539.43036"
y1="437.90143"
x2="660.23444"
y2="437.90143"
gradientTransform="matrix(0.97471167,0.41127683,-0.39920703,1.0041815,214.65375,-96.346662)" />
<linearGradient
xlink:href="#face"
id="linearGradient5558"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.95879011,0.26982027,-0.25400493,-1.0184881,876.02752,749.41197)"
x1="539.43036"
y1="437.90143"
x2="660.23444"
y2="437.90143" />
<linearGradient
xlink:href="#face"
id="linearGradient5562"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.82062932,0.62276988,-0.57190387,-0.87794401,921.03493,550.62676)"
x1="539.43036"
y1="437.90143"
x2="660.23444"
y2="437.90143" />
<linearGradient
xlink:href="#blob_body"
id="linearGradient14063"
x1="89.261482"
y1="625.01587"
x2="300.12128"
y2="625.01587"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.32368256,0.82215935,1.0851466,0.69915514,-401.51137,87.7622)" />
<linearGradient
xlink:href="#tea"
id="linearGradient11337"
x1="419.60144"
y1="541.05774"
x2="442.70374"
y2="541.05774"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.765412,0,0,1.765412,-391.67005,-506.96532)" />
<linearGradient
id="tea"
inkscape:swatch="solid"
gradientTransform="translate(0,-115.00046)">
<stop
style="stop-color:#503200;stop-opacity:1;"
offset="0"
id="stop10824" />
</linearGradient>
<linearGradient
xlink:href="#mouth"
id="linearGradient2536"
x1="318.32098"
y1="545.00934"
x2="481.67902"
y2="545.00934"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.2661816,0.22326196,-0.17107562,0.97021803,6.2229597,-164.1955)" />
<linearGradient
id="mouth"
inkscape:swatch="solid">
<stop
style="stop-color:#ed6c30;stop-opacity:1;"
offset="0"
id="stop2482" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#face"
id="linearGradient332"
gradientTransform="matrix(-0.28328371,0.71954562,1.2398984,0.79886098,-401.51137,87.7622)"
x1="-5.7130455"
y1="416.80921"
x2="251.374"
y2="416.80921"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#face"
id="linearGradient502"
gradientTransform="scale(0.90061778,1.1103489)"
x1="331.18529"
y1="86.064669"
x2="433.48107"
y2="86.064669"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#face"
id="linearGradient504"
gradientTransform="scale(0.89920277,1.1120962)"
x1="601.58517"
y1="106.82399"
x2="706.77622"
y2="106.82399"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#blob_body"
id="linearGradient506"
gradientTransform="matrix(1.0263586,0.18097469,-0.16661827,0.94493914,118.95369,-121.36952)"
x1="86.356469"
y1="135.48493"
x2="761.8053"
y2="135.48493"
gradientUnits="userSpaceOnUse" />
</defs>
<path
style="display:inline;fill:url(#linearGradient506);fill-opacity:1;stroke:none;stroke-width:0.879001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 780.15539,603.79677 C 804.69498,715.82834 649.32273,763.16906 419.69594,720.23506 -126.64483,654.10379 198.7552,285.41902 206.86834,261.76425 234.52156,181.13809 229.29676,71.765443 268.92149,43.610206 307.65013,16.091669 377.5309,140.73218 377.5309,140.73218 c 138.80785,-45.943017 280.9651,3.84434 346.79753,58.51658 9.3977,4.31516 109.46434,-55.08148 138.01453,-21.6818 27.6225,32.31441 -51.21637,132.56147 -43.01944,174.1733 25.95314,131.75148 -50.28772,201.29182 -39.16813,252.05651 z"
id="blobcat_body"
inkscape:label="body"
sodipodi:nodetypes="scssccsss"
sodipodi:insensitive="true" />
<g
id="eyes"
style="display:inline"
transform="rotate(10,303.59619,823.50198)"
inkscape:label="eyes"
sodipodi:insensitive="true">
<ellipse
style="display:inline;fill:url(#linearGradient504);fill-opacity:1;stroke:none;stroke-width:1.21563;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
id="eye_right"
cx="588.24109"
cy="177.28984"
rx="47.294041"
ry="58.491283"
transform="matrix(0.96362231,0.26726773,-0.26103537,0.96532924,0,0)"
inkscape:label="right" />
<ellipse
style="display:inline;fill:url(#linearGradient502);fill-opacity:1;stroke:none;stroke-width:1.18217;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
id="eye_left"
cx="344.33606"
cy="152.35382"
rx="46.064701"
ry="56.792007"
transform="matrix(0.89475589,0.4465556,-0.44378819,0.89613171,0,0)"
inkscape:label="left" />
</g>
<g
id="whiskers"
transform="rotate(10,753.10682,619.13869)"
inkscape:label="whiskers"
sodipodi:insensitive="true">
<path
style="fill:url(#linearGradient5554);fill-opacity:1;stroke:none;stroke-width:1.0691px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 677.65382,629.32529 c -3.34663,2.69209 -119.89224,-59.77382 -107.72766,-74.37632 12.16457,-14.6025 111.07431,71.68425 107.72766,74.37632 z"
id="whiskers_bottom_right"
inkscape:label="bottom right" />
<path
style="fill:url(#linearGradient3200);fill-opacity:1;stroke:none;stroke-width:1.05651px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 705.04965,528.15074 c -2.09104,3.73665 -131.95589,-8.36304 -126.11437,-26.33101 5.84151,-17.96797 128.2054,22.59436 126.11437,26.33101 z"
id="whiskers_top_right"
inkscape:label="top right" />
<path
style="fill:url(#linearGradient5562);fill-opacity:1;stroke:none;stroke-width:1.03761px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 120.58842,564.75788 c -0.36042,-4.31834 108.05242,-71.72315 113.09255,-53.46783 5.04012,18.25537 -112.73216,57.78618 -113.09255,53.46783 z"
id="whiskers_bottom_left"
inkscape:label="bottom left" />
<path
style="fill:url(#linearGradient5558);fill-opacity:1;stroke:none;stroke-width:1.02228px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 128.12968,466.95372 c 1.02854,-4.10435 122.9996,-26.07608 121.91756,-7.42739 -1.08206,18.64871 -122.94614,11.53173 -121.91756,7.42739 z"
id="whiskers_top_left"
inkscape:label="top left" />
</g>
<metadata
id="metadata1373">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:title>Blobcat drinks directly from teapot</dc:title>
<dc:date>2022-06-12</dc:date>
<dc:creator>
<cc:Agent>
<dc:title>tastytea</dc:title>
</cc:Agent>
</dc:creator>
<dc:source>https://schlomp.space/tastytea/blobcats/src/branch/main/svg/blobcat_teapot.svg</dc:source>
<dc:subject>
<rdf:Bag>
<rdf:li>blobcat</rdf:li>
<rdf:li>emoji</rdf:li>
<rdf:li>teapot</rdf:li>
<rdf:li>tea</rdf:li>
</rdf:Bag>
</dc:subject>
<cc:license
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
<dc:contributor>
<cc:Agent>
<dc:title>Thanks to mg for fixing the arm.</dc:title>
</cc:Agent>
</dc:contributor>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<path
style="fill:url(#linearGradient2536);fill-opacity:1;stroke:none;stroke-width:5.62731;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 329.97125,443.10091 c 10.99772,-62.37115 188.26312,-31.11448 177.2654,31.25668 -10.99772,62.37115 -188.26311,31.11448 -177.2654,-31.25668 z"
id="path1199"
inkscape:label="mouth"
sodipodi:insensitive="true" />
<path
style="fill:url(#tea);stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 331.59449,459.88784 c -2.09541,-10.17027 169.90905,-10.10545 174.90443,0.26679 0.34684,1.34605 0.69099,2.42003 0.83252,3.41734 1.44058,8.24055 -0.38392,16.23628 -5.24083,23.31966 -4.43995,7.48509 -22.14566,20.58111 -48.09573,21.11796 -2.47291,0.25089 -10.82862,0.78998 -19.31822,0.35633 -12.20211,-0.65444 -37.99274,-3.73705 -58.51887,-12.35541 -18.81869,-7.48291 -37.51907,-18.87213 -44.5633,-36.12267 z"
id="tea_in_mouth"
sodipodi:nodetypes="cccccccc"
inkscape:label="tea in mouth" />
<g
id="teapot"
transform="matrix(20.709495,13.193404,-13.193404,20.709495,-55.068902,-342.16284)"
inkscape:label="teapot"
style="display:inline">
<path
id="ellipse5367"
d="M 25.86649,31.395826 C 26.012465,32.552578 22.654985,33.5 18.281553,33.5 c -4.469406,0 -8.212844,-0.985223 -8.270987,-2.187635 -0.057465,-1.188374 3.516977,-2.103902 7.897178,-2.058286 4.288064,0.04466 7.81441,0.997988 7.958746,2.141747 z"
style="fill:#543499;fill-opacity:1" />
<path
fill="#3B88C3"
d="m 11.74412,31.62038 c 0,0 3.406086,0.830154 6.481109,0.742604 2.50305,-0.07179 5.467611,-0.36035 6.276858,-0.777832 0,0 -0.862698,1.454945 -6.12882,1.44892 -5.405932,-0.0062 -6.629147,-1.413692 -6.629147,-1.413692 z"
id="path5369"
style="fill:#6d56c3;fill-opacity:1" />
<path
id="ellipse5371"
d="m 24.336625,15.79191 c 0.142471,1.108467 -3.161822,1.882833 -7.463137,1.714528 -4.393789,-0.171923 -8.0686992,-1.254687 -8.1212833,-2.402255 -0.051948,-1.13368 3.4613033,-1.868434 7.7638623,-1.65753 4.213921,0.206559 7.679747,1.249706 7.820558,2.345257 z"
style="fill:#543499;fill-opacity:1" />
<path
fill="#3B88C3"
d="m 31.11927,17.316903 c 2.966926,-0.05437 2.041536,1.080372 1.174805,1.561888 -0.396321,0.21948 -1.05468,1.528836 -1.197449,3.826339 -0.114093,1.836062 0.09506,5.447639 -3.962835,5.125559 -2.82446,-0.224085 -0.963261,-6.847955 -0.963261,-6.847955 0,0 2.098227,2.996921 3.251721,-1.243286 0.495488,-1.822161 0.845127,-2.407256 1.697019,-2.422545 z M 6.0934645,27.910635 C 4.9425895,27.895301 3.8682158,27.509198 2.9367463,26.768593 0.88934622,25.140278 0.167,22.072671 0.167,20.259993 c 0,-2.370747 1.3219846,-4.65727 3.8260301,-4.551604 1.5073271,0.06361 2.1663782,0.592085 2.8657711,1.151462 0.3932943,0.315262 0.8001019,0.640875 1.4715405,0.987243 L 7.64349,19.666754 C 6.7944046,19.229491 6.26346,18.801572 5.8372,18.458568 5.2265985,17.96701 4.94838,17.743093 4.0337496,17.708834 2.5851387,17.654573 1.9332169,18.84105 1.9468435,20.315382 c 0.014079,1.523329 0.6592233,3.584685 2.0735086,4.702938 0.8585473,0.680722 1.8808498,0.884723 3.0230899,0.614824 l 0.5085616,2.104605 C 7.0581864,27.859264 6.5697663,27.91698 6.0934645,27.910635 Z"
id="path5373"
style="fill:#6d56c3;fill-opacity:1" />
<path
fill="#3B88C3"
d="m 28.211813,24.65038 c 0.927079,6.50911 -5.55468,7.254479 -10.07227,7.236596 C 13.519511,31.868687 6.3647673,31.025048 6.1554361,24.159215 5.9597834,17.742021 10.275476,12.252668 16.438707,12.567957 22.4217,12.874026 27.342226,18.544927 28.211813,24.65038 Z"
id="path5375"
style="fill:#6d56c3;fill-opacity:1" />
<path
fill="#269"
d="m 28.967621,26.842259 c -0.442876,0.03097 -1.085608,-0.761722 -1.085608,-0.761722 -0.502102,2.019555 -2.51268,4.582987 -10.075019,4.529394 -7.031859,-0.04983 -9.7806403,-2.350431 -11.2615106,-4.282119 0,0 0.379287,1.260495 -1.8102817,0.761017 -0.6743098,-0.15431 -2.0125225,-0.837959 -3.1040644,-1.786417 0.3585753,0.552811 0.789893,1.056497 1.305609,1.466181 0.9314695,0.740605 2.006881,1.126722 3.1567182,1.142042 0.3650554,0.0049 0.7381116,-0.03968 1.1145592,-0.109305 2.2222649,3.543739 7.2782073,4.15731 10.8764373,4.1708 3.623671,0.01359 8.564009,-0.557646 9.875528,-4.13766 3.195243,-0.216101 3.029897,-3.428445 3.1359,-5.128426 0.107789,-1.736148 0.509307,-2.905228 0.868824,-3.468284 -0.02399,0.01078 -0.0417,0.01283 -0.06627,0.0254 -1.458119,0.752946 -0.451589,7.403042 -2.930825,7.579103 z M 4.8587855,17.223759 C 4.2218598,16.85619 2.9216802,16.936772 2.2700002,17.976993 c -0.4357404,0.69553 -0.4572974,1.578044 -0.3189616,2.244811 0.014867,-1.43014 0.6649617,-2.566075 2.082711,-2.51297 0.9136459,0.03422 1.1928489,0.258176 1.8034504,0.749734 0.2911704,0.234618 0.6409393,0.509933 1.0986203,0.799809 l 0.1537931,-0.46712 c 0,0 -1.2099289,-0.979054 -2.2308279,-1.567498 z M 22.921313,14.624983 c 0.267863,0.151517 0.429227,0.306909 0.448661,0.463827 0.09083,0.733406 -2.843612,1.205075 -6.61735,1.044786 -3.844711,-0.163304 -7.0466197,-0.916009 -7.0850841,-1.67196 -0.00823,-0.161716 0.1366914,-0.307891 0.3965081,-0.439297 -0.8445984,0.285385 -1.3313562,0.656005 -1.3118433,1.081844 0.052599,1.147901 3.7278913,2.230347 8.1212833,2.402255 4.300934,0.16829 7.605649,-0.605739 7.463137,-1.714528 -0.05288,-0.411459 -0.570845,-0.813725 -1.415312,-1.166927 z"
id="path5377"
style="fill:#543499;fill-opacity:1" />
<path
id="ellipse5379"
d="m 18.863286,11.830787 c 0.07278,0.716592 -0.991392,1.245331 -2.385991,1.175476 -1.404171,-0.07034 -2.593535,-0.719185 -2.647381,-1.443623 -0.05343,-0.718772 1.033379,-1.233606 2.418558,-1.155467 1.375869,0.07761 2.542597,0.712557 2.614814,1.423614 z"
style="fill:#543499;fill-opacity:1" />
<path
id="ellipse5381"
d="m 32.757791,17.811542 c 0.02805,0.163555 -0.35043,0.280625 -0.846523,0.261186 -0.497346,-0.01949 -0.923061,-0.168675 -0.949681,-0.332916 -0.02658,-0.163957 0.354855,-0.280271 0.850774,-0.260097 0.494673,0.02012 0.917434,0.168554 0.94543,0.331827 z"
style="fill:#543499;fill-opacity:1" />
</g>
<path
style="fill:url(#linearGradient11337);fill-opacity:1;stroke:none;stroke-width:1.76542px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 350.22673,439.29714 c 0.68578,9.80001 27.10087,22.88608 34.88777,21.81892 22.0253,-3.01845 67.1046,7.6615 30.8349,-14.74046 -25.1355,-15.52495 -66.60084,-19.62784 -65.72267,-7.07846 z"
id="tea_from_spout"
inkscape:label="tea from spout" />
<path
style="display:none;fill:url(#linearGradient14063);fill-opacity:1;stroke:url(#linearGradient332);stroke-width:10.5758;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 396.25762,704.83193 C 109.45038,638.57455 104.02462,635.07873 76.895983,617.59985 49.767249,600.12102 52.433602,576.07124 81.180701,589.43932 55.670456,567.84962 62.144098,551.40646 90.891235,564.77453 65.380952,543.18487 71.854602,526.74164 100.60167,540.10974 c 28.74705,13.3681 34.17281,16.86386 306.32126,68.52308"
id="hand"
inkscape:transform-center-x="1.6434477"
inkscape:transform-center-y="-6.6846726"
inkscape:label="hand with fingers" />
<path
style="display:inline;fill:url(#linearGradient14063);fill-opacity:1;stroke:url(#face);stroke-width:25;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 375,700 C 375,700 250,675 150,600 25,525 50,375 150,425 c 50,25 100,75 375,150"
id="path276"
inkscape:transform-center-x="1.6434477"
inkscape:transform-center-y="-6.6846726"
inkscape:label="hand"
sodipodi:nodetypes="ccsc" />
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

View File

@@ -0,0 +1,107 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_dikfingro_supren.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview1062"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="3.6874999"
inkscape:cx="30.644069"
inkscape:cy="79.593222"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" /><title
id="title4279">Gutkato, dikfingro supren</title><defs
id="defs2" /><g
id="layer1"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="12.96371"
cy="12.570978"
rx="1.6752723"
ry="2.1418331"
transform="rotate(8)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(8.953004,0.69247082)"
style="stroke-width:1.07136" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 10.004075,18.062839 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,17.574893 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,19.625469 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,16.490299 5.9675926,15.445846"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.267515 5.5452359,18.124223"
id="path7895" /><path
style="fill:none;stroke:#ffdb26;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 9.588431,16.011596 c 1.056392,-0.0648 2.055329,0.007 2.99915,0.209721"
id="path400" /><use
x="0"
y="0"
xlink:href="#path400"
id="use1055"
transform="translate(8.9530039,0.69247054)" /></g><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato, dikfingro supren</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><g
id="g1303"
transform="rotate(90,11.026828,23.437552)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 10.637043,28.796488 c -2.2916736,-0.48566 -3.2015054,-1.11621 -3.0112784,-1.826147 0.1814899,-0.677329 1.0494102,-0.534428 2.2191996,-0.220984 0.019887,-0.155678 0.1077541,-0.726537 0.1345861,-0.870229 0.1073277,-0.574768 0.2708477,-1.053653 0.4956147,-1.436689 0.449536,-0.766072 1.144062,-1.148751 2.124027,-1.148316 1.95993,8.7e-4 2.778105,1.523713 2.778105,4.596994"
id="path915"
sodipodi:nodetypes="cscsssc" /><g
id="g1296"
transform="translate(-0.0585258)"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 11.599399,23.694455 v 1.058284"
id="path1283" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 12.657717,23.661518 v 1.058284"
id="use1287" /><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 13.716036,23.694455 v 1.058284"
id="use1291" /></g></g></svg>

After

Width:  |  Height:  |  Size: 7.2 KiB

View File

@@ -0,0 +1,123 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_salutas.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
inkscape:export-filename="gutkato_salutas.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview9395"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="1.84375"
inkscape:cx="54.237288"
inkscape:cy="55.59322"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" /><title
id="title4279">Gutkato salutas</title><defs
id="defs2" /><path
id="path236"
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 10.535567,2.9915486 C 10.147914,4.2915719 8.9573044,7.2582738 9.0095622,10.161137 8.0154143,11.256147 7.0855022,13.50176 6.4257406,16.00264 6.2240111,15.411425 6.0360692,14.919981 5.9218954,14.659053 5.5676856,13.849556 5.217515,13.250726 4.8563274,12.827641 4.1339491,11.981472 3.3665066,11.838172 2.4275352,12.11864 c -0.9389716,0.280467 -1.49875115,0.832641 -1.63607582,1.942 -0.0686619,0.55468 -0.0317375,1.248531 0.11627197,2.1177 0.0740055,0.434584 0.30219405,1.427221 0.60926505,2.453597 0.6377161,2.131546 1.9618151,5.858997 4.5361572,7.414535 3.0027112,5.244642 20.3254814,5.321586 24.5313184,1.115694 1.544094,-1.544112 1.690462,-7.147543 0.719336,-12.48916 1.213623,-1.809894 1.930026,-5.5632383 1.783354,-7.3773274 -2.933359,-0.089247 -5.119283,0.3570392 -7.4042,1.2412678 C 23.013384,7.2268 18.865654,6.3288266 15.332173,6.9168903 13.49569,5.1053631 12.124561,4.0338314 10.535567,2.9915486 Z" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11668;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
id="path6982"
cx="15.641115"
cy="11.51972"
rx="1.6752723"
ry="2.1418331"
transform="rotate(10)" /><use
x="0"
y="0"
xlink:href="#path6982"
id="use7712"
transform="translate(8.9233832,1.0045043)"
style="stroke-width:1.07136" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 25.062694,18.321491 4.898877,-0.563716"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 24.99808,20.477083 4.651959,1.014106"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 10.476811,16.726885 8.2257151,15.603186"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 9.8903258,18.590659 7.7064462,18.371017"
id="path7895" /><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato salutas</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata><path
style="fill:#c2748e;fill-opacity:1;stroke:#382129;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 11.730252,19.065298 c -0.817385,5.341071 10.922078,5.919973 11.261059,1.072315 -1.618771,0.314656 -5.500246,-0.519619 -6.403931,-1.12916 -0.931547,0.454346 -3.490062,0.527565 -4.857128,0.05685 z"
id="path2839"
sodipodi:nodetypes="ccccc" /><path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
id="path2893"
d="m 20.141567,21.47209 -0.724684,-1.62767 1.771945,0.186239 z" /><use
x="0"
y="0"
xlink:href="#path2893"
id="use2895"
transform="translate(-6.2574506,-0.68318501)" /><path
style="fill:none;fill-opacity:1;stroke:#382226;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke;stop-color:#000000"
d="m 23.262547,20.070864 c -1.774758,0.344978 -5.522081,-0.31092 -6.670332,-1.08542 -1.119034,0.545788 -3.752009,0.449681 -5.119074,-0.02104"
id="path1289" /><g
id="g10107"
transform="rotate(53.343868,11.689211,18.291635)"><circle
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:0.891479;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
id="circle1002"
cx="21.432327"
cy="10.351334"
r="0.33072916"
transform="matrix(-0.34202014,0.93969262,0.93969262,0.34202014,0,0)" /><path
id="path978"
style="fill:#c2748e;fill-opacity:1;stroke:none;stroke-width:1.2795;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke;stop-color:#000000"
d="M 2.672936,22.551242 A 0.84504452,0.84504452 0 0 0 3.0422118,23.57034 0.84504452,0.84504452 0 0 0 3.5055487,23.980196 0.84504452,0.84504452 0 0 0 4.588953,23.475646 0.84504452,0.84504452 0 0 0 4.63556,23.264792 0.84504452,0.84504452 0 0 0 4.734815,23.074864 0.84504452,0.84504452 0 0 0 4.2294845,21.991178 0.84504452,0.84504452 0 0 0 3.6100306,22.007718 0.84504452,0.84504452 0 0 0 2.672867,22.551311 Z" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1004"
transform="translate(-0.27004874,-0.87258957)" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1008"
transform="translate(0.02459657,-1.6821205)" /><use
x="0"
y="0"
xlink:href="#circle1002"
id="use1010"
transform="translate(0.79051461,-2.1719201)"
style="stroke-width:1.00012;stroke-dasharray:none" /></g></svg>

After

Width:  |  Height:  |  Size: 7.9 KiB

View File

@@ -0,0 +1,74 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="128"
height="128"
viewBox="0 0 33.866666 33.866666"
version="1.1"
id="svg5"
xml:space="preserve"
sodipodi:docname="gutkato_x3.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
id="namedview4895"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="1.84375"
inkscape:cx="64"
inkscape:cy="64.271186"
inkscape:window-width="1232"
inkscape:window-height="750"
inkscape:window-x="48"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg5" /><title
id="title4279">Gutkato, x3</title><defs
id="defs2" /><g
id="layer1"><path
style="fill:#ffdb26;fill-opacity:1;stroke:#000000;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:normal;stop-color:#000000"
d="M 6.3460128,10.987509 C 6.0131876,8.1033126 6.9112569,5.0355095 7.1713329,3.7040818 c 1.6823697,0.883682 3.1509471,1.8173157 5.1540591,3.4426941 3.460025,-0.9271224 7.675181,-0.4344139 10.458981,0.611344 2.188665,-1.101117 4.320882,-1.7567683 7.249119,-1.9517024 0.321474,1.7913943 -0.0283,5.5961075 -1.06115,7.5149165 1.483302,5.222627 1.500916,12.296756 -0.04318,13.840869 C 24.518229,31.573194 5.6799495,31.273305 4.0639285,25.242152 3.064468,21.512066 4.2865251,13.752064 6.3460128,10.987509 Z"
id="path236" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#000000"
d="m 10.004075,18.856589 c -1.4238886,3.039424 2.342169,4.371724 4.594902,1.690642 3.202672,3.608669 6.496348,1.194297 5.575255,-1.100462"
id="path7824" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.889183,18.051143 4.87622,-0.734341"
id="path7889" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="m 22.899838,20.101719 4.684517,0.851137"
id="path7891" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 8.2565339,16.966549 5.9675926,15.922096"
id="path7893" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
d="M 7.7354506,18.743765 5.5452359,18.600473"
id="path7895" /><path
style="fill:none;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers fill stroke;stop-color:#000000"
d="m 10.077318,12.621947 2.752827,2.150768 -3.4625723,0.425155"
id="path981" /><path
style="fill:none;stroke:#000000;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers fill stroke;stop-color:#000000"
d="m 21.420585,13.952263 -3.239012,1.308662 3.211251,1.363109"
id="path983" /></g><metadata
id="metadata4277"><rdf:RDF><cc:Work
rdf:about=""><dc:title>Gutkato, x3</dc:title><dc:creator><cc:Agent><dc:title>Tirifto</dc:title></cc:Agent></dc:creator><dc:subject><rdf:Bag><rdf:li>gutkato</rdf:li><rdf:li>gutkatoj</rdf:li><rdf:li>federujo</rdf:li></rdf:Bag></dc:subject><cc:license
rdf:resource="http://artlibre.org/licence/lal" /><dc:description>Gutkato, destinita al uzo kiel glumarko aŭ propra bildosigno, ekzemple en Federujo aŭ aliaj retaj komunikiloj.</dc:description><dc:date>2024</dc:date></cc:Work><cc:License
rdf:about="http://artlibre.org/licence/lal"><cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" /></cc:License></rdf:RDF></metadata></svg>

After

Width:  |  Height:  |  Size: 5.1 KiB