Update
2
init.el
@@ -12,6 +12,8 @@
|
||||
(require 'init-completion)
|
||||
(require 'init-input)
|
||||
|
||||
;; (require 'init-meow)
|
||||
|
||||
(require 'init-edit)
|
||||
(require 'init-window)
|
||||
(require 'init-ui)
|
||||
|
||||
@@ -35,6 +35,7 @@
|
||||
(setq display-line-numbers-type 'relative)
|
||||
)
|
||||
(column-number-mode 1)
|
||||
(scroll-bar-mode -1)
|
||||
|
||||
(use-package subword
|
||||
:ensure nil
|
||||
|
||||
@@ -255,10 +255,10 @@
|
||||
(advice-add #'persistent-scratch-save :before #'corfu-quit)
|
||||
(add-to-list 'corfu-continue-commands #'corfu-move-to-minibuffer))
|
||||
|
||||
(use-package nerd-icons-corfu
|
||||
:init
|
||||
(with-eval-after-load 'corfu
|
||||
(add-to-list 'corfu-margin-formatters #'nerd-icons-corfu-formatter)))
|
||||
;; (use-package nerd-icons-corfu
|
||||
;; :init
|
||||
;; (with-eval-after-load 'corfu
|
||||
;; (add-to-list 'corfu-margin-formatters #'nerd-icons-corfu-formatter)))
|
||||
|
||||
(use-package wgrep
|
||||
:commands wgrep-change-to-wgrep-mode
|
||||
|
||||
@@ -8,18 +8,19 @@
|
||||
:config
|
||||
;; Always delete and copy recursively
|
||||
(setq dired-recursive-deletes 'always
|
||||
dired-recursive-copies 'always)
|
||||
dired-recursive-copies 'always
|
||||
dired-kill-when-opening-new-dired-buffer t)
|
||||
|
||||
;; Show directory first
|
||||
(setq dired-listing-switches "-alh --group-directories-first"
|
||||
dired-use-ls-dired t)
|
||||
|
||||
|
||||
;; Colorful dired
|
||||
(use-package diredfl
|
||||
:diminish
|
||||
:hook dired-mode
|
||||
:hook dirvish-directory-view-mode)
|
||||
|
||||
|
||||
|
||||
;; Extra Dired functionality
|
||||
(use-package dired-aux :ensure nil))
|
||||
|
||||
@@ -88,6 +88,12 @@
|
||||
:hook (elpaca-after-init . meow-global-mode)
|
||||
:config
|
||||
(meow-setup)
|
||||
(setq meow-replace-state-name-list
|
||||
'((normal . "<N>")
|
||||
(motion . "<M>")
|
||||
(keypad . "<K>")
|
||||
(insert . "<I>")
|
||||
(beacon . "<B>")))
|
||||
(setq meow-cursor-type-normal 'bar))
|
||||
|
||||
(provide 'init-meow)
|
||||
|
||||
@@ -7,12 +7,12 @@
|
||||
|
||||
(use-package org
|
||||
:defer
|
||||
:ensure `(org :repo "https://code.tecosaur.net/tec/org-mode.git/"
|
||||
:ensure (org :repo "https://code.tecosaur.net/tec/org-mode.git/"
|
||||
:branch "dev")
|
||||
:hook (org-mode . org-cdlatex-mode)
|
||||
:hook (org-mode . org-indent-mode)
|
||||
:hook (org-mode . visual-line-mode)
|
||||
|
||||
|
||||
:pretty-hydra
|
||||
;; See `org-structure-template-alist'
|
||||
((:color blue :quit-key ("q" "C-g"))
|
||||
@@ -91,7 +91,7 @@ the element after the #+HEADER: tag."
|
||||
(setq org-startup-indented t)
|
||||
(setq org-pretty-entities t
|
||||
org-pretty-entities-include-sub-superscripts nil)
|
||||
|
||||
|
||||
(setq org-default-note-file (expand-file-name "notes.org" org-directory)
|
||||
org-capture-templates
|
||||
'(("t" "Personal todo" entry
|
||||
@@ -103,10 +103,10 @@ the element after the #+HEADER: tag."
|
||||
("j" "Journal" entry
|
||||
(file+olp+datetree "diary.org")
|
||||
"* %U %?\n%i\n%a" :prepend t))
|
||||
|
||||
|
||||
org-todo-keywords
|
||||
'((sequence "TODO(t)" "IN-PROGRESS(i)" "|" "DONE(d)" "NO(n)")))
|
||||
|
||||
|
||||
(add-to-list 'org-src-block-faces '("latex" (:inherit default :extend t)))
|
||||
(add-hook 'org-after-refile-insert-hook
|
||||
(defun save-buffer-after-capture ()
|
||||
@@ -194,6 +194,7 @@ the element after the #+HEADER: tag."
|
||||
:config
|
||||
(plist-put org-latex-preview-appearance-options
|
||||
:page-width 0.8)
|
||||
|
||||
;; ;; Block C-n, C-p etc from opening up previews when using `org-latex-preview-mode'
|
||||
;; (setq org-latex-preview-mode-ignored-commands
|
||||
;; '(next-line previous-line mwheel-scroll
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
(use-package latex
|
||||
:ensure (auctex :pre-build (("./autogen.sh")
|
||||
("./configure" "--without-texmf-dir" "--with-lispdir=.")
|
||||
("./configure" "--without-texmf-dir" "--with-lispdir=.")
|
||||
("make")))
|
||||
:mode (("\\.tex\\'" . LaTeX-mode))
|
||||
:hook (LaTeX-mode . prettify-symbols-mode)
|
||||
@@ -11,11 +11,19 @@
|
||||
:bind (:map LaTeX-mode-map
|
||||
("C-S-e" . latex-math-from-calc))
|
||||
:custom
|
||||
(TeX-auto-save t)
|
||||
(TeX-parse-self t)
|
||||
(TeX-PDF-mode t)
|
||||
(TeX-DVI-via-PDFTeX t)
|
||||
(TeX-clean-confirm nil)
|
||||
(TeX-save-query nil)
|
||||
(TeX-source-correlate-mode t)
|
||||
(TeX-source-correlate-method 'synctex)
|
||||
(TeX-display-help t)
|
||||
(TeX-show-compilation nil)
|
||||
:config
|
||||
(setq-default TeX-command-default "LaTeXMk")
|
||||
(add-hook 'LaTeX-mode-hook (lambda ()
|
||||
(setq TeX-command-default "LaTeXMk")))
|
||||
;; Format math as a Latex string with Calc
|
||||
(add-hook 'LaTeX-mode-hook #'eglot-ensure)
|
||||
(defun latex-math-from-calc ()
|
||||
@@ -30,29 +38,41 @@
|
||||
calc-prefer-frac t
|
||||
calc-angle-mode rad)))))
|
||||
(t (let ((l (thing-at-point 'line)))
|
||||
(end-of-line 1) (kill-line 0)
|
||||
(end-of-line 1) (kill-line 0)
|
||||
(insert (calc-eval `(,l
|
||||
calc-language latex
|
||||
calc-prefer-frac t
|
||||
calc-angle-mode rad)))))))
|
||||
(setq TeX-view-program-selection '((output-pdf "PDF Tools")))
|
||||
;; (setq TeX-view-program-selection '((output-pdf "PDF Tools")))
|
||||
(add-hook 'TeX-after-compilation-finished-functions #'TeX-revert-document-buffer)
|
||||
(with-eval-after-load 'eglot
|
||||
(add-to-list 'eglot-server-programs '((LaTeX-mode latex-mode) "texlab")))
|
||||
)
|
||||
(add-to-list 'eglot-server-programs '((LaTeX-mode latex-mode) "texlab"))))
|
||||
|
||||
|
||||
(use-package cdlatex
|
||||
:diminish
|
||||
:ensure t
|
||||
:hook (LaTeX-mode . turn-on-cdlatex)
|
||||
:bind (:map cdlatex-mode-map
|
||||
("<tab>" . cdlatex-tab))
|
||||
;; :bind (:map cdlatex-mode-map
|
||||
;; ("<tab>" . cdlatex-tab))
|
||||
:config
|
||||
(setq cdlatex-math-symbol-alist '((?f ("\\varphi" "\\phi"))
|
||||
(?i ("\\iota"))
|
||||
))
|
||||
(setq cdlatex-math-modify-alist '((?f "\\mathbb" nil t nil nil)))
|
||||
(cdlatex-reset-mode))
|
||||
(defun tjh/cdlatex-yas-expand ()
|
||||
"Resolve the conflict between cdlatex and yasnippet. When this
|
||||
function returns true, the default `cdlatex-tab` will not be
|
||||
executed. The effect of function is to first try yasnippet
|
||||
expansion, then cdlatex expansion."
|
||||
(interactive)
|
||||
(if (or (bound-and-true-p yas-minor-mode)
|
||||
(bound-and-true-p yas-global-mode))
|
||||
(if (yas-expand)
|
||||
t
|
||||
nil)
|
||||
nil))
|
||||
(add-hook 'cdlatex-tab-hook 'tjh/cdlatex-yas-expand))
|
||||
|
||||
(use-package texpresso
|
||||
:defer nil
|
||||
|
||||
@@ -19,15 +19,15 @@
|
||||
(use-package solaire-mode
|
||||
:hook (elpaca-after-init . solaire-global-mode))
|
||||
|
||||
;; (use-package standard-themes :demand t)
|
||||
(use-package standard-themes :demand t)
|
||||
(use-package ef-themes :demand t)
|
||||
(use-package doric-themes
|
||||
:demand t
|
||||
:bind ("<f5>" . doric-load-random)
|
||||
:init
|
||||
(mapc #'disable-theme custom-enabled-themes)
|
||||
(defun doric-load-random ()
|
||||
(interactive)
|
||||
(mapc #'disable-theme custom-enabled-themes)
|
||||
(let* ((themes '(doric-fire
|
||||
doric-oak
|
||||
doric-jade
|
||||
@@ -72,14 +72,13 @@
|
||||
(use-package rainbow-mode
|
||||
:hook elpaca-after-init)
|
||||
|
||||
;; (use-package doom-modeline
|
||||
;; :hook (elpaca-after-ninit . doom-modeline-mode)
|
||||
;; :config
|
||||
;; (setq doom-modeline-support-imenu t
|
||||
;; doom-modeline-height 30
|
||||
;; doom-modeline-bar-width 8))
|
||||
;; (use-package minions
|
||||
;; :hook elpaca-after-init)
|
||||
(use-package doom-modeline
|
||||
:hook (elpaca-after-init . doom-modeline-mode)
|
||||
:config
|
||||
(setq doom-modeline-support-imenu t
|
||||
doom-modeline-height 30
|
||||
doom-modeline-buffer-file-name-style 'buffer-name
|
||||
doom-modeline-enable-word-count t))
|
||||
|
||||
(use-package hide-mode-line
|
||||
:autoload turn-off-hide-mode-line-mode
|
||||
@@ -108,20 +107,21 @@
|
||||
|
||||
(pcase system-type
|
||||
('darwin ; macOS
|
||||
(set-face-attribute 'default nil :font "Sarasa Term SC-20") ; 20 * 1.5
|
||||
(set-face-attribute 'variable-pitch nil :font "Bookerly-20" :weight 'light)
|
||||
(set-face-attribute 'fixed-pitch nil :font "Sarasa Term SC-20")
|
||||
|
||||
(set-face-attribute 'default nil :font "Sarasa Term SC-22") ; 20 * 1.5
|
||||
(set-face-attribute 'variable-pitch nil :font "Bookerly-22" :weight 'light)
|
||||
(set-face-attribute 'fixed-pitch nil :font "Sarasa Term SC-22")
|
||||
|
||||
(add-to-list 'default-frame-alist '(height . 53))
|
||||
(add-to-list 'default-frame-alist '(width . 120)))
|
||||
|
||||
|
||||
('gnu/linux ; Linux (including Debian)
|
||||
(set-face-attribute 'variable-pitch nil :font "Sarasa Term SC-14") ; 20 * 1.5
|
||||
(add-to-list 'default-frame-alist '(height . 40))
|
||||
(add-to-list 'default-frame-alist '(width . 90))))
|
||||
|
||||
;; (use-package mixed-pitch
|
||||
;; :hook org-mode)
|
||||
(use-package mixed-pitch
|
||||
:hook org-mode
|
||||
:hook LaTeX-mode)
|
||||
|
||||
(use-package diff-hl
|
||||
:init (global-diff-hl-mode))
|
||||
|
||||
@@ -17,24 +17,24 @@
|
||||
"*esh command on file*")))
|
||||
|
||||
(defun split-window-horizontally-instead ()
|
||||
"Kill other windows and split the current window is on the top half of the frame."
|
||||
"Kill other windows and split the current window horizontally."
|
||||
(interactive)
|
||||
(let* ((next-window (next-window))
|
||||
(other-buffer (and next-window (window-buffer next-window))))
|
||||
(delete-other-windows)
|
||||
(split-window-horizontally)
|
||||
(when other-buffer
|
||||
(set-window-buffer next-window other-buffer))))
|
||||
(set-window-buffer (next-window) other-buffer))))
|
||||
|
||||
(defun split-window-vertically-instead ()
|
||||
"Kill other windows and split the current window is on left half of the frame."
|
||||
"Kill other windows and split the current window vertically."
|
||||
(interactive)
|
||||
(let* ((next-window (next-window))
|
||||
(other-buffer (and next-window (window-buffer next-window))))
|
||||
(delete-other-windows)
|
||||
(split-window-vertically)
|
||||
(when other-buffer
|
||||
(set-window-buffer next-window other-buffer))))
|
||||
(set-window-buffer (next-window) other-buffer))))
|
||||
|
||||
(use-package ace-window
|
||||
:hook (emacs-startup . ace-window-display-mode)
|
||||
@@ -133,7 +133,7 @@
|
||||
"\\*vc-.*\\**"
|
||||
"\\*diff-hl\\**"
|
||||
"^\\*macro expansion\\**"
|
||||
|
||||
|
||||
"\\*Agenda Commands\\*" "\\*Org Select\\*" "\\*Capture\\*" "^CAPTURE-.*\\.org*"
|
||||
"\\*Gofmt Errors\\*$" "\\*Go Test\\*$" godoc-mode
|
||||
"\\*docker-.+\\*"
|
||||
@@ -146,7 +146,7 @@
|
||||
(display-buffer-reuse-window display-buffer-in-direction)
|
||||
(direction . right)
|
||||
(window-width . 0.5)))
|
||||
|
||||
|
||||
:config
|
||||
(with-no-warnings
|
||||
(defun my-popper-fit-window-height (win)
|
||||
|
||||
@@ -3,6 +3,8 @@
|
||||
|
||||
(use-package project)
|
||||
|
||||
(global-set-key (kbd "C-x C-b") #'ibuffer)
|
||||
|
||||
;; (use-package tab-bar
|
||||
;; :ensure nil
|
||||
;; :init
|
||||
@@ -14,8 +16,6 @@
|
||||
|
||||
;; (setq tab-bar-tab-hints t))
|
||||
|
||||
(global-set-key (kbd "C-x C-b") #'ibuffer)
|
||||
|
||||
;; (use-package tabspaces
|
||||
;; :functions tabspaces-mode
|
||||
;; :commands (tabspaces-switch-or-create-workspace
|
||||
@@ -39,7 +39,7 @@
|
||||
;; (tabspaces-session-auto-restore t)
|
||||
;; (tabspaces-keymap-prefix "C-c o")
|
||||
;; (tab-bar-new-tab-choice "default")
|
||||
|
||||
|
||||
;; (with-eval-after-load 'consult
|
||||
;; ;; hide full buffer list (still available with "b" prefix)
|
||||
;; (consult-customize consult--source-buffer :hidden nil :default nil)
|
||||
@@ -58,7 +58,7 @@
|
||||
|
||||
;; "Set workspace buffer list for consult-buffer.")
|
||||
;; (add-to-list 'consult-buffer-sources 'consult--source-workspace)))
|
||||
|
||||
|
||||
(use-package beframe
|
||||
:hook elpaca-after-init
|
||||
:bind (("C-x b" . beframe-switch-buffer)
|
||||
|
||||
5
snippets/emacs-lisp-mode/github
Normal file
@@ -0,0 +1,5 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: github
|
||||
# key: github
|
||||
# --
|
||||
($1 :type git :host github :repo "$2/${1:repo}")$0
|
||||
@@ -1,4 +1,4 @@
|
||||
# key: template
|
||||
# key: templatee
|
||||
# name: Basic template
|
||||
# group: skeleton
|
||||
# --
|
||||
|
||||
@@ -3,4 +3,5 @@
|
||||
# condition: (and (not (texmathp)) (quote auto))
|
||||
# group: math
|
||||
# --
|
||||
\[ `(save-excursion (previous-line)(make-string (current-indentation) ?\s))`$0 \]
|
||||
|
||||
\[ $0 \]
|
||||
|
||||
7
snippets/latex-mode/begin
Normal file
@@ -0,0 +1,7 @@
|
||||
# -*- mode: snippet -*-
|
||||
# key : beg
|
||||
# name : \begin{} ... \end{}
|
||||
# --
|
||||
\begin{${1:$$(yas-choose-value (mapcar 'car LaTeX-environment-list))}}
|
||||
$0
|
||||
\end{$1}
|
||||
7
snippets/latex-mode/cdot
Normal file
@@ -0,0 +1,7 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: cdot
|
||||
# key: c.
|
||||
# group: math
|
||||
# condition: (and (texmathp) 'auto)
|
||||
# --
|
||||
\\cdot
|
||||
7
snippets/latex-mode/cdots
Normal file
@@ -0,0 +1,7 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: cdots
|
||||
# key: \cdot.
|
||||
# group: math
|
||||
# condition: (and (texmathp) 'auto)
|
||||
# --
|
||||
\\cdots
|
||||
7
snippets/latex-mode/cong
Normal file
@@ -0,0 +1,7 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: cong
|
||||
# key: ~=
|
||||
# condition: (and (texmathp) 'auto)
|
||||
# group: math
|
||||
# --
|
||||
\\cong
|
||||
7
snippets/latex-mode/defined as
Normal file
@@ -0,0 +1,7 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: defined as
|
||||
# key: :=
|
||||
# group: math
|
||||
# condition: (and (texmathp) 'auto)
|
||||
# --
|
||||
\coloneqq
|
||||
7
snippets/latex-mode/deg
Normal file
@@ -0,0 +1,7 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: deg
|
||||
# key: deg
|
||||
# group: math
|
||||
# condition: (and (texmathp) 'auto)
|
||||
# --
|
||||
\\deg
|
||||
6
snippets/latex-mode/iff
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: iff
|
||||
# key: iff
|
||||
# group: text
|
||||
# --
|
||||
if and only if
|
||||
7
snippets/latex-mode/infinity
Normal file
@@ -0,0 +1,7 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: infinity
|
||||
# key: oo
|
||||
# group: math
|
||||
# condition: (and (texmathp) 'auto)
|
||||
# --
|
||||
\infty
|
||||
@@ -1,5 +1,5 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: arctan
|
||||
# name: ker
|
||||
# key: ker
|
||||
# group: math
|
||||
# condition: (and (texmathp) 'auto)
|
||||
|
||||
7
snippets/latex-mode/lrangle
Normal file
@@ -0,0 +1,7 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: \left\langle ... \right\rangle
|
||||
# key: lra
|
||||
# condition: (and (texmathp) 'auto)
|
||||
# group: math
|
||||
# --
|
||||
\\left\\langle $1 \\right\\rangle$0
|
||||
7
snippets/latex-mode/mapsto
Normal file
@@ -0,0 +1,7 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: mapsto
|
||||
# key: mto
|
||||
# group: math
|
||||
# condition: (and (texmathp) 'auto)
|
||||
# --
|
||||
\\mapsto
|
||||
@@ -1,6 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: not equal
|
||||
# key: neq
|
||||
# key: !=
|
||||
# condition: (and (texmathp) 'auto)
|
||||
# group: math
|
||||
# --
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: set
|
||||
# key: set
|
||||
# key: sett
|
||||
# condition: (and (texmathp) 'auto)
|
||||
# group: math
|
||||
# --
|
||||
|
||||
7
snippets/latex-mode/setminus
Normal file
@@ -0,0 +1,7 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: setminus
|
||||
# key: set-
|
||||
# group: math
|
||||
# condition: (and (texmathp) 'auto)
|
||||
# --
|
||||
\setminus
|
||||
@@ -1,6 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: star
|
||||
# key: star
|
||||
# key: **
|
||||
# group: math
|
||||
# condition: (and (texmathp) 'auto)
|
||||
# --
|
||||
|
||||
7
snippets/latex-mode/subseteq
Normal file
@@ -0,0 +1,7 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: subseteq
|
||||
# key: \subset=
|
||||
# group: math
|
||||
# condition: (and (texmathp) 'auto)
|
||||
# --
|
||||
\subseteq
|
||||
@@ -3,5 +3,6 @@
|
||||
# key: sum
|
||||
# group: math
|
||||
# name: \sum_{n}^{}
|
||||
# condition: (and (texmathp) 'auto)
|
||||
# --
|
||||
\sum_{$1}^{$2}$0
|
||||
24
snippets/latex-mode/template
Normal file
@@ -0,0 +1,24 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: template
|
||||
# key: template
|
||||
# --
|
||||
\documentclass[12pt]{/Users/zelongk/Documents/latex/elegantbook}
|
||||
|
||||
\title{$1}
|
||||
|
||||
\author{`user-full-name`}
|
||||
\institute{Whichever-you-like university}
|
||||
|
||||
\date{\today}
|
||||
|
||||
\begin{document}
|
||||
\maketitle
|
||||
% logo
|
||||
% \centerline{\includegraphics[width=0.2\textwidth]{logo-blue}}
|
||||
|
||||
\newpage
|
||||
\tableofcontents
|
||||
|
||||
$0
|
||||
|
||||
\end{document}
|
||||
19
xenops/cache/031f5c5ca4f89f6579617ee52f3b2944207a71e9.svg
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!-- This file was generated by dvisvgm 3.4.3 -->
|
||||
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='180.067625pt' height='644.11394pt' viewBox='84.702366 61.391842 180.067625 644.11394'>
|
||||
<defs>
|
||||
<path id='g1-49' d='M2.929016-6.37609C2.929016-6.615193 2.929016-6.635118 2.699875-6.635118C2.082192-5.997509 1.205479-5.997509 .886675-5.997509V-5.688667C1.085928-5.688667 1.673724-5.688667 2.191781-5.947696V-.787049C2.191781-.428394 2.161893-.308842 1.265255-.308842H.946451V0C1.295143-.029888 2.161893-.029888 2.560399-.029888S3.825654-.029888 4.174346 0V-.308842H3.855542C2.958904-.308842 2.929016-.418431 2.929016-.787049V-6.37609Z'/>
|
||||
<path id='g0-97' d='M3.716065-3.765878C3.536737-4.134496 3.247821-4.403487 2.799502-4.403487C1.633873-4.403487 .398506-2.938979 .398506-1.484433C.398506-.547945 .946451 .109589 1.723537 .109589C1.92279 .109589 2.420922 .069738 3.01868-.637609C3.098381-.219178 3.447073 .109589 3.92528 .109589C4.273973 .109589 4.503113-.119552 4.662516-.438356C4.83188-.797011 4.961395-1.404732 4.961395-1.424658C4.961395-1.524284 4.871731-1.524284 4.841843-1.524284C4.742217-1.524284 4.732254-1.484433 4.702366-1.344956C4.533001-.697385 4.353674-.109589 3.945205-.109589C3.676214-.109589 3.646326-.368618 3.646326-.56787C3.646326-.787049 3.666252-.86675 3.775841-1.305106C3.88543-1.723537 3.905355-1.823163 3.995019-2.201743L4.353674-3.596513C4.423412-3.875467 4.423412-3.895392 4.423412-3.935243C4.423412-4.104608 4.303861-4.204234 4.134496-4.204234C3.895392-4.204234 3.745953-3.985056 3.716065-3.765878ZM3.068493-1.185554C3.01868-1.006227 3.01868-.986301 2.86924-.816936C2.430884-.268991 2.022416-.109589 1.743462-.109589C1.24533-.109589 1.105853-.657534 1.105853-1.046077C1.105853-1.544209 1.424658-2.769614 1.653798-3.227895C1.96264-3.815691 2.410959-4.184309 2.809465-4.184309C3.457036-4.184309 3.596513-3.367372 3.596513-3.307597S3.576588-3.188045 3.566625-3.138232L3.068493-1.185554Z'/>
|
||||
<path id='g0-100' d='M5.140722-6.804483C5.140722-6.814446 5.140722-6.914072 5.011208-6.914072C4.861768-6.914072 3.915318-6.824408 3.745953-6.804483C3.666252-6.794521 3.606476-6.744707 3.606476-6.615193C3.606476-6.495641 3.696139-6.495641 3.845579-6.495641C4.323786-6.495641 4.343711-6.425903 4.343711-6.326276L4.313823-6.127024L3.716065-3.765878C3.536737-4.134496 3.247821-4.403487 2.799502-4.403487C1.633873-4.403487 .398506-2.938979 .398506-1.484433C.398506-.547945 .946451 .109589 1.723537 .109589C1.92279 .109589 2.420922 .069738 3.01868-.637609C3.098381-.219178 3.447073 .109589 3.92528 .109589C4.273973 .109589 4.503113-.119552 4.662516-.438356C4.83188-.797011 4.961395-1.404732 4.961395-1.424658C4.961395-1.524284 4.871731-1.524284 4.841843-1.524284C4.742217-1.524284 4.732254-1.484433 4.702366-1.344956C4.533001-.697385 4.353674-.109589 3.945205-.109589C3.676214-.109589 3.646326-.368618 3.646326-.56787C3.646326-.806974 3.666252-.876712 3.706102-1.046077L5.140722-6.804483ZM3.068493-1.185554C3.01868-1.006227 3.01868-.986301 2.86924-.816936C2.430884-.268991 2.022416-.109589 1.743462-.109589C1.24533-.109589 1.105853-.657534 1.105853-1.046077C1.105853-1.544209 1.424658-2.769614 1.653798-3.227895C1.96264-3.815691 2.410959-4.184309 2.809465-4.184309C3.457036-4.184309 3.596513-3.367372 3.596513-3.307597S3.576588-3.188045 3.566625-3.138232L3.068493-1.185554Z'/>
|
||||
<path id='g0-108' d='M2.570361-6.804483C2.570361-6.814446 2.570361-6.914072 2.440847-6.914072C2.211706-6.914072 1.484433-6.834371 1.225405-6.814446C1.145704-6.804483 1.036115-6.794521 1.036115-6.60523C1.036115-6.495641 1.135741-6.495641 1.285181-6.495641C1.763387-6.495641 1.77335-6.405978 1.77335-6.326276L1.743462-6.127024L.488169-1.145704C.458281-1.036115 .438356-.966376 .438356-.806974C.438356-.239103 .876712 .109589 1.344956 .109589C1.673724 .109589 1.92279-.089664 2.092154-.448319C2.271482-.826899 2.391034-1.404732 2.391034-1.424658C2.391034-1.524284 2.30137-1.524284 2.271482-1.524284C2.171856-1.524284 2.161893-1.484433 2.132005-1.344956C1.96264-.697385 1.77335-.109589 1.374844-.109589C1.075965-.109589 1.075965-.428394 1.075965-.56787C1.075965-.806974 1.085928-.856787 1.135741-1.046077L2.570361-6.804483Z'/>
|
||||
<path id='g0-115' d='M3.895392-3.726027C3.616438-3.716065 3.417186-3.496887 3.417186-3.277709C3.417186-3.138232 3.506849-2.988792 3.726027-2.988792S4.184309-3.158157 4.184309-3.5467C4.184309-3.995019 3.755915-4.403487 2.998755-4.403487C1.683686-4.403487 1.315068-3.387298 1.315068-2.948941C1.315068-2.171856 2.052304-2.022416 2.34122-1.96264C2.859278-1.863014 3.377335-1.753425 3.377335-1.205479C3.377335-.946451 3.148194-.109589 1.952677-.109589C1.8132-.109589 1.046077-.109589 .816936-.637609C1.195517-.587796 1.444583-.886675 1.444583-1.165629C1.444583-1.39477 1.285181-1.514321 1.075965-1.514321C.816936-1.514321 .518057-1.305106 .518057-.856787C.518057-.288917 1.085928 .109589 1.942715 .109589C3.556663 .109589 3.945205-1.09589 3.945205-1.544209C3.945205-1.902864 3.755915-2.15193 3.636364-2.271482C3.367372-2.550436 3.078456-2.600249 2.6401-2.689913C2.281445-2.769614 1.882939-2.839352 1.882939-3.287671C1.882939-3.576588 2.122042-4.184309 2.998755-4.184309C3.247821-4.184309 3.745953-4.11457 3.895392-3.726027Z'/>
|
||||
</defs>
|
||||
<g id='page1' transform='matrix(1.117143 0 0 1.117143 0 0)'>
|
||||
<rect x='76.712329' y='55.84613' width='159.402261' height='574.788988' fill='#fff'/>
|
||||
<use x='76.712329' y='62.764633' xlink:href='#g0-97'/>
|
||||
<use x='81.978483' y='62.764633' xlink:href='#g0-115'/>
|
||||
<use x='86.64847' y='62.764633' xlink:href='#g0-100'/>
|
||||
<use x='91.833903' y='62.764633' xlink:href='#g0-108'/>
|
||||
<use x='231.13325' y='630.635118' xlink:href='#g1-49'/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.5 KiB |
19
xenops/cache/0a6ff416ae1b0516c79cddbfeedd9438f485b226.svg
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!-- This file was generated by dvisvgm 3.4.3 -->
|
||||
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='180.067625pt' height='644.11394pt' viewBox='84.702366 61.391842 180.067625 644.11394'>
|
||||
<defs>
|
||||
<path id='g1-49' d='M2.929016-6.37609C2.929016-6.615193 2.929016-6.635118 2.699875-6.635118C2.082192-5.997509 1.205479-5.997509 .886675-5.997509V-5.688667C1.085928-5.688667 1.673724-5.688667 2.191781-5.947696V-.787049C2.191781-.428394 2.161893-.308842 1.265255-.308842H.946451V0C1.295143-.029888 2.161893-.029888 2.560399-.029888S3.825654-.029888 4.174346 0V-.308842H3.855542C2.958904-.308842 2.929016-.418431 2.929016-.787049V-6.37609Z'/>
|
||||
<path id='g0-97' d='M3.716065-3.765878C3.536737-4.134496 3.247821-4.403487 2.799502-4.403487C1.633873-4.403487 .398506-2.938979 .398506-1.484433C.398506-.547945 .946451 .109589 1.723537 .109589C1.92279 .109589 2.420922 .069738 3.01868-.637609C3.098381-.219178 3.447073 .109589 3.92528 .109589C4.273973 .109589 4.503113-.119552 4.662516-.438356C4.83188-.797011 4.961395-1.404732 4.961395-1.424658C4.961395-1.524284 4.871731-1.524284 4.841843-1.524284C4.742217-1.524284 4.732254-1.484433 4.702366-1.344956C4.533001-.697385 4.353674-.109589 3.945205-.109589C3.676214-.109589 3.646326-.368618 3.646326-.56787C3.646326-.787049 3.666252-.86675 3.775841-1.305106C3.88543-1.723537 3.905355-1.823163 3.995019-2.201743L4.353674-3.596513C4.423412-3.875467 4.423412-3.895392 4.423412-3.935243C4.423412-4.104608 4.303861-4.204234 4.134496-4.204234C3.895392-4.204234 3.745953-3.985056 3.716065-3.765878ZM3.068493-1.185554C3.01868-1.006227 3.01868-.986301 2.86924-.816936C2.430884-.268991 2.022416-.109589 1.743462-.109589C1.24533-.109589 1.105853-.657534 1.105853-1.046077C1.105853-1.544209 1.424658-2.769614 1.653798-3.227895C1.96264-3.815691 2.410959-4.184309 2.809465-4.184309C3.457036-4.184309 3.596513-3.367372 3.596513-3.307597S3.576588-3.188045 3.566625-3.138232L3.068493-1.185554Z'/>
|
||||
<path id='g0-100' d='M5.140722-6.804483C5.140722-6.814446 5.140722-6.914072 5.011208-6.914072C4.861768-6.914072 3.915318-6.824408 3.745953-6.804483C3.666252-6.794521 3.606476-6.744707 3.606476-6.615193C3.606476-6.495641 3.696139-6.495641 3.845579-6.495641C4.323786-6.495641 4.343711-6.425903 4.343711-6.326276L4.313823-6.127024L3.716065-3.765878C3.536737-4.134496 3.247821-4.403487 2.799502-4.403487C1.633873-4.403487 .398506-2.938979 .398506-1.484433C.398506-.547945 .946451 .109589 1.723537 .109589C1.92279 .109589 2.420922 .069738 3.01868-.637609C3.098381-.219178 3.447073 .109589 3.92528 .109589C4.273973 .109589 4.503113-.119552 4.662516-.438356C4.83188-.797011 4.961395-1.404732 4.961395-1.424658C4.961395-1.524284 4.871731-1.524284 4.841843-1.524284C4.742217-1.524284 4.732254-1.484433 4.702366-1.344956C4.533001-.697385 4.353674-.109589 3.945205-.109589C3.676214-.109589 3.646326-.368618 3.646326-.56787C3.646326-.806974 3.666252-.876712 3.706102-1.046077L5.140722-6.804483ZM3.068493-1.185554C3.01868-1.006227 3.01868-.986301 2.86924-.816936C2.430884-.268991 2.022416-.109589 1.743462-.109589C1.24533-.109589 1.105853-.657534 1.105853-1.046077C1.105853-1.544209 1.424658-2.769614 1.653798-3.227895C1.96264-3.815691 2.410959-4.184309 2.809465-4.184309C3.457036-4.184309 3.596513-3.367372 3.596513-3.307597S3.576588-3.188045 3.566625-3.138232L3.068493-1.185554Z'/>
|
||||
<path id='g0-108' d='M2.570361-6.804483C2.570361-6.814446 2.570361-6.914072 2.440847-6.914072C2.211706-6.914072 1.484433-6.834371 1.225405-6.814446C1.145704-6.804483 1.036115-6.794521 1.036115-6.60523C1.036115-6.495641 1.135741-6.495641 1.285181-6.495641C1.763387-6.495641 1.77335-6.405978 1.77335-6.326276L1.743462-6.127024L.488169-1.145704C.458281-1.036115 .438356-.966376 .438356-.806974C.438356-.239103 .876712 .109589 1.344956 .109589C1.673724 .109589 1.92279-.089664 2.092154-.448319C2.271482-.826899 2.391034-1.404732 2.391034-1.424658C2.391034-1.524284 2.30137-1.524284 2.271482-1.524284C2.171856-1.524284 2.161893-1.484433 2.132005-1.344956C1.96264-.697385 1.77335-.109589 1.374844-.109589C1.075965-.109589 1.075965-.428394 1.075965-.56787C1.075965-.806974 1.085928-.856787 1.135741-1.046077L2.570361-6.804483Z'/>
|
||||
<path id='g0-115' d='M3.895392-3.726027C3.616438-3.716065 3.417186-3.496887 3.417186-3.277709C3.417186-3.138232 3.506849-2.988792 3.726027-2.988792S4.184309-3.158157 4.184309-3.5467C4.184309-3.995019 3.755915-4.403487 2.998755-4.403487C1.683686-4.403487 1.315068-3.387298 1.315068-2.948941C1.315068-2.171856 2.052304-2.022416 2.34122-1.96264C2.859278-1.863014 3.377335-1.753425 3.377335-1.205479C3.377335-.946451 3.148194-.109589 1.952677-.109589C1.8132-.109589 1.046077-.109589 .816936-.637609C1.195517-.587796 1.444583-.886675 1.444583-1.165629C1.444583-1.39477 1.285181-1.514321 1.075965-1.514321C.816936-1.514321 .518057-1.305106 .518057-.856787C.518057-.288917 1.085928 .109589 1.942715 .109589C3.556663 .109589 3.945205-1.09589 3.945205-1.544209C3.945205-1.902864 3.755915-2.15193 3.636364-2.271482C3.367372-2.550436 3.078456-2.600249 2.6401-2.689913C2.281445-2.769614 1.882939-2.839352 1.882939-3.287671C1.882939-3.576588 2.122042-4.184309 2.998755-4.184309C3.247821-4.184309 3.745953-4.11457 3.895392-3.726027Z'/>
|
||||
</defs>
|
||||
<g id='page1' transform='matrix(1.117143 0 0 1.117143 0 0)'>
|
||||
<rect x='76.712329' y='55.84613' width='159.402261' height='574.788988' fill='#fff'/>
|
||||
<use x='76.712329' y='62.764633' xlink:href='#g0-97'/>
|
||||
<use x='81.978483' y='62.764633' xlink:href='#g0-115'/>
|
||||
<use x='86.64847' y='62.764633' xlink:href='#g0-108'/>
|
||||
<use x='89.817164' y='62.764633' xlink:href='#g0-100'/>
|
||||
<use x='231.13325' y='630.635118' xlink:href='#g1-49'/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.5 KiB |
20
xenops/cache/1a383807ec6e4760104b5e38e09b528bc5a840fe.svg
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!-- This file was generated by dvisvgm 3.4.3 -->
|
||||
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='180.067625pt' height='644.732254pt' viewBox='84.702366 60.773528 180.067625 644.732254'>
|
||||
<defs>
|
||||
<path id='g2-49' d='M2.929016-6.37609C2.929016-6.615193 2.929016-6.635118 2.699875-6.635118C2.082192-5.997509 1.205479-5.997509 .886675-5.997509V-5.688667C1.085928-5.688667 1.673724-5.688667 2.191781-5.947696V-.787049C2.191781-.428394 2.161893-.308842 1.265255-.308842H.946451V0C1.295143-.029888 2.161893-.029888 2.560399-.029888S3.825654-.029888 4.174346 0V-.308842H3.855542C2.958904-.308842 2.929016-.418431 2.929016-.787049V-6.37609Z'/>
|
||||
<path id='g1-97' d='M3.716065-3.765878C3.536737-4.134496 3.247821-4.403487 2.799502-4.403487C1.633873-4.403487 .398506-2.938979 .398506-1.484433C.398506-.547945 .946451 .109589 1.723537 .109589C1.92279 .109589 2.420922 .069738 3.01868-.637609C3.098381-.219178 3.447073 .109589 3.92528 .109589C4.273973 .109589 4.503113-.119552 4.662516-.438356C4.83188-.797011 4.961395-1.404732 4.961395-1.424658C4.961395-1.524284 4.871731-1.524284 4.841843-1.524284C4.742217-1.524284 4.732254-1.484433 4.702366-1.344956C4.533001-.697385 4.353674-.109589 3.945205-.109589C3.676214-.109589 3.646326-.368618 3.646326-.56787C3.646326-.787049 3.666252-.86675 3.775841-1.305106C3.88543-1.723537 3.905355-1.823163 3.995019-2.201743L4.353674-3.596513C4.423412-3.875467 4.423412-3.895392 4.423412-3.935243C4.423412-4.104608 4.303861-4.204234 4.134496-4.204234C3.895392-4.204234 3.745953-3.985056 3.716065-3.765878ZM3.068493-1.185554C3.01868-1.006227 3.01868-.986301 2.86924-.816936C2.430884-.268991 2.022416-.109589 1.743462-.109589C1.24533-.109589 1.105853-.657534 1.105853-1.046077C1.105853-1.544209 1.424658-2.769614 1.653798-3.227895C1.96264-3.815691 2.410959-4.184309 2.809465-4.184309C3.457036-4.184309 3.596513-3.367372 3.596513-3.307597S3.576588-3.188045 3.566625-3.138232L3.068493-1.185554Z'/>
|
||||
<path id='g0-102' d='M2.819427-6.146949C2.819427-6.545455 3.078456-7.183064 4.164384-7.252802C4.214197-7.262765 4.254047-7.302615 4.254047-7.362391C4.254047-7.47198 4.174346-7.47198 4.064757-7.47198C3.068493-7.47198 2.161893-6.963885 2.15193-6.22665V-3.955168C2.15193-3.566625 2.15193-3.247821 1.753425-2.919054C1.404732-2.630137 1.026152-2.610212 .806974-2.600249C.757161-2.590286 .71731-2.550436 .71731-2.49066C.71731-2.391034 .777086-2.391034 .876712-2.381071C1.534247-2.34122 2.012453-1.982565 2.122042-1.494396C2.15193-1.384807 2.15193-1.364882 2.15193-1.006227V.966376C2.15193 1.384807 2.15193 1.703611 2.630137 2.082192C3.01868 2.381071 3.676214 2.49066 4.064757 2.49066C4.174346 2.49066 4.254047 2.49066 4.254047 2.381071C4.254047 2.281445 4.194271 2.281445 4.094645 2.271482C3.466999 2.231631 2.978829 1.912827 2.849315 1.404732C2.819427 1.315068 2.819427 1.295143 2.819427 .936488V-1.155666C2.819427-1.613948 2.739726-1.783313 2.420922-2.102117C2.211706-2.311333 1.92279-2.410959 1.643836-2.49066C2.460772-2.719801 2.819427-3.178082 2.819427-3.755915V-6.146949Z'/>
|
||||
<path id='g0-103' d='M2.15193 1.165629C2.15193 1.564134 1.892902 2.201743 .806974 2.271482C.757161 2.281445 .71731 2.321295 .71731 2.381071C.71731 2.49066 .826899 2.49066 .916563 2.49066C1.882939 2.49066 2.809465 2.002491 2.819427 1.24533V-1.026152C2.819427-1.414695 2.819427-1.733499 3.217933-2.062267C3.566625-2.351183 3.945205-2.371108 4.164384-2.381071C4.214197-2.391034 4.254047-2.430884 4.254047-2.49066C4.254047-2.590286 4.194271-2.590286 4.094645-2.600249C3.437111-2.6401 2.958904-2.998755 2.849315-3.486924C2.819427-3.596513 2.819427-3.616438 2.819427-3.975093V-5.947696C2.819427-6.366127 2.819427-6.684932 2.34122-7.063512C1.942715-7.372354 1.255293-7.47198 .916563-7.47198C.826899-7.47198 .71731-7.47198 .71731-7.362391C.71731-7.262765 .777086-7.262765 .876712-7.252802C1.504359-7.212951 1.992528-6.894147 2.122042-6.386052C2.15193-6.296389 2.15193-6.276463 2.15193-5.917808V-3.825654C2.15193-3.367372 2.231631-3.198007 2.550436-2.879203C2.759651-2.669988 3.048568-2.570361 3.327522-2.49066C2.510585-2.261519 2.15193-1.803238 2.15193-1.225405V1.165629Z'/>
|
||||
</defs>
|
||||
<g id='page1' transform='matrix(1.117143 0 0 1.117143 0 0)'>
|
||||
<rect x='76.712329' y='55.292653' width='159.402261' height='575.342466' fill='#fff'/>
|
||||
<g fill='#006000'>
|
||||
<use x='76.712329' y='62.764633' xlink:href='#g0-102'/>
|
||||
<use x='81.693664' y='62.764633' xlink:href='#g1-97'/>
|
||||
<use x='86.959818' y='62.764633' xlink:href='#g1-97'/>
|
||||
<use x='92.225972' y='62.764633' xlink:href='#g0-103'/>
|
||||
</g>
|
||||
<use x='231.13325' y='630.635118' xlink:href='#g2-49'/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.5 KiB |
20
xenops/cache/28d6ecfa313c69fd5e9f4bb3a066d3593b0435de.svg
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!-- This file was generated by dvisvgm 3.4.3 -->
|
||||
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='180.067625pt' height='643.230635pt' viewBox='84.702366 62.275147 180.067625 643.230635'>
|
||||
<defs>
|
||||
<path id='g1-49' d='M2.929016-6.37609C2.929016-6.615193 2.929016-6.635118 2.699875-6.635118C2.082192-5.997509 1.205479-5.997509 .886675-5.997509V-5.688667C1.085928-5.688667 1.673724-5.688667 2.191781-5.947696V-.787049C2.191781-.428394 2.161893-.308842 1.265255-.308842H.946451V0C1.295143-.029888 2.161893-.029888 2.560399-.029888S3.825654-.029888 4.174346 0V-.308842H3.855542C2.958904-.308842 2.929016-.418431 2.929016-.787049V-6.37609Z'/>
|
||||
<path id='g0-101' d='M1.863014-2.30137C2.15193-2.30137 2.889166-2.321295 3.387298-2.530511C4.084682-2.82939 4.134496-3.417186 4.134496-3.556663C4.134496-3.995019 3.755915-4.403487 3.068493-4.403487C1.96264-4.403487 .458281-3.437111 .458281-1.693649C.458281-.67746 1.046077 .109589 2.022416 .109589C3.447073 .109589 4.283935-.946451 4.283935-1.066002C4.283935-1.125778 4.224159-1.195517 4.164384-1.195517C4.11457-1.195517 4.094645-1.175592 4.034869-1.09589C3.247821-.109589 2.161893-.109589 2.042341-.109589C1.265255-.109589 1.175592-.946451 1.175592-1.265255C1.175592-1.384807 1.185554-1.693649 1.334994-2.30137H1.863014ZM1.39477-2.520548C1.783313-4.034869 2.809465-4.184309 3.068493-4.184309C3.536737-4.184309 3.805729-3.895392 3.805729-3.556663C3.805729-2.520548 2.211706-2.520548 1.803238-2.520548H1.39477Z'/>
|
||||
<path id='g0-115' d='M3.895392-3.726027C3.616438-3.716065 3.417186-3.496887 3.417186-3.277709C3.417186-3.138232 3.506849-2.988792 3.726027-2.988792S4.184309-3.158157 4.184309-3.5467C4.184309-3.995019 3.755915-4.403487 2.998755-4.403487C1.683686-4.403487 1.315068-3.387298 1.315068-2.948941C1.315068-2.171856 2.052304-2.022416 2.34122-1.96264C2.859278-1.863014 3.377335-1.753425 3.377335-1.205479C3.377335-.946451 3.148194-.109589 1.952677-.109589C1.8132-.109589 1.046077-.109589 .816936-.637609C1.195517-.587796 1.444583-.886675 1.444583-1.165629C1.444583-1.39477 1.285181-1.514321 1.075965-1.514321C.816936-1.514321 .518057-1.305106 .518057-.856787C.518057-.288917 1.085928 .109589 1.942715 .109589C3.556663 .109589 3.945205-1.09589 3.945205-1.544209C3.945205-1.902864 3.755915-2.15193 3.636364-2.271482C3.367372-2.550436 3.078456-2.600249 2.6401-2.689913C2.281445-2.769614 1.882939-2.839352 1.882939-3.287671C1.882939-3.576588 2.122042-4.184309 2.998755-4.184309C3.247821-4.184309 3.745953-4.11457 3.895392-3.726027Z'/>
|
||||
<path id='g0-116' d='M2.052304-3.985056H2.988792C3.188045-3.985056 3.287671-3.985056 3.287671-4.184309C3.287671-4.293898 3.188045-4.293898 3.008717-4.293898H2.132005C2.49066-5.708593 2.540473-5.907846 2.540473-5.967621C2.540473-6.136986 2.420922-6.236613 2.251557-6.236613C2.221669-6.236613 1.942715-6.22665 1.853051-5.877958L1.464508-4.293898H.52802C.328767-4.293898 .229141-4.293898 .229141-4.104608C.229141-3.985056 .308842-3.985056 .508095-3.985056H1.384807C.667497-1.155666 .627646-.986301 .627646-.806974C.627646-.268991 1.006227 .109589 1.544209 .109589C2.560399 .109589 3.128269-1.344956 3.128269-1.424658C3.128269-1.524284 3.048568-1.524284 3.008717-1.524284C2.919054-1.524284 2.909091-1.494396 2.859278-1.384807C2.430884-.348692 1.902864-.109589 1.564134-.109589C1.354919-.109589 1.255293-.239103 1.255293-.56787C1.255293-.806974 1.275218-.876712 1.315068-1.046077L2.052304-3.985056Z'/>
|
||||
</defs>
|
||||
<g id='page1' transform='matrix(1.117143 0 0 1.117143 0 0)'>
|
||||
<rect x='76.712329' y='56.636813' width='159.402261' height='573.998305' fill='#fff'/>
|
||||
<g fill='#106870'>
|
||||
<use x='76.712329' y='62.764633' xlink:href='#g0-116'/>
|
||||
<use x='80.309964' y='62.764633' xlink:href='#g0-101'/>
|
||||
<use x='84.948835' y='62.764633' xlink:href='#g0-115'/>
|
||||
<use x='89.618823' y='62.764633' xlink:href='#g0-116'/>
|
||||
</g>
|
||||
<use x='231.13325' y='630.635118' xlink:href='#g1-49'/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
21
xenops/cache/2ad6d7c683560465bb34f85228cf9eec682bee7c.svg
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!-- This file was generated by dvisvgm 3.4.3 -->
|
||||
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='180.067625pt' height='644.11394pt' viewBox='84.702366 61.391842 180.067625 644.11394'>
|
||||
<defs>
|
||||
<path id='g1-49' d='M2.929016-6.37609C2.929016-6.615193 2.929016-6.635118 2.699875-6.635118C2.082192-5.997509 1.205479-5.997509 .886675-5.997509V-5.688667C1.085928-5.688667 1.673724-5.688667 2.191781-5.947696V-.787049C2.191781-.428394 2.161893-.308842 1.265255-.308842H.946451V0C1.295143-.029888 2.161893-.029888 2.560399-.029888S3.825654-.029888 4.174346 0V-.308842H3.855542C2.958904-.308842 2.929016-.418431 2.929016-.787049V-6.37609Z'/>
|
||||
<path id='g0-97' d='M3.716065-3.765878C3.536737-4.134496 3.247821-4.403487 2.799502-4.403487C1.633873-4.403487 .398506-2.938979 .398506-1.484433C.398506-.547945 .946451 .109589 1.723537 .109589C1.92279 .109589 2.420922 .069738 3.01868-.637609C3.098381-.219178 3.447073 .109589 3.92528 .109589C4.273973 .109589 4.503113-.119552 4.662516-.438356C4.83188-.797011 4.961395-1.404732 4.961395-1.424658C4.961395-1.524284 4.871731-1.524284 4.841843-1.524284C4.742217-1.524284 4.732254-1.484433 4.702366-1.344956C4.533001-.697385 4.353674-.109589 3.945205-.109589C3.676214-.109589 3.646326-.368618 3.646326-.56787C3.646326-.787049 3.666252-.86675 3.775841-1.305106C3.88543-1.723537 3.905355-1.823163 3.995019-2.201743L4.353674-3.596513C4.423412-3.875467 4.423412-3.895392 4.423412-3.935243C4.423412-4.104608 4.303861-4.204234 4.134496-4.204234C3.895392-4.204234 3.745953-3.985056 3.716065-3.765878ZM3.068493-1.185554C3.01868-1.006227 3.01868-.986301 2.86924-.816936C2.430884-.268991 2.022416-.109589 1.743462-.109589C1.24533-.109589 1.105853-.657534 1.105853-1.046077C1.105853-1.544209 1.424658-2.769614 1.653798-3.227895C1.96264-3.815691 2.410959-4.184309 2.809465-4.184309C3.457036-4.184309 3.596513-3.367372 3.596513-3.307597S3.576588-3.188045 3.566625-3.138232L3.068493-1.185554Z'/>
|
||||
<path id='g0-100' d='M5.140722-6.804483C5.140722-6.814446 5.140722-6.914072 5.011208-6.914072C4.861768-6.914072 3.915318-6.824408 3.745953-6.804483C3.666252-6.794521 3.606476-6.744707 3.606476-6.615193C3.606476-6.495641 3.696139-6.495641 3.845579-6.495641C4.323786-6.495641 4.343711-6.425903 4.343711-6.326276L4.313823-6.127024L3.716065-3.765878C3.536737-4.134496 3.247821-4.403487 2.799502-4.403487C1.633873-4.403487 .398506-2.938979 .398506-1.484433C.398506-.547945 .946451 .109589 1.723537 .109589C1.92279 .109589 2.420922 .069738 3.01868-.637609C3.098381-.219178 3.447073 .109589 3.92528 .109589C4.273973 .109589 4.503113-.119552 4.662516-.438356C4.83188-.797011 4.961395-1.404732 4.961395-1.424658C4.961395-1.524284 4.871731-1.524284 4.841843-1.524284C4.742217-1.524284 4.732254-1.484433 4.702366-1.344956C4.533001-.697385 4.353674-.109589 3.945205-.109589C3.676214-.109589 3.646326-.368618 3.646326-.56787C3.646326-.806974 3.666252-.876712 3.706102-1.046077L5.140722-6.804483ZM3.068493-1.185554C3.01868-1.006227 3.01868-.986301 2.86924-.816936C2.430884-.268991 2.022416-.109589 1.743462-.109589C1.24533-.109589 1.105853-.657534 1.105853-1.046077C1.105853-1.544209 1.424658-2.769614 1.653798-3.227895C1.96264-3.815691 2.410959-4.184309 2.809465-4.184309C3.457036-4.184309 3.596513-3.367372 3.596513-3.307597S3.576588-3.188045 3.566625-3.138232L3.068493-1.185554Z'/>
|
||||
<path id='g0-108' d='M2.570361-6.804483C2.570361-6.814446 2.570361-6.914072 2.440847-6.914072C2.211706-6.914072 1.484433-6.834371 1.225405-6.814446C1.145704-6.804483 1.036115-6.794521 1.036115-6.60523C1.036115-6.495641 1.135741-6.495641 1.285181-6.495641C1.763387-6.495641 1.77335-6.405978 1.77335-6.326276L1.743462-6.127024L.488169-1.145704C.458281-1.036115 .438356-.966376 .438356-.806974C.438356-.239103 .876712 .109589 1.344956 .109589C1.673724 .109589 1.92279-.089664 2.092154-.448319C2.271482-.826899 2.391034-1.404732 2.391034-1.424658C2.391034-1.524284 2.30137-1.524284 2.271482-1.524284C2.171856-1.524284 2.161893-1.484433 2.132005-1.344956C1.96264-.697385 1.77335-.109589 1.374844-.109589C1.075965-.109589 1.075965-.428394 1.075965-.56787C1.075965-.806974 1.085928-.856787 1.135741-1.046077L2.570361-6.804483Z'/>
|
||||
<path id='g0-115' d='M3.895392-3.726027C3.616438-3.716065 3.417186-3.496887 3.417186-3.277709C3.417186-3.138232 3.506849-2.988792 3.726027-2.988792S4.184309-3.158157 4.184309-3.5467C4.184309-3.995019 3.755915-4.403487 2.998755-4.403487C1.683686-4.403487 1.315068-3.387298 1.315068-2.948941C1.315068-2.171856 2.052304-2.022416 2.34122-1.96264C2.859278-1.863014 3.377335-1.753425 3.377335-1.205479C3.377335-.946451 3.148194-.109589 1.952677-.109589C1.8132-.109589 1.046077-.109589 .816936-.637609C1.195517-.587796 1.444583-.886675 1.444583-1.165629C1.444583-1.39477 1.285181-1.514321 1.075965-1.514321C.816936-1.514321 .518057-1.305106 .518057-.856787C.518057-.288917 1.085928 .109589 1.942715 .109589C3.556663 .109589 3.945205-1.09589 3.945205-1.544209C3.945205-1.902864 3.755915-2.15193 3.636364-2.271482C3.367372-2.550436 3.078456-2.600249 2.6401-2.689913C2.281445-2.769614 1.882939-2.839352 1.882939-3.287671C1.882939-3.576588 2.122042-4.184309 2.998755-4.184309C3.247821-4.184309 3.745953-4.11457 3.895392-3.726027Z'/>
|
||||
</defs>
|
||||
<g id='page1' transform='matrix(1.117143 0 0 1.117143 0 0)'>
|
||||
<rect x='76.712329' y='55.84613' width='159.402261' height='574.788988' fill='#fff'/>
|
||||
<g fill='#106870'>
|
||||
<use x='76.712329' y='62.764633' xlink:href='#g0-97'/>
|
||||
<use x='81.978483' y='62.764633' xlink:href='#g0-115'/>
|
||||
<use x='86.64847' y='62.764633' xlink:href='#g0-100'/>
|
||||
<use x='91.833903' y='62.764633' xlink:href='#g0-108'/>
|
||||
</g>
|
||||
<use x='231.13325' y='630.635118' xlink:href='#g1-49'/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.6 KiB |
18
xenops/cache/a0f3e9644e9d5322e84f9375ec3d1981a811f67e.svg
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!-- This file was generated by dvisvgm 3.4.3 -->
|
||||
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='180.067625pt' height='643.230635pt' viewBox='84.702366 62.275147 180.067625 643.230635'>
|
||||
<defs>
|
||||
<path id='g1-49' d='M2.929016-6.37609C2.929016-6.615193 2.929016-6.635118 2.699875-6.635118C2.082192-5.997509 1.205479-5.997509 .886675-5.997509V-5.688667C1.085928-5.688667 1.673724-5.688667 2.191781-5.947696V-.787049C2.191781-.428394 2.161893-.308842 1.265255-.308842H.946451V0C1.295143-.029888 2.161893-.029888 2.560399-.029888S3.825654-.029888 4.174346 0V-.308842H3.855542C2.958904-.308842 2.929016-.418431 2.929016-.787049V-6.37609Z'/>
|
||||
<path id='g0-101' d='M1.863014-2.30137C2.15193-2.30137 2.889166-2.321295 3.387298-2.530511C4.084682-2.82939 4.134496-3.417186 4.134496-3.556663C4.134496-3.995019 3.755915-4.403487 3.068493-4.403487C1.96264-4.403487 .458281-3.437111 .458281-1.693649C.458281-.67746 1.046077 .109589 2.022416 .109589C3.447073 .109589 4.283935-.946451 4.283935-1.066002C4.283935-1.125778 4.224159-1.195517 4.164384-1.195517C4.11457-1.195517 4.094645-1.175592 4.034869-1.09589C3.247821-.109589 2.161893-.109589 2.042341-.109589C1.265255-.109589 1.175592-.946451 1.175592-1.265255C1.175592-1.384807 1.185554-1.693649 1.334994-2.30137H1.863014ZM1.39477-2.520548C1.783313-4.034869 2.809465-4.184309 3.068493-4.184309C3.536737-4.184309 3.805729-3.895392 3.805729-3.556663C3.805729-2.520548 2.211706-2.520548 1.803238-2.520548H1.39477Z'/>
|
||||
<path id='g0-115' d='M3.895392-3.726027C3.616438-3.716065 3.417186-3.496887 3.417186-3.277709C3.417186-3.138232 3.506849-2.988792 3.726027-2.988792S4.184309-3.158157 4.184309-3.5467C4.184309-3.995019 3.755915-4.403487 2.998755-4.403487C1.683686-4.403487 1.315068-3.387298 1.315068-2.948941C1.315068-2.171856 2.052304-2.022416 2.34122-1.96264C2.859278-1.863014 3.377335-1.753425 3.377335-1.205479C3.377335-.946451 3.148194-.109589 1.952677-.109589C1.8132-.109589 1.046077-.109589 .816936-.637609C1.195517-.587796 1.444583-.886675 1.444583-1.165629C1.444583-1.39477 1.285181-1.514321 1.075965-1.514321C.816936-1.514321 .518057-1.305106 .518057-.856787C.518057-.288917 1.085928 .109589 1.942715 .109589C3.556663 .109589 3.945205-1.09589 3.945205-1.544209C3.945205-1.902864 3.755915-2.15193 3.636364-2.271482C3.367372-2.550436 3.078456-2.600249 2.6401-2.689913C2.281445-2.769614 1.882939-2.839352 1.882939-3.287671C1.882939-3.576588 2.122042-4.184309 2.998755-4.184309C3.247821-4.184309 3.745953-4.11457 3.895392-3.726027Z'/>
|
||||
<path id='g0-116' d='M2.052304-3.985056H2.988792C3.188045-3.985056 3.287671-3.985056 3.287671-4.184309C3.287671-4.293898 3.188045-4.293898 3.008717-4.293898H2.132005C2.49066-5.708593 2.540473-5.907846 2.540473-5.967621C2.540473-6.136986 2.420922-6.236613 2.251557-6.236613C2.221669-6.236613 1.942715-6.22665 1.853051-5.877958L1.464508-4.293898H.52802C.328767-4.293898 .229141-4.293898 .229141-4.104608C.229141-3.985056 .308842-3.985056 .508095-3.985056H1.384807C.667497-1.155666 .627646-.986301 .627646-.806974C.627646-.268991 1.006227 .109589 1.544209 .109589C2.560399 .109589 3.128269-1.344956 3.128269-1.424658C3.128269-1.524284 3.048568-1.524284 3.008717-1.524284C2.919054-1.524284 2.909091-1.494396 2.859278-1.384807C2.430884-.348692 1.902864-.109589 1.564134-.109589C1.354919-.109589 1.255293-.239103 1.255293-.56787C1.255293-.806974 1.275218-.876712 1.315068-1.046077L2.052304-3.985056Z'/>
|
||||
</defs>
|
||||
<g id='page1' transform='matrix(1.117143 0 0 1.117143 0 0)'>
|
||||
<rect x='76.712329' y='56.636813' width='159.402261' height='573.998305' fill='#fff'/>
|
||||
<use x='76.712329' y='62.764633' xlink:href='#g0-116'/>
|
||||
<use x='80.309964' y='62.764633' xlink:href='#g0-101'/>
|
||||
<use x='84.948835' y='62.764633' xlink:href='#g0-115'/>
|
||||
<use x='89.618823' y='62.764633' xlink:href='#g0-116'/>
|
||||
<use x='231.13325' y='630.635118' xlink:href='#g1-49'/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
18
xenops/cache/c033e0f561b584df4c74d3c989b66c76f405291a.svg
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!-- This file was generated by dvisvgm 3.4.3 -->
|
||||
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='180.067625pt' height='643.230635pt' viewBox='84.702366 62.275147 180.067625 643.230635'>
|
||||
<defs>
|
||||
<path id='g1-49' d='M2.929016-6.37609C2.929016-6.615193 2.929016-6.635118 2.699875-6.635118C2.082192-5.997509 1.205479-5.997509 .886675-5.997509V-5.688667C1.085928-5.688667 1.673724-5.688667 2.191781-5.947696V-.787049C2.191781-.428394 2.161893-.308842 1.265255-.308842H.946451V0C1.295143-.029888 2.161893-.029888 2.560399-.029888S3.825654-.029888 4.174346 0V-.308842H3.855542C2.958904-.308842 2.929016-.418431 2.929016-.787049V-6.37609Z'/>
|
||||
<path id='g0-101' d='M1.863014-2.30137C2.15193-2.30137 2.889166-2.321295 3.387298-2.530511C4.084682-2.82939 4.134496-3.417186 4.134496-3.556663C4.134496-3.995019 3.755915-4.403487 3.068493-4.403487C1.96264-4.403487 .458281-3.437111 .458281-1.693649C.458281-.67746 1.046077 .109589 2.022416 .109589C3.447073 .109589 4.283935-.946451 4.283935-1.066002C4.283935-1.125778 4.224159-1.195517 4.164384-1.195517C4.11457-1.195517 4.094645-1.175592 4.034869-1.09589C3.247821-.109589 2.161893-.109589 2.042341-.109589C1.265255-.109589 1.175592-.946451 1.175592-1.265255C1.175592-1.384807 1.185554-1.693649 1.334994-2.30137H1.863014ZM1.39477-2.520548C1.783313-4.034869 2.809465-4.184309 3.068493-4.184309C3.536737-4.184309 3.805729-3.895392 3.805729-3.556663C3.805729-2.520548 2.211706-2.520548 1.803238-2.520548H1.39477Z'/>
|
||||
<path id='g0-115' d='M3.895392-3.726027C3.616438-3.716065 3.417186-3.496887 3.417186-3.277709C3.417186-3.138232 3.506849-2.988792 3.726027-2.988792S4.184309-3.158157 4.184309-3.5467C4.184309-3.995019 3.755915-4.403487 2.998755-4.403487C1.683686-4.403487 1.315068-3.387298 1.315068-2.948941C1.315068-2.171856 2.052304-2.022416 2.34122-1.96264C2.859278-1.863014 3.377335-1.753425 3.377335-1.205479C3.377335-.946451 3.148194-.109589 1.952677-.109589C1.8132-.109589 1.046077-.109589 .816936-.637609C1.195517-.587796 1.444583-.886675 1.444583-1.165629C1.444583-1.39477 1.285181-1.514321 1.075965-1.514321C.816936-1.514321 .518057-1.305106 .518057-.856787C.518057-.288917 1.085928 .109589 1.942715 .109589C3.556663 .109589 3.945205-1.09589 3.945205-1.544209C3.945205-1.902864 3.755915-2.15193 3.636364-2.271482C3.367372-2.550436 3.078456-2.600249 2.6401-2.689913C2.281445-2.769614 1.882939-2.839352 1.882939-3.287671C1.882939-3.576588 2.122042-4.184309 2.998755-4.184309C3.247821-4.184309 3.745953-4.11457 3.895392-3.726027Z'/>
|
||||
<path id='g0-116' d='M2.052304-3.985056H2.988792C3.188045-3.985056 3.287671-3.985056 3.287671-4.184309C3.287671-4.293898 3.188045-4.293898 3.008717-4.293898H2.132005C2.49066-5.708593 2.540473-5.907846 2.540473-5.967621C2.540473-6.136986 2.420922-6.236613 2.251557-6.236613C2.221669-6.236613 1.942715-6.22665 1.853051-5.877958L1.464508-4.293898H.52802C.328767-4.293898 .229141-4.293898 .229141-4.104608C.229141-3.985056 .308842-3.985056 .508095-3.985056H1.384807C.667497-1.155666 .627646-.986301 .627646-.806974C.627646-.268991 1.006227 .109589 1.544209 .109589C2.560399 .109589 3.128269-1.344956 3.128269-1.424658C3.128269-1.524284 3.048568-1.524284 3.008717-1.524284C2.919054-1.524284 2.909091-1.494396 2.859278-1.384807C2.430884-.348692 1.902864-.109589 1.564134-.109589C1.354919-.109589 1.255293-.239103 1.255293-.56787C1.255293-.806974 1.275218-.876712 1.315068-1.046077L2.052304-3.985056Z'/>
|
||||
</defs>
|
||||
<g id='page1' transform='matrix(1.117143 0 0 1.117143 0 0)'>
|
||||
<rect x='76.712329' y='56.636813' width='159.402261' height='573.998305' fill='#fff'/>
|
||||
<use x='76.712329' y='62.764633' xlink:href='#g0-116'/>
|
||||
<use x='80.309964' y='62.764633' xlink:href='#g0-101'/>
|
||||
<use x='84.948835' y='62.764633' xlink:href='#g0-115'/>
|
||||
<use x='89.618823' y='62.764633' xlink:href='#g0-116'/>
|
||||
<use x='231.13325' y='630.635118' xlink:href='#g1-49'/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
13
xenops/cache/c8549a9c12a3742be8e18b143c16dfd898504442.svg
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!-- This file was generated by dvisvgm 3.4.3 -->
|
||||
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='180.067625pt' height='642.384977pt' viewBox='84.702366 63.120805 180.067625 642.384977'>
|
||||
<defs>
|
||||
<path id='g1-49' d='M2.929016-6.37609C2.929016-6.615193 2.929016-6.635118 2.699875-6.635118C2.082192-5.997509 1.205479-5.997509 .886675-5.997509V-5.688667C1.085928-5.688667 1.673724-5.688667 2.191781-5.947696V-.787049C2.191781-.428394 2.161893-.308842 1.265255-.308842H.946451V0C1.295143-.029888 2.161893-.029888 2.560399-.029888S3.825654-.029888 4.174346 0V-.308842H3.855542C2.958904-.308842 2.929016-.418431 2.929016-.787049V-6.37609Z'/>
|
||||
<path id='g0-26' d='M6.56538-4.98132C6.734745-4.98132 6.914072-4.98132 6.914072-5.180573S6.734745-5.379826 6.56538-5.379826H3.88543C2.181818-5.379826 .826899-4.084682 .826899-2.49066S2.181818 .398506 3.88543 .398506H6.56538C6.734745 .398506 6.914072 .398506 6.914072 .199253S6.734745 0 6.56538 0H3.905355C2.351183 0 1.225405-1.155666 1.225405-2.49066S2.351183-4.98132 3.905355-4.98132H6.56538Z'/>
|
||||
</defs>
|
||||
<g id='page1' transform='matrix(1.117143 0 0 1.117143 0 0)'>
|
||||
<rect x='76.712329' y='57.393795' width='159.402261' height='573.241323' fill='#fff'/>
|
||||
<use x='76.712329' y='62.764633' xlink:href='#g0-26'/>
|
||||
<use x='231.13325' y='630.635118' xlink:href='#g1-49'/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
13
xenops/cache/e418ee540bd2b90407018b172941d3f8a030a41a.svg
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!-- This file was generated by dvisvgm 3.4.3 -->
|
||||
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='180.067625pt' height='641.176933pt' viewBox='84.702366 64.328849 180.067625 641.176933'>
|
||||
<defs>
|
||||
<path id='g1-49' d='M2.929016-6.37609C2.929016-6.615193 2.929016-6.635118 2.699875-6.635118C2.082192-5.997509 1.205479-5.997509 .886675-5.997509V-5.688667C1.085928-5.688667 1.673724-5.688667 2.191781-5.947696V-.787049C2.191781-.428394 2.161893-.308842 1.265255-.308842H.946451V0C1.295143-.029888 2.161893-.029888 2.560399-.029888S3.825654-.029888 4.174346 0V-.308842H3.855542C2.958904-.308842 2.929016-.418431 2.929016-.787049V-6.37609Z'/>
|
||||
<path id='g0-97' d='M3.716065-3.765878C3.536737-4.134496 3.247821-4.403487 2.799502-4.403487C1.633873-4.403487 .398506-2.938979 .398506-1.484433C.398506-.547945 .946451 .109589 1.723537 .109589C1.92279 .109589 2.420922 .069738 3.01868-.637609C3.098381-.219178 3.447073 .109589 3.92528 .109589C4.273973 .109589 4.503113-.119552 4.662516-.438356C4.83188-.797011 4.961395-1.404732 4.961395-1.424658C4.961395-1.524284 4.871731-1.524284 4.841843-1.524284C4.742217-1.524284 4.732254-1.484433 4.702366-1.344956C4.533001-.697385 4.353674-.109589 3.945205-.109589C3.676214-.109589 3.646326-.368618 3.646326-.56787C3.646326-.787049 3.666252-.86675 3.775841-1.305106C3.88543-1.723537 3.905355-1.823163 3.995019-2.201743L4.353674-3.596513C4.423412-3.875467 4.423412-3.895392 4.423412-3.935243C4.423412-4.104608 4.303861-4.204234 4.134496-4.204234C3.895392-4.204234 3.745953-3.985056 3.716065-3.765878ZM3.068493-1.185554C3.01868-1.006227 3.01868-.986301 2.86924-.816936C2.430884-.268991 2.022416-.109589 1.743462-.109589C1.24533-.109589 1.105853-.657534 1.105853-1.046077C1.105853-1.544209 1.424658-2.769614 1.653798-3.227895C1.96264-3.815691 2.410959-4.184309 2.809465-4.184309C3.457036-4.184309 3.596513-3.367372 3.596513-3.307597S3.576588-3.188045 3.566625-3.138232L3.068493-1.185554Z'/>
|
||||
</defs>
|
||||
<g id='page1' transform='matrix(1.117143 0 0 1.117143 0 0)'>
|
||||
<rect x='76.712329' y='58.475165' width='159.402261' height='572.159954' fill='#fff'/>
|
||||
<use x='76.712329' y='62.764633' xlink:href='#g0-97'/>
|
||||
<use x='231.13325' y='630.635118' xlink:href='#g1-49'/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
25
xenops/cache/f35fbfb4f24e87a98a570fd47c260cb2fcd684eb.svg
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!-- This file was generated by dvisvgm 3.4.3 -->
|
||||
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='44.8002pt' height='630.75831pt' viewBox='238.591216 74.747472 44.8002 630.75831'>
|
||||
<defs>
|
||||
<path id='g1-49' d='M2.929016-6.37609C2.929016-6.615193 2.929016-6.635118 2.699875-6.635118C2.082192-5.997509 1.205479-5.997509 .886675-5.997509V-5.688667C1.085928-5.688667 1.673724-5.688667 2.191781-5.947696V-.787049C2.191781-.428394 2.161893-.308842 1.265255-.308842H.946451V0C1.295143-.029888 2.161893-.029888 2.560399-.029888S3.825654-.029888 4.174346 0V-.308842H3.855542C2.958904-.308842 2.929016-.418431 2.929016-.787049V-6.37609Z'/>
|
||||
<path id='g0-97' d='M3.716065-3.765878C3.536737-4.134496 3.247821-4.403487 2.799502-4.403487C1.633873-4.403487 .398506-2.938979 .398506-1.484433C.398506-.547945 .946451 .109589 1.723537 .109589C1.92279 .109589 2.420922 .069738 3.01868-.637609C3.098381-.219178 3.447073 .109589 3.92528 .109589C4.273973 .109589 4.503113-.119552 4.662516-.438356C4.83188-.797011 4.961395-1.404732 4.961395-1.424658C4.961395-1.524284 4.871731-1.524284 4.841843-1.524284C4.742217-1.524284 4.732254-1.484433 4.702366-1.344956C4.533001-.697385 4.353674-.109589 3.945205-.109589C3.676214-.109589 3.646326-.368618 3.646326-.56787C3.646326-.787049 3.666252-.86675 3.775841-1.305106C3.88543-1.723537 3.905355-1.823163 3.995019-2.201743L4.353674-3.596513C4.423412-3.875467 4.423412-3.895392 4.423412-3.935243C4.423412-4.104608 4.303861-4.204234 4.134496-4.204234C3.895392-4.204234 3.745953-3.985056 3.716065-3.765878ZM3.068493-1.185554C3.01868-1.006227 3.01868-.986301 2.86924-.816936C2.430884-.268991 2.022416-.109589 1.743462-.109589C1.24533-.109589 1.105853-.657534 1.105853-1.046077C1.105853-1.544209 1.424658-2.769614 1.653798-3.227895C1.96264-3.815691 2.410959-4.184309 2.809465-4.184309C3.457036-4.184309 3.596513-3.367372 3.596513-3.307597S3.576588-3.188045 3.566625-3.138232L3.068493-1.185554Z'/>
|
||||
<path id='g0-100' d='M5.140722-6.804483C5.140722-6.814446 5.140722-6.914072 5.011208-6.914072C4.861768-6.914072 3.915318-6.824408 3.745953-6.804483C3.666252-6.794521 3.606476-6.744707 3.606476-6.615193C3.606476-6.495641 3.696139-6.495641 3.845579-6.495641C4.323786-6.495641 4.343711-6.425903 4.343711-6.326276L4.313823-6.127024L3.716065-3.765878C3.536737-4.134496 3.247821-4.403487 2.799502-4.403487C1.633873-4.403487 .398506-2.938979 .398506-1.484433C.398506-.547945 .946451 .109589 1.723537 .109589C1.92279 .109589 2.420922 .069738 3.01868-.637609C3.098381-.219178 3.447073 .109589 3.92528 .109589C4.273973 .109589 4.503113-.119552 4.662516-.438356C4.83188-.797011 4.961395-1.404732 4.961395-1.424658C4.961395-1.524284 4.871731-1.524284 4.841843-1.524284C4.742217-1.524284 4.732254-1.484433 4.702366-1.344956C4.533001-.697385 4.353674-.109589 3.945205-.109589C3.676214-.109589 3.646326-.368618 3.646326-.56787C3.646326-.806974 3.666252-.876712 3.706102-1.046077L5.140722-6.804483ZM3.068493-1.185554C3.01868-1.006227 3.01868-.986301 2.86924-.816936C2.430884-.268991 2.022416-.109589 1.743462-.109589C1.24533-.109589 1.105853-.657534 1.105853-1.046077C1.105853-1.544209 1.424658-2.769614 1.653798-3.227895C1.96264-3.815691 2.410959-4.184309 2.809465-4.184309C3.457036-4.184309 3.596513-3.367372 3.596513-3.307597S3.576588-3.188045 3.566625-3.138232L3.068493-1.185554Z'/>
|
||||
<path id='g0-106' d='M3.955168-6.22665C3.955168-6.41594 3.815691-6.585305 3.576588-6.585305C3.347447-6.585305 3.048568-6.356164 3.048568-6.057285C3.048568-5.858032 3.188045-5.69863 3.417186-5.69863C3.686177-5.69863 3.955168-5.957659 3.955168-6.22665ZM1.952677 .498132C1.763387 1.255293 1.285181 1.823163 .727273 1.823163C.667497 1.823163 .518057 1.823163 .33873 1.733499C.637609 1.663761 .787049 1.404732 .787049 1.205479C.787049 1.046077 .67746 .856787 .408468 .856787C.159402 .856787-.129514 1.066002-.129514 1.424658C-.129514 1.823163 .268991 2.042341 .747198 2.042341C1.444583 2.042341 2.371108 1.514321 2.620174 .52802L3.536737-3.118306C3.58655-3.317559 3.58655-3.457036 3.58655-3.486924C3.58655-4.054795 3.16812-4.403487 2.669988-4.403487C1.653798-4.403487 1.085928-2.958904 1.085928-2.86924C1.085928-2.769614 1.185554-2.769614 1.205479-2.769614C1.295143-2.769614 1.305106-2.779577 1.384807-2.968867C1.633873-3.576588 2.092154-4.184309 2.6401-4.184309C2.779577-4.184309 2.958904-4.144458 2.958904-3.726027C2.958904-3.496887 2.929016-3.387298 2.889166-3.217933L1.952677 .498132Z'/>
|
||||
<path id='g0-107' d='M2.859278-6.804483C2.859278-6.814446 2.859278-6.914072 2.729763-6.914072C2.500623-6.914072 1.77335-6.834371 1.514321-6.814446C1.43462-6.804483 1.325031-6.794521 1.325031-6.615193C1.325031-6.495641 1.414695-6.495641 1.564134-6.495641C2.042341-6.495641 2.062267-6.425903 2.062267-6.326276L2.032379-6.127024L.587796-.388543C.547945-.249066 .547945-.229141 .547945-.169365C.547945 .059776 .747198 .109589 .836862 .109589C.966376 .109589 1.115816 .019925 1.175592-.099626C1.225405-.18929 1.673724-2.032379 1.733499-2.281445C2.072229-2.251557 2.889166-2.092154 2.889166-1.43462C2.889166-1.364882 2.889166-1.325031 2.859278-1.225405C2.839352-1.105853 2.819427-.986301 2.819427-.876712C2.819427-.288917 3.217933 .109589 3.73599 .109589C4.034869 .109589 4.303861-.049813 4.523039-.418431C4.772105-.856787 4.881694-1.404732 4.881694-1.424658C4.881694-1.524284 4.79203-1.524284 4.762142-1.524284C4.662516-1.524284 4.652553-1.484433 4.622665-1.344956C4.423412-.617684 4.194271-.109589 3.755915-.109589C3.566625-.109589 3.437111-.219178 3.437111-.577833C3.437111-.747198 3.476961-.976339 3.516812-1.135741C3.556663-1.305106 3.556663-1.344956 3.556663-1.444583C3.556663-2.092154 2.929016-2.381071 2.082192-2.49066C2.391034-2.669988 2.709838-2.988792 2.938979-3.227895C3.417186-3.755915 3.875467-4.184309 4.363636-4.184309C4.423412-4.184309 4.433375-4.184309 4.4533-4.174346C4.572852-4.154421 4.582814-4.154421 4.662516-4.094645C4.682441-4.084682 4.682441-4.07472 4.702366-4.054795C4.224159-4.024907 4.134496-3.636364 4.134496-3.516812C4.134496-3.35741 4.244085-3.16812 4.513076-3.16812C4.772105-3.16812 5.061021-3.387298 5.061021-3.775841C5.061021-4.07472 4.83188-4.403487 4.383562-4.403487C4.104608-4.403487 3.646326-4.323786 2.929016-3.526775C2.590286-3.148194 2.201743-2.749689 1.823163-2.600249L2.859278-6.804483Z'/>
|
||||
<path id='g0-108' d='M2.570361-6.804483C2.570361-6.814446 2.570361-6.914072 2.440847-6.914072C2.211706-6.914072 1.484433-6.834371 1.225405-6.814446C1.145704-6.804483 1.036115-6.794521 1.036115-6.60523C1.036115-6.495641 1.135741-6.495641 1.285181-6.495641C1.763387-6.495641 1.77335-6.405978 1.77335-6.326276L1.743462-6.127024L.488169-1.145704C.458281-1.036115 .438356-.966376 .438356-.806974C.438356-.239103 .876712 .109589 1.344956 .109589C1.673724 .109589 1.92279-.089664 2.092154-.448319C2.271482-.826899 2.391034-1.404732 2.391034-1.424658C2.391034-1.524284 2.30137-1.524284 2.271482-1.524284C2.171856-1.524284 2.161893-1.484433 2.132005-1.344956C1.96264-.697385 1.77335-.109589 1.374844-.109589C1.075965-.109589 1.075965-.428394 1.075965-.56787C1.075965-.806974 1.085928-.856787 1.135741-1.046077L2.570361-6.804483Z'/>
|
||||
<path id='g0-115' d='M3.895392-3.726027C3.616438-3.716065 3.417186-3.496887 3.417186-3.277709C3.417186-3.138232 3.506849-2.988792 3.726027-2.988792S4.184309-3.158157 4.184309-3.5467C4.184309-3.995019 3.755915-4.403487 2.998755-4.403487C1.683686-4.403487 1.315068-3.387298 1.315068-2.948941C1.315068-2.171856 2.052304-2.022416 2.34122-1.96264C2.859278-1.863014 3.377335-1.753425 3.377335-1.205479C3.377335-.946451 3.148194-.109589 1.952677-.109589C1.8132-.109589 1.046077-.109589 .816936-.637609C1.195517-.587796 1.444583-.886675 1.444583-1.165629C1.444583-1.39477 1.285181-1.514321 1.075965-1.514321C.816936-1.514321 .518057-1.305106 .518057-.856787C.518057-.288917 1.085928 .109589 1.942715 .109589C3.556663 .109589 3.945205-1.09589 3.945205-1.544209C3.945205-1.902864 3.755915-2.15193 3.636364-2.271482C3.367372-2.550436 3.078456-2.600249 2.6401-2.689913C2.281445-2.769614 1.882939-2.839352 1.882939-3.287671C1.882939-3.576588 2.122042-4.184309 2.998755-4.184309C3.247821-4.184309 3.745953-4.11457 3.895392-3.726027Z'/>
|
||||
</defs>
|
||||
<g id='page1' transform='matrix(1.117143 0 0 1.117143 0 0)'>
|
||||
<rect x='214.464496' y='67.801299' width='38.318888' height='562.83382' fill='#fff'/>
|
||||
<use x='214.464496' y='74.719801' xlink:href='#g0-115'/>
|
||||
<use x='219.134483' y='74.719801' xlink:href='#g0-100'/>
|
||||
<use x='224.319916' y='74.719801' xlink:href='#g0-108'/>
|
||||
<use x='227.48861' y='74.719801' xlink:href='#g0-97'/>
|
||||
<use x='232.754764' y='74.719801' xlink:href='#g0-107'/>
|
||||
<use x='238.254983' y='74.719801' xlink:href='#g0-115'/>
|
||||
<use x='242.924971' y='74.719801' xlink:href='#g0-106'/>
|
||||
<use x='247.597951' y='74.719801' xlink:href='#g0-100'/>
|
||||
<use x='231.13325' y='630.635118' xlink:href='#g1-49'/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.6 KiB |