First commit - currently just the Cambridge Engineering department template

This commit is contained in:
Wojciech Kozlowski 2016-03-18 18:49:37 +00:00
commit 19b8e758ce
56 changed files with 80464 additions and 0 deletions

38
.gitignore vendored Normal file
View File

@ -0,0 +1,38 @@
*.tdo*
.DS_Store*
*.aux*
*.log*
*.lof*
*.lot*
*.out*
*.gz*
*.toc*
*.bbl*
*.blg*
*~*
*.nlo*
*make*
*.d*
*.bcf*
*.blg*
*~*
*.nlo*
*make
*.d
*.btmp*
*.fls*
*.glo*
*.idx*
*.ist*
*.ilg*
*.ind*
*cookie*
*#*
*.nls*
*.nlg*
thesis.txt*
thesis.bcf*
thesis.run.xml*
*run.xml*
*.latexmkrc*
*_latexmk*

14
.travis.yml Normal file
View File

@ -0,0 +1,14 @@
before_install:
- sudo add-apt-repository -y ppa:texlive-backports/ppa
- sudo apt-get update
install:
- sudo apt-get install -y texlive-latex-base
- sudo apt-get install -y texlive-latex-recommended texlive-latex-extra
- sudo apt-get install -y texlive-science
- sudo apt-get install -y texlive-fonts-recommended texlive-fonts-extra
- sudo apt-get install -y psutils
script:
- make clean
- make BUILD_STRATEGY=latex
- make clean
- make

5
Abstract/abstract.tex Normal file
View File

@ -0,0 +1,5 @@
% ************************** Thesis Abstract *****************************
% Use `abstract' as an option in the document class to print only the titlepage and the abstract.
\begin{abstract}
This is where you write your abstract ...
\end{abstract}

View File

@ -0,0 +1,9 @@
% ************************** Thesis Acknowledgements **************************
\begin{acknowledgements}
And I would like to acknowledge ...
\end{acknowledgements}

131
Appendix1/appendix1.tex Normal file
View File

@ -0,0 +1,131 @@
% ******************************* Thesis Appendix A ****************************
\chapter{How to install \LaTeX}
\section*{Windows OS}
\subsection*{TeXLive package - full version}
\begin{enumerate}
\item Download the TeXLive ISO (2.2GB) from\\
\href{https://www.tug.org/texlive/}{https://www.tug.org/texlive/}
\item Download WinCDEmu (if you don't have a virtual drive) from \\
\href{http://wincdemu.sysprogs.org/download/}
{http://wincdemu.sysprogs.org/download/}
\item To install Windows CD Emulator follow the instructions at\\
\href{http://wincdemu.sysprogs.org/tutorials/install/}
{http://wincdemu.sysprogs.org/tutorials/install/}
\item Right click the iso and mount it using the WinCDEmu as shown in \\
\href{http://wincdemu.sysprogs.org/tutorials/mount/}{
http://wincdemu.sysprogs.org/tutorials/mount/}
\item Open your virtual drive and run setup.pl
\end{enumerate}
or
\subsection*{Basic MikTeX - \TeX~ distribution}
\begin{enumerate}
\item Download Basic-MiK\TeX (32bit or 64bit) from\\
\href{http://miktex.org/download}{http://miktex.org/download}
\item Run the installer
\item To add a new package go to Start >> All Programs >> MikTex >> Maintenance (Admin) and choose Package Manager
\item Select or search for packages to install
\end{enumerate}
\subsection*{TexStudio - \TeX~ editor}
\begin{enumerate}
\item Download TexStudio from\\
\href{http://texstudio.sourceforge.net/\#downloads}
{http://texstudio.sourceforge.net/\#downloads}
\item Run the installer
\end{enumerate}
\section*{Mac OS X}
\subsection*{MacTeX - \TeX~ distribution}
\begin{enumerate}
\item Download the file from\\
\href{https://www.tug.org/mactex/}{https://www.tug.org/mactex/}
\item Extract and double click to run the installer. It does the entire configuration, sit back and relax.
\end{enumerate}
\subsection*{TexStudio - \TeX~ editor}
\begin{enumerate}
\item Download TexStudio from\\
\href{http://texstudio.sourceforge.net/\#downloads}
{http://texstudio.sourceforge.net/\#downloads}
\item Extract and Start
\end{enumerate}
\section*{Unix/Linux}
\subsection*{TeXLive - \TeX~ distribution}
\subsubsection*{Getting the distribution:}
\begin{enumerate}
\item TexLive can be downloaded from\\
\href{http://www.tug.org/texlive/acquire-netinstall.html}
{http://www.tug.org/texlive/acquire-netinstall.html}.
\item TexLive is provided by most operating system you can use (rpm,apt-get or yum) to get TexLive distributions
\end{enumerate}
\subsubsection*{Installation}
\begin{enumerate}
\item Mount the ISO file in the mnt directory
\begin{verbatim}
mount -t iso9660 -o ro,loop,noauto /your/texlive####.iso /mnt
\end{verbatim}
\item Install wget on your OS (use rpm, apt-get or yum install)
\item Run the installer script install-tl.
\begin{verbatim}
cd /your/download/directory
./install-tl
\end{verbatim}
\item Enter command `i' for installation
\item Post-Installation configuration:\\
\href{http://www.tug.org/texlive/doc/texlive-en/texlive-en.html\#x1-320003.4.1}
{http://www.tug.org/texlive/doc/texlive-en/texlive-en.html\#x1-320003.4.1}
\item Set the path for the directory of TexLive binaries in your .bashrc file
\end{enumerate}
\subsubsection*{For 32bit OS}
For Bourne-compatible shells such as bash, and using Intel x86 GNU/Linux and a default directory setup as an example, the file to edit might be \begin{verbatim}
edit $~/.bashrc file and add following lines
PATH=/usr/local/texlive/2011/bin/i386-linux:$PATH;
export PATH
MANPATH=/usr/local/texlive/2011/texmf/doc/man:$MANPATH;
export MANPATH
INFOPATH=/usr/local/texlive/2011/texmf/doc/info:$INFOPATH;
export INFOPATH
\end{verbatim}
\subsubsection*{For 64bit OS}
\begin{verbatim}
edit $~/.bashrc file and add following lines
PATH=/usr/local/texlive/2011/bin/x86_64-linux:$PATH;
export PATH
MANPATH=/usr/local/texlive/2011/texmf/doc/man:$MANPATH;
export MANPATH
INFOPATH=/usr/local/texlive/2011/texmf/doc/info:$INFOPATH;
export INFOPATH
\end{verbatim}
%\subsection{Installing directly using Linux packages}
\subsubsection*{Fedora/RedHat/CentOS:}
\begin{verbatim}
sudo yum install texlive
sudo yum install psutils
\end{verbatim}
\subsubsection*{SUSE:}
\begin{verbatim}
sudo zypper install texlive
\end{verbatim}
\subsubsection*{Debian/Ubuntu:}
\begin{verbatim}
sudo apt-get install texlive texlive-latex-extra
sudo apt-get install psutils
\end{verbatim}

12
Appendix2/appendix2.tex Normal file
View File

@ -0,0 +1,12 @@
% ******************************* Thesis Appendix B ********************************
\chapter{Installing the CUED class file}
\LaTeX.cls files can be accessed system-wide when they are placed in the
<texmf>/tex/latex directory, where <texmf> is the root directory of the users \TeX installation. On systems that have a local texmf tree (<texmflocal>), which
may be named ``texmf-local'' or ``localtexmf'', it may be advisable to install packages in <texmflocal>, rather than <texmf> as the contents of the former, unlike that of the latter, are preserved after the \LaTeX system is reinstalled and/or upgraded.
It is recommended that the user create a subdirectory <texmf>/tex/latex/CUED for all CUED related \LaTeX class and package files. On some \LaTeX systems, the directory look-up tables will need to be refreshed after making additions or deletions to the system files. For \TeX Live systems this is accomplished via executing ``texhash'' as root. MIK\TeX users can run ``initexmf -u'' to accomplish the same thing.
Users not willing or able to install the files system-wide can install them in their personal directories, but will then have to provide the path (full or relative) in addition to the filename when referring to them in \LaTeX.

135
ChangeLog.md Normal file
View File

@ -0,0 +1,135 @@
## Change log
### 2015/06/20 - Version 2.1
> Commit a5feb0732d7f13fa9703fddcee703224c00b83dd
* Support for including supervisor and/or advisor
### 2015/06/20 - Version 2.0.1
> Commit 0e0d1e617acb42b034870ea325271cce8d3d8d8e
* Fixed centering of year on front page - Issue #16
### 2015/06/20 - Version 2.0
> Commit f4723434f92eedc163fdcb74c7ac04c8d842bc05
* XeLaTeX and LuaLaTeX support
* College crest + University crest support
### 2014/12/02 - Version 1.4.5
> Commit 427230cae012194a2e433ec001677c43ffd8250e
* Fixed issue with the misaligned date and college in the frontpage.
### 2014/12/02 - Version 1.4.4
> Commit 7f17bc3c682df2950e4dc09cd5e71278edc3fc6d
* Fixed pagenumbering issue in 2 page nomenclature - Issue #28
### 2014/10/08 - Version 1.4.3
> Commit df43fcdc7308feeea8c7dfe06ad24d45d5caca3e
* Fixed `\degree` command conflict - Issue #26
### 2014/10/08 - Version 1.4.2
> Commit 4f0f3394330bfca302b724ab1b3c06977f7e08f3
* Added mynotes support in preamble
* Fixed printnomecl in abstractmode
* Fixed issue with pagenumbering when using oneside option
* Draftmode is deprecated, default `draft' supports linenumbering, watermark
* List of contents doesn't appear in TOC but appears in bookmarks
### 2014/08/11 - Version 1.4.1
> Commit fb70181ff9e00bfb50e3e3040d6b2cf15cd6ebfe
* Fixed line numbering in draft mode with AMS Math environment
* Biblatex & custombib error catcher - bug fix
* Modification to the declaration text
### 2014/07/15 - Version 1.4
> Commit 330f82a439e179dc03fbbbe156f3e830ca1fdd68
* Option to have subtitle on front page
* College name is an optional argument
* Travis-CI integration
### 2014/06/09 - Version 1.3
> Commit 93723653eef19b8ca81d57df389b3a8efa652203
* Draftmode - watermark text, line numbering, version numbering
* Better error checking for documentclass options and log messages
* arara/LaTeX-mk support
* Option to choose `raggedright` for text
### 2014/03/24 - Version 1.2
> Commit 4b709fed6cdfd5b3796152f9c59b619c72df491f
* Rearranged package order in preamble to support equation numbering using cref
* Removed dependencies on obsolete packages
* Restyled the URL fonts to use the same font as text
### 2014/02/14 - Version 1.1.2
> Commit a7f123bb220bf1e207b6e49e8b2978c203582e12
* Updates to abstract separate mode with no page numbers
* Declaration included in abstract mode for submission to student registry
### 2014/02/10 - Version 1.1.1
> Commit e7f34cfd71cbe1b590d615a00d99b8d05513e5ba
* Biblatex handled as a custombib option
* UTF8 and Fontencoding after font has been loaded
### 2014/02/04 - Version 1.1
> Commit 6e00ac94c2193882dd6f42686fc455cc66d829df
* BibLatex Support with bibtex backend
* Chapter mode for compiling only specified chapters and references
### 2014/01/11 - Version 1.0
> Commit 2f6918863e3c9d0a7e95bd2651ce7ef8ae38f90a
* Fixed an issue with the headers in Nomenclature section
* Removed deprecated codes, added functionality to tweak chapter headings in preamble.tex.
* Distributed under MIT license
* Acknowledgement and Cls file update
* Appendices after References
### 2013/12/09 - Version 1.0 Beta Release 10.0
> Commit 973492fe1f1805e4fef60ec54060621b3e90a3cd
* Fixed issues with DVI >> PS >> PDF and workaround, when papersize is not set for older versions of dvips (5.97 or lower).
### 2013/12/08 - Version 1.0 Beta Release 9.0
> Commit c11f98e26566af08cb9c4cacbdfddf6b28111886
* Wider text area (75% of page size), support for separate abstract for submission to the Student Registry, appendix
### 2013/12/05 - Version 1.0 Beta Release 8.0
> Commit 324d1a5609992028afb109b424573cd3a5e31849
* Update class file to support dvips driver when using dvi > PS output in hyperTeX. Removed deprecated codes from Declaration and class files
### 2013/12/05 - Version 1.0 Beta Release 7.2
> Commit 2f397eda12ef2b81314b67847e312f688095a379
* Update to margin dimensions (1:1 ratio is maintained) with a binding offset of 5mm on the print version. Replaced the hmargin ratio of 3:2 with 1:1 with a binding offset.
### 2013/12/04 - Version 1.0 Beta Release 7.1
> Commit 9cb782f26cc3573f8d3077db520ba84b5f295049
* Declaration with automatic insertion of the author and the degree date and conforming to the statments in the University guidelines
### 2013/12/03 - Version 1.0 Beta Release 7.0
> Commit 1f695d512ae5ce765398db4dc4b6381dc0351868
* Default font size is 12pt and the default paper size is A4, confirming to the University regulations in terms of font, font sizer, paper size and set them as defaults.
### 2013/11/27 - Version 1.0 Beta Release 6.2
> Commit a5f49d49a6cc39209d95f91e667fd7b359ab5227
* Update to the Makefile to remove PS files when running Makeclean
### 2013/11/26 - Version 1.0 Beta Release 6.1
> Commit e29a99406649dcce8f23b6d9df0b87eabd09fc0e
* Update to the Makefile to support PS to PDF conversion
### 2013/11/26 - Version 1.0 Beta Release 6.0
> Commit 187b9324420812326e62d963afa42e26532e82e7
* Included a Windows Batch file for LaTeX / Nomenclature compilation
* Supports \printnomencl[optional_argument]
### 2013/11/26 - Version 1.0 Beta Release 5.0
> Commit 76a733ee305ed4aae9d546492cef768512df2b13
* Supports DVI/PS
* Supports Custom Margin and FancyHdr update
### 2013/11/24 - Version 1.0 Beta Release 0
> Commit 73c8dd9ea82c21476d964ad5cdff1b71fe7327c8
* Author(s): Krishna Kumar
* Adaptive Title Page: Title page adapts to the length of the title
* Print / On-line version: Different layout and hyper-referncing styles
* Pre-defined and custom fonts (Times / Palatino / Latin Modern) with math support
* Pre-defined and custom bibliography style support (authoryear / numbered / custom)
* Custom page styles: 3 Different Header / Footer styles
### 2013/11/14 - Inception
> Author(s): Krishna Kumar

99
Chapter1/chapter1.tex Normal file
View File

@ -0,0 +1,99 @@
%*******************************************************************************
%*********************************** First Chapter *****************************
%*******************************************************************************
\chapter{Getting started} %Title of the First Chapter
\ifpdf
\graphicspath{{Chapter1/Figs/Raster/}{Chapter1/Figs/PDF/}{Chapter1/Figs/}}
\else
\graphicspath{{Chapter1/Figs/Vector/}{Chapter1/Figs/}}
\fi
%********************************** %First Section **************************************
\section{What is loren ipsum? Title with math \texorpdfstring{$\sigma$}{[sigma]}} %Section - 1.1
Lorem Ipsum is simply dummy text of the printing and typesetting industry (see
Section~\ref{section1.3}). Lorem Ipsum~\citep{Aup91} has been the industry's
standard dummy text ever since the 1500s, when an unknown printer took a galley
of type and scrambled it to make a type specimen book. It has survived not only
five centuries, but also the leap into electronic typesetting, remaining
essentially unchanged. It was popularised in the 1960s with the release of
Letraset sheets containing Lorem Ipsum passages, and more recently with desktop
publishing software like Aldus PageMaker including versions of Lorem
Ipsum~\citep{AAB95,Con90,LM65}.
The most famous equation in the world: $E^2 = (m_0c^2)^2 + (pc)^2$, which is
known as the \textbf{energy-mass-momentum} relation as an in-line equation.
A {\em \LaTeX{} class file}\index{\LaTeX{} class file@LaTeX class file} is a file, which holds style information for a particular \LaTeX{}.
\begin{align}
CIF: \hspace*{5mm}F_0^j(a) = \frac{1}{2\pi \iota} \oint_{\gamma} \frac{F_0^j(z)}{z - a} dz
\end{align}
\nomenclature[z-cif]{$CIF$}{Cauchy's Integral Formula} % first letter Z is for Acronyms
\nomenclature[a-F]{$F$}{complex function} % first letter A is for Roman symbols
\nomenclature[g-p]{$\pi$}{ $\simeq 3.14\ldots$} % first letter G is for Greek Symbols
\nomenclature[g-i]{$\iota$}{unit imaginary number $\sqrt{-1}$} % first letter G is for Greek Symbols
\nomenclature[g-g]{$\gamma$}{a simply closed curve on a complex plane} % first letter G is for Greek Symbols
\nomenclature[x-i]{$\oint_\gamma$}{integration around a curve $\gamma$} % first letter X is for Other Symbols
\nomenclature[r-j]{$j$}{superscript index} % first letter R is for superscripts
\nomenclature[s-0]{$0$}{subscript index} % first letter S is for subscripts
%********************************** %Second Section *************************************
\section{Why do we use loren ipsum?} %Section - 1.2
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using `Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for `lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
%********************************** % Third Section *************************************
\section{Where does it come from?} %Section - 1.3
\label{section1.3}
Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from ``de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham
``Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
Section 1.10.32 of ``de Finibus Bonorum et Malorum", written by Cicero in 45 BC: ``Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?"
1914 translation by H. Rackham: ``But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?"
Section 1.10.33 of ``de Finibus Bonorum et Malorum", written by Cicero in 45 BC: ``At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat."
1914 translation by H. Rackham: ``On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains."
\nomenclature[z-DEM]{DEM}{Discrete Element Method}
\nomenclature[z-FEM]{FEM}{Finite Element Method}
\nomenclature[z-PFEM]{PFEM}{Particle Finite Element Method}
\nomenclature[z-FVM]{FVM}{Finite Volume Method}
\nomenclature[z-BEM]{BEM}{Boundary Element Method}
\nomenclature[z-MPM]{MPM}{Material Point Method}
\nomenclature[z-LBM]{LBM}{Lattice Boltzmann Method}
\nomenclature[z-MRT]{MRT}{Multi-Relaxation
Time}
\nomenclature[z-RVE]{RVE}{Representative Elemental Volume}
\nomenclature[z-GPU]{GPU}{Graphics Processing Unit}
\nomenclature[z-SH]{SH}{Savage Hutter}
\nomenclature[z-CFD]{CFD}{Computational Fluid Dynamics}
\nomenclature[z-LES]{LES}{Large Eddy Simulation}
\nomenclature[z-FLOP]{FLOP}{Floating Point Operations}
\nomenclature[z-ALU]{ALU}{Arithmetic Logic Unit}
\nomenclature[z-FPU]{FPU}{Floating Point Unit}
\nomenclature[z-SM]{SM}{Streaming Multiprocessors}
\nomenclature[z-PCI]{PCI}{Peripheral Component Interconnect}
\nomenclature[z-CK]{CK}{Carman - Kozeny}
\nomenclature[z-CD]{CD}{Contact Dynamics}
\nomenclature[z-DNS]{DNS}{Direct Numerical Simulation}
\nomenclature[z-EFG]{EFG}{Element-Free Galerkin}
\nomenclature[z-PIC]{PIC}{Particle-in-cell}
\nomenclature[z-USF]{USF}{Update Stress First}
\nomenclature[z-USL]{USL}{Update Stress Last}
\nomenclature[s-crit]{crit}{Critical state}
\nomenclature[z-DKT]{DKT}{Draft Kiss Tumble}
\nomenclature[z-PPC]{PPC}{Particles per cell}

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 153 KiB

View File

@ -0,0 +1,499 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.12.14 (http://cairographics.org)
%%CreationDate: Mon Nov 25 23:50:21 2013
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 -1 324 217
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 -1 324 217
%%EndPageSetup
q 0 -1 324 218 rectclip q
0.137255 0.121569 0.12549 rg
289.105 108.428 m 289.105 108.428 291.168 107.163 294.961 103.749 c 297.359
105.046 315.613 112.717 320.66 108.37 c 325.824 104.042 322.562 91.479
322.562 91.479 c 321.543 87.772 320.012 84.475 317.973 81.518 c 314.539
76.932 310.426 73.331 305.703 70.78 c 300.844 68.366 293.609 67.772 291.699
67.889 c 288.309 65.151 282.738 63.456 280.789 62.928 c 285.664 52.983
285.012 40.944 280.789 38.764 c 276.562 36.581 271.75 42.085 270.047 44.882
c 269.844 43.987 269.777 39.51 270.422 38.389 c 271.172 37.233 l 273.312
35.128 l 274.332 34.346 275.145 33.018 275.793 31.081 c 278.344 31.862
280.383 33.526 281.91 36.077 c 283.203 38.764 284.934 41.311 287.109 43.76
c 293.945 49.546 302.066 47.565 302.066 47.565 c 296.324 45.46 l 294.012
44.436 291.973 42.975 290.172 41.073 c 288.504 39.139 287.246 36.893 286.328
34.346 c 285.309 31.659 283.578 29.311 281.164 27.241 c 284.223 24.385
l 285.957 26.288 l 285.445 28.702 285.754 30.264 286.906 30.913 c 287.824
31.659 288.914 31.659 290.172 30.913 c 292.211 32.03 293.809 31.862 294.961
30.335 c 296.117 28.803 296.492 26.354 296.117 23.026 c 295.879 19.831
294.859 16.772 293.059 13.846 c 291.258 10.889 288.98 9.499 286.16 9.6 c
278.273 11.71 l 269.266 13.268 l 265.426 12.288 l 260.262 10.757 l 254.891
10.382 l 253.871 10.757 252.715 10.757 251.422 10.382 c 249.145 9.6 l 244.727
7.495 l 236.297 3.108 l 234.191 1.952 l 230.52 0.221 l 228.617 -0.29 226.441
0.085 224.027 1.374 c 221.344 2.768 219.336 5.725 218.078 10.178 c 217.297
12.725 217.297 14.87 218.078 16.534 c 220.934 20.749 l 222.871 22.854 l
225.93 23.026 l 226.953 22.382 227.598 21.495 227.836 20.342 c 227.461
17.655 l 228.82 16.534 l 229.941 19.085 231.402 21.19 233.203 22.854 c 234.191
23.604 l 238.777 26.698 l 238.777 26.698 236.867 34.94 240.531 43.194 c
239.184 42.319 236.672 41.073 235.141 39.917 c 234.191 39.139 l 229.398
37.401 l 226.953 37.167 224.98 38.05 223.449 40.089 c 220.188 39.917 l
218.453 41.448 l 216.789 41.823 216.039 42.842 216.145 44.507 c 216.414
46.444 218.352 47.768 221.922 48.553 c 219.984 50.456 l 219.336 51.374 219.473
52.257 220.355 53.139 c 221.273 53.921 222.805 53.921 224.98 53.139 c 227.02
52.495 229.125 50.796 231.301 47.971 c 231.301 47.971 244.977 66.37 256.621
65.784 c 246.461 76.522 l 243.336 80.124 241.645 91.132 252.988 88.046
c 253.707 98.694 256.723 102.241 259.844 104.198 c 259.793 105.573 261.414
107.592 261.414 107.592 c 261.414 107.592 260.426 105.522 260.531 104.514
c 261.113 104.94 261.645 105.151 262.016 105.362 c 262.543 107.053 264.102
109.12 264.102 109.12 c 264.102 109.12 262.914 106.948 262.965 105.889
c 263.918 106.421 265.664 107.745 272.324 108.948 c 272.324 110.854 l 270.797
111.362 267.535 110.854 267.535 110.854 c 267.535 110.854 269.422 111.975
272.531 112.382 c 274.555 120.971 285.875 124.038 286.988 121.022 c 288.953
115.065 287.57 112.346 289.105 108.428 c f*
0.807843 0.478431 0.105882 rg
286.195 120.335 m 287.727 115.417 286.387 113.194 287.887 108.905 c 279.633
115.272 l 280.516 113.471 282.191 111.167 282.895 110.276 c 280.586 111.288
278.152 112.135 273.867 112.241 c 275.613 119.331 285.453 122.241 286.195
120.335 c h
319.688 106.878 m 321.484 105.257 322.051 102.221 321.812 99.94 c 320.797
112.186 304.547 102.05 301.488 99.366 c 298.293 96.917 295.984 93.858 294.59
90.155 c 293.57 88.112 293.262 86.007 293.637 83.831 c 293.875 81.76 294.793
80.296 296.324 79.413 c 295.402 75.436 293.434 72.175 290.375 69.624 c
287.281 67.21 283.5 65.108 280.109 64.092 c 280.109 64.092 279.105 66.315
274.926 63.831 c 278.203 67.85 278.574 72.346 278.574 72.346 c 280.961
72.139 l 280.961 72.139 267.805 73.292 267.363 76.932 c 266.961 80.296 271.375
84.003 271.375 84.003 c 271.375 84.003 269.738 83.233 267.535 80.737 c
267.535 80.737 266.934 81.132 266.406 81.553 c 271.75 90.811 276.035 94.042
275.012 97.428 c 274.395 100.229 277.898 103.378 277.898 103.378 c 277.898
103.378 273.18 100.651 274.059 98.382 c 271.273 100.6 273.855 105.483 273.855
105.483 c 273.855 105.483 269.961 101.194 272.227 98.327 c 269.211 97.374
266.648 94.675 264.848 91.479 c 262.809 88.421 261.855 85.428 261.992 82.471
c 257.574 81.893 l 257.574 81.893 257.051 82.483 256.621 83.05 c 259.633
92.878 264.555 97.69 262.945 100.893 c 262.297 102.151 262.195 103.378
262.57 104.53 c 262.57 104.53 263.832 105.272 264.789 105.682 c 266.246
106.471 265.93 103.51 265.93 103.51 c 265.93 103.51 266.723 105.307 266.301
106.21 c 271.75 108.803 283.477 107.999 283.477 107.999 c 274.434 111.225
l 274.434 111.225 278.047 111.499 285.379 108.542 c 284.816 109.385 282.691
111.432 282.691 111.432 c 282.691 111.432 290.375 106.526 293.809 103.378
c 292.488 103.405 289.594 102.8 289.594 102.8 c 289.594 102.8 295.93 102.979
296.617 102.979 c 308.734 108.749 317.305 109.065 319.688 106.878 c h
275.59 103.581 m 278.918 104.839 281.094 104.839 282.113 103.581 c 283.031
102.288 282.691 100.76 281.164 98.96 c 281.672 101.268 281.625 102.288
280.789 103.378 c 279.949 104.464 275.59 103.581 275.59 103.581 c h
277.727 109.065 m 273.312 108.948 l 273.48 110.479 l h
261.414 101.846 m 260.633 103.206 l 261.414 103.581 l h
251.625 75.37 m 251.625 75.37 251.484 73.948 252 72.139 c 251.523 72.639
248.965 75.581 247.988 76.729 c 243.285 82.214 244.711 89.991 253.531 87.467
c 253.602 88.589 253.707 98.538 260.055 102.628 c 260.055 102.628 260.27
101.815 260.836 101.065 c 259.898 100.6 253.918 98.01 254.109 85.155 c
251.961 87.796 242.316 85.456 251.625 75.37 c h
261.008 60.245 m 262.672 59.596 264.746 60.042 267.16 61.569 c 267.16 61.569
271.008 61.503 273.18 62.768 c 271.75 61.553 270.422 58.885 270.422 58.885
c 270.422 58.885 274.449 64.464 278.047 63.776 c 279.527 63.46 280.008
62.35 280.789 59.667 c 282.184 55.452 282.895 51.374 282.895 47.393 c 282.523
43.69 281.469 41.382 279.805 40.495 c 278 39.987 276.301 40.428 274.637
41.823 c 270.219 45.866 l 271 49.3 l 269.844 47.022 268.824 45.729 267.941
45.46 c 265.258 44.71 l 264.102 42.026 l 262.367 40.292 l 261.348 40.53
260.973 41.55 261.211 43.35 c 262.164 47.971 l 260.633 45.288 l 260.262
41.448 l 258.73 42.229 258.219 43.35 258.73 44.882 c 260.055 48.721 l 257.949
45.663 l 254.684 45.085 l 252.406 45.288 l 252.137 46.175 252.578 46.987
253.734 47.768 c 257.371 49.706 l 260.836 51.608 l 262.164 52.936 l 262.809
53.581 263.898 54.128 265.426 54.499 c 268.867 54.78 276.168 50.659 276.168
50.659 c 276.168 50.659 268.707 56.604 263.785 55.178 c 261.484 56.686
258.73 55.823 258.73 55.823 c 257.066 55.042 255.707 54.092 254.684 52.936
c 253.562 51.815 252.852 51.374 252.578 51.608 c 252.988 55.249 l 253.496
56.776 253.09 57.932 251.832 58.714 c 252.953 59.971 254.312 60.925 255.84
61.569 c 252.883 60.925 250.098 58.952 247.41 55.62 c 244.59 52.186 242.551
48.721 241.262 45.288 c 234.77 41.448 l 237.047 44.71 l 237.965 45.729
238.133 46.885 237.625 48.143 c 237.25 48.925 236.469 49.163 235.348 48.925
c 234.191 48.553 l 232.082 46.444 l 231.676 47.393 l 231.676 47.393 244.184
64.624 257.777 65.206 c 258.152 62.655 259.242 61.022 261.008 60.245 c
h
230.145 47.971 m 232.457 45.288 l 234.191 47.393 l 236.469 47.768 l 236.977
46.885 236.875 45.932 236.094 44.882 c 234.191 42.397 l 233.273 40.596
231.676 39.475 229.398 38.967 c 225.559 39.917 l 224.027 41.073 l 223.246
41.073 l 224.773 46.038 l 226.711 48.925 l 225.352 47.971 l 223.688 48.346
222.43 48.925 221.512 49.706 c 220.629 50.725 220.492 51.542 221.137 52.186
c 222.16 52.698 223.383 52.698 224.773 52.186 c 228.039 50.081 l h
228.617 44.132 m 227.359 43.624 227.086 42.772 227.836 41.651 c 228.48
40.495 229.465 40.053 230.723 40.292 c 228.617 42.026 l h
234.191 21.327 m 234.191 21.327 237.535 24.546 239.152 25.339 c 242.516
16.526 248.309 13.831 253.152 13.987 c 255.137 14.225 272.199 18.749 261.961
38.987 c 262.914 39.303 264.68 40.089 264.68 40.089 c 265.629 43.553 l
269.266 44.71 l 268.484 41.514 268.555 39.139 269.473 37.604 c 269.641 37.233
l 272.324 33.971 l 273.348 32.952 273.992 31.217 274.262 28.803 c 272.598
28.53 270.902 28.19 269.844 27.241 c 279.262 29.385 283.477 23.229 283.477
23.229 c 282.691 20.921 l 282.895 18.061 l 284.02 22.073 l 286.16 24.553
l 287.043 21.87 287.109 19.592 286.328 17.655 c 285.547 15.991 285.309
13.882 285.582 11.335 c 277.527 13.065 l 269.062 14.596 l 264.848 13.44
l 259.684 12.288 l 255.094 12.116 l 251.422 11.913 l 249.145 11.163 l 246.969
10.382 244.422 9.159 241.465 7.495 c 234.191 3.854 l 230.352 2.124 l 230.352
3.514 230.145 5.01 229.77 6.542 c 227.461 10.757 l 226.578 12.147 226.203
13.749 226.305 15.55 c 226.883 16.534 l 229.566 14.018 l 231.504 10.178
l 231.504 12.624 230.859 14.561 229.566 15.956 c 233.984 21.124 l h
298.805 47.393 m 294.316 46.104 291.191 44.233 289.387 41.823 c 287.484
39.546 285.957 37.096 284.801 34.55 c 283.543 32.135 281.742 29.96 279.43
28.022 c 276.371 28.803 l 276.168 29.553 l 278.988 30.842 281.164 32.815
282.691 35.499 c 284.086 38.182 285.887 40.803 288.062 43.35 c 290.238
45.8 293.809 47.159 298.805 47.393 c h
217.672 43.928 m 217.809 44.846 218.656 45.8 220.188 46.815 c 224.605 47.393
l 223.449 46.038 l 222.871 44.507 l 221.578 43.487 220.426 42.975 219.406
42.975 c 218.387 42.842 217.809 43.147 217.672 43.928 c h
222.668 43.553 m 222.871 41.073 l 219.984 42.026 l 222.668 43.553 l f*
0.968627 0.596078 0.572549 rg
321.031 96.272 m 321.031 92.565 319.637 88.284 316.816 83.425 c 313.621
78.698 309.645 75.061 304.922 72.514 c 300.195 70.1 296.117 69.014 292.652
69.253 c 295.199 72.444 297.371 76.6 297.441 79.21 c 301.75 77.796 305.5
82.096 305.5 82.096 c 305.5 82.096 298.363 77.585 295.742 81.518 c 294.352
83.46 294.215 85.94 295.336 88.999 c 296.355 92.057 298.293 94.948 301.113
97.632 c 303.938 100.178 308.223 102.639 310.699 103.581 c 322.754 109.331
321.031 96.272 321.031 96.272 c f*
1 g
266.004 81.721 m 265.242 81.815 262.945 82.303 262.945 82.303 c 264.848
85.733 l 265.121 87.128 264.828 88.35 263.898 88.046 c 267.359 96.315 273.602
98.432 273.867 97.108 c 274.605 92.979 269.582 88.483 266.004 81.721 c
h
256.215 83.257 m 255.824 83.671 255.094 84.581 255.094 84.581 c 256.621
87.842 l 256.863 89.374 256.488 90.292 255.469 90.526 c 255.84 93.62 256.828
96.034 258.355 97.835 c 259.887 99.635 261.645 101.233 261.992 99.94 c
263.285 96.421 259.793 94.303 256.215 83.257 c h
252.781 82.303 m 255.094 82.096 l 256.621 80.737 l 254.516 80.94 l 252.781
82.303 l f*
0.988235 0.909804 0.682353 rg
266.582 76.151 m 266.582 76.151 263.152 73.592 258.527 73.671 c 255.891
73.749 253.734 76.729 252.578 77.1 c 254.312 75.37 l 244.223 81.132 251.047
89.702 256.215 82.471 c 255.332 83.073 253.531 83.257 253.531 83.257 c
252.648 83.491 252.07 83.323 251.832 82.678 c 251.457 81.655 251.695 80.772
252.578 79.991 c 254.109 78.26 l 255.84 79.042 l 257.574 79.616 l 257.574
79.616 257.957 80.475 257.949 81.147 c 262.543 82.296 265.703 81.237 267.363
80.569 c 265.73 78.112 266.582 76.151 266.582 76.151 c h
271.953 73.092 m 271.953 73.092 274.926 72.667 278.152 72.346 c 278.152
68.749 274.773 64.425 273.688 63.678 c 271.645 62.401 268.109 62.147 268.109
62.147 c 270.625 65.038 l 268.52 63.096 l 267.227 62.214 266.07 61.569
265.051 61.194 c 263.012 60.311 260.77 60.893 259.477 62.928 c 257.598 65.893
257.574 69.456 257.574 69.456 c 257.371 66.565 l 255.094 68.878 l 255.094
68.878 253.285 70.792 252.781 71.358 c 252.039 73.87 252.238 75.057 252.238
75.057 c 253.43 74.425 255.469 74.249 255.469 74.249 c 256.488 73.194 257.812
72.616 259.477 72.514 c 260.465 67.143 l 260.699 64.967 261.855 63.745
263.898 63.507 c 265.426 63.507 267.09 64.389 268.895 66.19 c 270.695 67.858
271.715 70.135 271.953 73.092 c f*
0.929412 0.117647 0.172549 rg
266.379 66.768 m 267.672 69.315 269.129 70.577 270.797 70.577 c 270.016
68.913 269.062 67.448 267.941 66.19 c 266.785 65.038 265.215 63.948 263.32
64.257 c 260.27 64.827 267.043 70.042 267.16 69.456 c 267.277 68.87 266.379
66.768 266.379 66.768 c f*
0.984314 0.803922 0.376471 rg
262.57 54.671 m 260.262 52.764 l 258.527 50.827 l 255.57 50.081 253.531
49.132 252.406 47.971 c 251.016 46.815 250.676 45.526 251.422 44.132 c
254.109 43.553 l 257.574 44.71 l 258.152 41.073 l 258.152 41.073 259.715
39.182 260.836 38.967 c 266.008 32.8 266.562 16.686 252.578 14.971 c 245.215
14.065 227.754 31.21 251.051 58.135 c 252.07 57.628 252.578 56.846 252.578
55.823 c 251.832 52.936 l 251.32 51.917 251.492 51.1 252.406 50.456 c 254.684
51.815 l 258.355 54.671 l 259.613 55.589 261.043 55.589 262.57 54.671 c
h
292.48 24.964 m 290.953 29.925 l 292.074 30.436 293.094 30.132 294.012
28.971 c 294.793 27.819 295.168 25.917 295.168 23.229 c 294.656 19.116 293.363
15.921 291.324 13.643 c 289.152 11.467 287.688 10.655 286.906 11.163 c
286.023 12.182 285.887 13.643 286.535 15.55 c 287.859 21.698 l 286.906 26.698
l 286.668 28.464 287.043 29.553 288.062 29.925 c 289.082 30.061 289.965
29.483 290.746 28.225 c h
226.137 20.171 m 226.371 19.151 226.238 17.995 225.727 16.706 c 225.082
15.682 225.082 14.155 225.727 12.116 c 228.242 7.323 l 229.398 3.854 l
229.5 2.839 229.262 2.053 228.617 1.546 c 224.98 2.327 l 223.18 3.245 221.578
5.01 220.188 7.698 c 219.168 10.01 218.793 12.182 219.031 14.221 c 219.406
16.397 220.051 17.858 220.934 18.639 c 222.293 15.55 l 221.715 18.233 l
222.871 20.921 l 224.773 21.124 l 226.137 20.171 l f*
0.0627451 0.0588235 0.0509804 rg
248.922 84.108 m 246.723 86.315 238.891 91.077 238.891 91.077 c 238.891
91.077 246.301 87.69 249.5 84.604 c 249.637 84.448 249.617 84.21 249.457
84.069 c 249.387 84.007 249.297 83.975 249.211 83.975 c 249.102 83.975
248.996 84.022 248.922 84.108 c f
248.586 82.038 m 243.762 83.51 238.152 83.51 238.152 83.51 c 238.152 83.51
243.441 84.303 248.828 82.753 c 249.023 82.686 249.129 82.471 249.062 82.276
c 249.035 82.186 248.973 82.116 248.898 82.069 c 248.805 82.018 248.691
82.003 248.586 82.038 c f
262.953 78.772 m 262.879 78.971 262.977 79.19 263.176 79.264 c 271.801
81.288 279.34 80.178 279.34 80.178 c 279.34 80.178 267.953 79.897 263.441
78.553 c 263.445 78.55 l 263.398 78.534 263.355 78.526 263.312 78.526 c
263.156 78.526 263.012 78.62 262.953 78.772 c f
281.602 74.303 m 281.594 74.303 273.113 76.846 266.219 76.995 c 264.891
76.995 263.578 76.905 262.336 76.71 c 262.34 76.706 l 262.129 76.675 261.934
76.815 261.902 77.022 c 261.867 77.229 262.008 77.428 262.219 77.46 c 263.508
77.667 264.855 77.757 266.219 77.757 c 273.91 77.753 281.602 74.303 281.602
74.303 c f
113.98 180.616 m 113.98 180.616 106.926 177.385 100.598 172.639 c 106.004
175.21 112.859 177.78 112.859 177.78 c h
121.371 31.284 m 81.219 36.245 73.832 68.811 47.797 66.151 c 48.781 66.835
51.438 69.514 51.438 69.514 c 51.438 69.514 43.641 71.448 33.145 63.612
c 32.184 65.956 27.422 79.757 39.02 93.538 c 6.723 111.397 21.059 137.483
20.566 160.971 c 20.566 170.991 15.488 185.76 0 184.643 c 33.754 199.866
65.66 179.69 83.312 166.01 c 90.852 172.081 98.953 177.104 107.68 181.143
c 107.68 181.143 113.676 183.616 114.848 184.19 c 129.672 213.577 157.535
216.659 157.535 216.659 c 157.535 216.659 135.934 201.909 141.754 181.143
c 150.699 181.342 157.195 178.124 157.195 178.124 c 157.195 178.124 149.578
179.034 142.402 178.292 c 142.523 176.991 142.883 172.561 142.883 172.561
c 142.883 172.561 148.789 171.385 154.969 165.698 c 157.754 167.561 159.766
164.596 159.766 164.596 c 167.246 168.62 175.379 148.987 175.379 148.987
c 190.383 133.811 180.77 102.8 180.77 102.8 c 180.461 100.456 180.141 99.178
181.109 97.378 c 183.879 93.686 191.789 96.233 194.973 86.225 c 193.418
87.007 192.828 87.608 192.402 87.495 c 200.402 79.096 195.723 70.788 189.383
68.694 c 189.383 68.694 190.438 70.569 190.652 71.401 c 187.438 67.229
178.543 61.69 178.543 61.69 c 179.672 65.362 l 166.125 48.573 156.961 49.1
146.598 37.178 c 146.598 37.178 139.559 17.983 121.371 31.284 c f*
0.470588 0.505882 0.509804 rg
154.969 215.725 m 151.465 212.37 l 144.633 204.885 l 141.867 201.807 139.41
198.307 137.293 194.385 c 135.062 190.233 133.652 185.772 133.004 181.003
c 133.004 181.003 125.387 180.616 114.059 177.811 c 115.469 181.143 l 123.434
184.19 l 132.832 187.046 l 129.137 187.467 124.082 186.788 117.699 184.983
c 122.078 192.405 126.961 198.366 132.352 202.823 c 137.578 207.061 142.348
210.194 146.695 212.198 c h
93.336 88.143 m 91.953 88.995 90.43 89.585 88.734 89.897 c 90.316 89.135
91.473 88.456 92.234 87.807 c 93.984 86.706 l 93.984 86.706 86.93 72.151
92.027 67.581 c 91.676 58.792 93.961 61.167 93.961 61.167 c 95.23 55.971
97.43 51.018 100.508 46.249 c 103.473 41.592 106.832 38.034 110.527 35.577
c 100.453 39.925 92.18 44.639 85.684 49.749 c 79.219 54.858 73.32 59.151
68.012 62.651 c 62.703 66.264 56.805 67.76 50.34 67.112 c 53.527 69.514
l 56.238 69.342 l 58.129 68.694 l 50.496 74.346 36.258 71.315 33.625 66.323
c 33.227 93.596 42.453 90.565 61.18 111.069 c 61.18 111.069 65.133 116.01
62.449 118.862 c 60.953 119.936 59.684 120.217 58.609 119.678 c 57.34 119.37
56.297 118.663 55.422 117.592 c 54.008 114.401 l 53.586 117.167 54.23 122.69
61.488 123.01 c 54.98 127.35 48.898 121.092 48.898 121.092 c 48.898 121.092
52.605 128.671 59.262 129.874 c 60.051 128.432 l 60.25 128.01 60.84 127.725
61.801 127.643 c 60.305 129.987 59.938 132.245 60.699 134.475 c 61.547
136.706 62.703 138.37 64.199 139.417 c 62.59 137.413 61.914 135.55 62.109
133.854 c 62.109 132.132 62.59 130.803 63.551 129.874 c 64.312 129.112
65.301 128.8 66.57 128.913 c 73.305 130.339 72.305 138.456 72.305 138.456
c 73.262 134.475 l 73.574 137.241 73.121 140.319 71.852 143.733 c 70.355
147.237 68.719 150.37 66.91 153.108 c 62.984 159.065 58.102 164.26 52.258
168.721 c 47.375 172.448 42.152 175.635 36.645 178.292 c 26.227 182.948
15.188 185.292 3.5 185.292 c 12.961 187.635 21.539 188.428 29.305 187.69
c 36.957 186.928 44.016 185.237 50.508 182.581 c 56.746 180.128 62.422
177.276 67.531 173.971 c 72.418 170.893 76.934 168.214 81.082 165.87 c 85.121
163.639 88.762 162.339 92.066 162.03 c 88.254 163.78 l 86.758 164.315 85.488
164.967 84.414 165.698 c 86.531 167.62 89.891 170.018 94.465 172.87 c 99.012
175.835 104.062 178.546 109.598 181.003 c 115.102 183.542 120.523 185.178
125.832 185.94 c 117.871 183.6 111.121 180.717 105.617 177.331 c 105.617
177.331 94.457 170.01 92.715 167.928 c 120.109 181.405 142.883 180.577
148.926 179.729 c 148.926 179.729 119.848 178.635 112.449 173.042 c 112.449
173.042 139.492 177.186 154.348 164.741 c 153.922 163.78 153.863 162.706
154.176 161.55 c 154.402 160.507 154.77 159.6 155.305 158.839 c 155.617
163.467 l 156.039 164.854 157.227 164.995 159.117 163.948 c 158.156 162.03
157.848 159.913 158.156 157.569 c 158.469 155.225 159.117 153.053 160.078
151.046 c 161.035 149.155 161.941 147.831 162.789 147.065 c 162.957 149.467
l 163.266 153.448 l 163.352 154.831 163.773 155.678 164.539 155.987 c 165.387
156.3 166.711 155.819 168.52 154.55 c 173.77 149.296 l 173.77 149.296 189.066
135.26 179.02 101.671 c 178.781 100.717 178.668 94.964 184.133 94.018 c
189.594 93.069 192.262 89.249 192.262 89.249 c 189.723 89.643 l 189.723
89.643 201.984 78.964 190.965 70.303 c 191.176 70.612 192.668 72.94 191.781
73.971 c 186.297 68.065 180.363 64.065 180.363 64.065 c 180.363 64.065
182.477 68.327 183.004 71.401 c 172.719 57.87 164.848 54.042 164.848 54.042
c 167.418 58.077 169.363 62.284 170.75 66.632 c 170.75 66.632 179.836 71.581
182.859 80.635 c 183.352 81.553 l 183.891 83.788 184.133 85.944 183.82
87.327 c 183.66 88.128 l 183.348 89.624 182.926 91.37 180.941 92.749 c 178.078
94.831 173.629 94.018 173.629 94.018 c 176.902 103.788 178.43 111.917 178.23
118.409 c 178.031 125.1 177.016 130.182 175.211 133.682 c 173.402 137.1
171.848 138.964 170.578 139.272 c 168.688 139.585 167.191 139.19 166.117
138.143 c 164.961 137.186 164.199 135.686 163.887 133.682 c 163.152 136.026
162.25 137.495 161.18 138.143 c 160.02 138.796 159.059 138.456 158.328
137.186 c 156.098 144.354 l 153.863 147.858 l 152.059 149.975 150.309 150.792
148.613 150.257 c 147.344 149.835 146.582 148.76 146.387 147.065 c 146.387
145.147 l 146.695 141.026 l 147.004 138.905 147.484 136.819 148.137 134.811
c 146.133 137.553 144.465 138.764 143.195 138.456 c 141.809 138.143 141.078
136.706 140.965 134.163 c 137.773 138.456 l 133.004 142.604 l 131.195 143.651
129.5 143.987 127.891 143.565 c 125.551 142.917 123.801 140.374 122.641
135.913 c 121.598 131.565 121.598 125.721 122.641 118.409 c 123.801 111.069
126.68 102.741 131.254 93.397 c 131.254 93.397 128.234 93.889 126.48 93.878
c 125.516 99.573 122.5 102.46 122.5 102.46 c 122.5 102.46 129.473 91.225
121.852 83.827 c 120.891 83.038 l 117.391 80.69 113.832 79.76 110.219 80.182
c 106.688 80.596 102.973 82.061 99.039 84.6 c h
133.312 159.487 m 136.617 156.835 138.734 153.928 139.691 150.737 c 136.504
153.475 127.414 159.686 121.852 156.635 c 116.289 153.589 116.77 144.132
117.078 143.085 c 114.004 145.741 112.082 148.561 111.348 151.526 c 110.504
154.717 110.445 157.51 111.18 159.967 c 111.828 162.51 112.621 164.967
114.848 165.87 c 122.617 167.3 129.926 162.339 133.312 159.487 c h
132.352 177.331 m 132.523 174.932 l 126.793 175.413 l 119.93 175.1 l 126.961
176.542 l h
106.098 167.448 m 103.219 164.596 101.242 160.874 100.195 156.3 c 98.926
151.839 99.18 146.842 100.988 141.335 c 99.18 144.3 98.332 147.6 98.445
151.217 c 98.531 154.831 99.32 158.163 100.816 161.237 c 102.203 164.315
103.98 166.405 106.098 167.448 c h
96.355 160.928 m 94.945 155.339 l 94.832 153.53 95.145 151.3 95.879 148.647
c 94.605 150.764 94.098 152.995 94.297 155.339 c 94.492 157.796 95.199
159.659 96.355 160.928 c f*
0.968627 0.596078 0.572549 rg
139.863 191.503 m 139.438 188.737 139.633 185.557 140.281 181.405 c 134.348
181.143 l 134.348 183.26 134.977 185.405 136.023 187.835 c 136.871 190.401
137.887 192.717 139.043 194.835 c 141.926 199.464 l 140.852 196.925 140.172
194.272 139.863 191.503 c h
141.133 173.182 m 134.273 174.792 l 134.273 177.503 l 141.133 178.124 l
h
30.914 179.561 m 34.953 177.952 38.961 176.007 42.996 173.663 c 54.008
165.87 l 60.699 160.139 65.895 153.448 69.621 145.796 c 70.469 143.678 71.004
141.335 71.203 138.796 c 71.547 134.823 70.055 129.897 65.781 130.663 c
60.559 131.745 66.188 142.116 66.188 142.116 c 66.188 142.116 57.484 137.635
59.262 130.663 c 59.262 130.663 47.199 128.671 47.316 117.928 c 51.777
122.053 l 53.473 123.124 55.422 123.55 57.648 123.323 c 55.645 122.788 54.148
121.319 53.219 118.862 c 52.344 116.432 52.879 114.061 54.801 111.721 c
54.602 112.764 58.012 121.151 61.32 118.241 c 62.496 117.592 62.027 115.729
60.531 112.651 c 59.035 109.913 56.07 106.975 51.609 103.897 c 40.316 94.667
l 32.805 99.921 l 28.457 104.178 25.27 109.065 23.262 114.569 c 21.031
120.19 19.961 126.202 20.074 132.585 c 20.496 141.503 21.316 150.257 22.473
158.839 c 22.133 164.909 l 20.555 171.12 l 17.672 177.811 l 16.402 180.155
14.711 182.104 12.59 183.714 c 12.113 184.022 l 18.465 183.26 24.73 181.792
30.914 179.561 c f*
0.980392 0.952941 0.356863 rg
136.336 137.835 m 139.297 134.417 141.953 129.815 144.297 123.971 c 146.523
118.241 147.598 112.116 147.484 105.647 c 146.441 108.952 145.312 110.956
144.152 111.721 c 143.082 112.565 142.293 112.878 141.754 112.651 c 140.172
112.229 139.016 110.874 138.254 108.53 c 137.406 106.186 137.152 103.389
137.465 100.089 c 137.66 96.897 138.367 93.764 139.523 90.686 c 136.812
90.206 l 136.812 90.206 134.48 92.104 131.73 93.089 c 129.121 99.05 125.605
109.686 124.559 116.803 c 123.289 124.026 123.008 129.815 123.77 134.163
c 124.504 138.737 126 141.389 128.23 142.128 c 130.574 142.663 133.258
141.221 136.336 137.835 c h
169.477 137.835 m 170.859 137.635 172.328 136.085 173.938 133.206 c 175.324
130.354 176.309 126.682 176.961 122.221 c 177.609 117.647 177.328 112.878
176.168 107.882 c 175.746 110.76 174.617 112.311 172.809 112.51 c 171.004
112.311 169.508 110.28 168.348 106.44 c 166.965 102.741 166.656 98.053
167.418 92.436 c 163.098 90.854 l 164.707 99.862 165.246 109.065 164.707
118.409 c 163.945 124.452 164.059 129.167 165.016 132.585 c 165.754 136.171
167.25 137.921 169.477 137.835 c f*
0.8 0.796078 0.8 rg
158.805 88.288 m 154.258 91.092 145.734 91.307 145.734 91.307 c 148.613
101.979 l 149.039 107.202 148.641 112.397 147.484 117.592 c 146.328 122.897
144.633 127.784 142.402 132.245 c 142.094 136.393 142.883 137.862 144.773
136.706 c 146.582 135.659 148.613 132.413 150.844 126.995 c 149.406 134.163
l 148.445 137.581 147.852 140.768 147.656 143.733 c 147.656 145.007 l 147.656
147.346 148.332 148.76 149.715 149.296 c 151.438 149.495 153.188 147.971
154.969 144.667 c 155.137 144.354 l 156.832 141.167 157.988 136.819 158.637
131.284 c 158.805 134.335 l 158.691 135.913 159.176 136.928 160.246 137.354
c 161.094 137.354 161.77 136.678 162.309 135.296 c 163.406 132.585 l 163.887
129.874 l 163.578 127.303 l 163.887 119.03 l 164.227 110.901 l 164.113
104.014 163.465 97.21 162.309 90.514 c 161.035 89.979 160.133 89.503 159.598
89.077 c 158.805 88.288 l f*
0.317647 0.721569 0.215686 rg
175.52 107.569 m 175.941 105.647 175.746 103.362 174.898 100.71 c 174.785
104.124 173.938 105.819 172.328 105.819 c 171.598 105.901 170.805 104.858
169.957 102.628 c 169 100.288 168.773 97.065 169.309 92.917 c 168.207 92.604
l 167.898 98.76 168.32 103.421 169.477 106.608 c 170.637 109.8 171.906
111.268 173.289 111.069 c 174.363 110.76 175.098 109.573 175.52 107.569
c h
142.883 106.44 m 141.727 106.014 140.852 104.178 140.312 100.878 c 139.691
97.803 140.344 94.553 142.234 91.167 c 140.172 90.854 l 138.676 94.132
137.941 97.319 137.941 100.397 c 137.832 103.475 138.254 106.046 139.215
108.05 c 139.945 110.053 140.852 111.182 141.926 111.382 c 143.504 111.382
144.773 110.221 145.734 107.882 c 146.582 105.538 147.004 103.276 147.004
101.05 c 145.594 105.171 l 144.832 106.245 143.93 106.667 142.883 106.44
c f*
1 g
158.805 88.288 m 158.805 88.288 176.805 96.632 181.59 89.557 c 186.031
81.206 170.211 61.167 161.906 68.55 c 162.957 70.303 l 162.957 70.303 152.676
61.69 145.734 62.175 c 141.734 62.612 139.156 64.628 136.504 67.28 c 129.02
75.245 l 125.352 78.573 l 124.191 79.729 122.809 80.635 121.203 81.288
c 121.203 81.288 126.395 84.632 126.621 92.604 c 129.031 93.249 135.008
91.167 136.504 90.206 c 132.832 88.764 l 132.832 88.764 148.852 91.885 158.156
86.706 c 156.406 85.745 l 155.926 85.264 l 155.082 84.616 154.602 83.714
154.516 82.553 c 154.516 81.288 155.191 80.436 156.578 80.014 c 161.035
78.405 l 162.617 77.983 164.516 77.155 165.188 75.553 c 167.574 76.721
171.398 80.635 171.398 80.635 c 173.402 82.358 174.418 83.827 174.418 85.096
c 174.109 86.366 172.723 87.327 170.27 87.975 c 170.27 87.975 165.598 89.643
160.246 87.327 c h
164.539 87.327 m 167.441 87.796 170.496 87.085 170.75 86.057 c 171.004
85.026 170.105 83.757 165.809 83.206 c 161.512 82.655 160.273 83.827 160.078
84.475 c 159.965 85.21 161.633 86.854 164.539 87.327 c h
113.891 65.19 m 114.426 60.534 115.469 56.132 117.078 51.979 c 118.574
47.94 121.059 44.44 124.559 41.475 c 126.566 40.21 128.738 39.389 131.082
39.077 c 133.426 38.764 135.266 38.854 137.773 40.518 c 142.523 43.76 144.766
59.053 150.363 60.592 c 152.676 61.167 154.402 62.175 156.098 63.44 c 160.727
67.592 l 163.621 63.139 170.098 66.151 170.098 66.151 c 165.977 57.092
l 164.367 54.128 162.137 51.671 159.285 49.749 c 152.906 44.979 l 147.176
39.557 l 148.02 41.561 148.277 43.596 147.965 45.6 c 147.965 45.6 145.645
30.667 134.441 29.366 c 123.758 28.378 114.734 38.714 114.199 38.909 c
119.453 32.866 l 116.598 33.401 113.41 35.042 109.906 37.807 c 106.297 40.659
102.992 44.44 100.027 49.1 c 97.176 53.788 95.086 59.151 93.816 65.19 c
93.172 61.87 l 93.172 61.87 92.203 68.987 92.996 73.471 c 91.852 71.714
91.586 69.175 91.586 69.175 c 91.586 69.175 89.391 75.667 94.754 86.217
c 95.719 85.425 101.52 80.061 110.391 78.264 c 111.891 77.866 112.93 74.71
113.238 72.362 c 113.891 65.19 l f*
0.929412 0.117647 0.172549 rg
122.02 56.44 m 123.828 55.596 125.746 53.589 127.75 50.397 c 126 54.21
l 127.383 54.21 135.801 52.198 137.465 41.96 c 136.305 40.573 134.555 39.979
132.211 40.21 c 129.641 40.405 127.215 41.475 124.871 43.37 c 122.754 45.288
121.059 47.686 119.789 50.542 c 118.293 53.421 117.391 55.905 117.078 58.018
c 122.02 56.44 l f*
0.0627451 0.0588235 0.0509804 rg
182.516 87.678 m 182.402 87.948 182.527 88.26 182.797 88.374 c 201.32 96.132
215.52 97.081 215.52 97.081 c 215.551 96.792 201.898 95.444 183.203 87.397
c 183.137 87.37 183.066 87.358 183 87.358 c 182.793 87.358 182.598 87.479
182.516 87.678 c f
188.328 81.007 m 185.125 81.007 182.391 80.768 182.344 80.764 c 182.949
81.862 l 200.758 82.964 213.051 76.514 213.051 76.514 c 213.051 76.514
200.887 81.249 188.328 81.007 c f
136.664 84.714 m 111.719 100.366 87.02 103.928 87.02 103.928 c 87.043 104.217
110.402 102.456 137.223 85.608 c 137.223 85.604 l 137.469 85.452 137.543
85.128 137.391 84.882 c 137.289 84.721 137.117 84.635 136.941 84.635 c
136.848 84.635 136.75 84.659 136.664 84.714 c f
136.105 78.882 m 126.23 83.452 110.48 84.725 96.352 84.717 c 88 84.717
64.605 83.428 64.605 83.428 c 64.57 83.717 79.57 85.772 96.352 85.772 c
110.551 85.768 126.367 84.534 136.547 79.839 c 136.812 79.717 136.93 79.401
136.805 79.139 c 136.715 78.944 136.527 78.831 136.328 78.831 c 136.254
78.831 136.18 78.846 136.105 78.882 c f
Q Q
showpage
%%Trailer
end restore
%%EOF

15713
Chapter2/Figs/Vector/WallE.eps Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

109
Chapter2/chapter2.tex Normal file
View File

@ -0,0 +1,109 @@
%*******************************************************************************
%****************************** Second Chapter *********************************
%*******************************************************************************
\chapter{My second chapter}
\ifpdf
\graphicspath{{Chapter2/Figs/Raster/}{Chapter2/Figs/PDF/}{Chapter2/Figs/}}
\else
\graphicspath{{Chapter2/Figs/Vector/}{Chapter2/Figs/}}
\fi
\section[Short title]{Reasonably long section title}
% Uncomment this line, when you have siunitx package loaded.
%The SI Units for dynamic viscosity is \si{\newton\second\per\metre\squared}.
I'm going to randomly include a picture Figure~\ref{fig:minion}.
If you have trouble viewing this document contact Krishna at: \href{mailto:kks32@cam.ac.uk}{kks32@cam.ac.uk} or raise an issue at \url{https://github.com/kks32/phd-thesis-template/}
\begin{figure}[htbp!]
\centering
\includegraphics[width=1.0\textwidth]{minion}
\caption[Minion]{This is just a long figure caption for the minion in Despicable Me from Pixar}
\label{fig:minion}
\end{figure}
\section*{Enumeration}
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed vitae laoreet lectus. Donec lacus quam, malesuada ut erat vel, consectetur eleifend tellus. Aliquam non feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Quisque a dolor sit amet dui malesuada malesuada id ac metus. Phasellus posuere egestas mauris, sed porta arcu vulputate ut. Donec arcu erat, ultrices et nisl ut, ultricies facilisis urna. Quisque iaculis, lorem non maximus pretium, dui eros auctor quam, sed sodales libero felis vel orci. Aliquam neque nunc, elementum id accumsan eu, varius eu enim. Aliquam blandit ante et ligula tempor pharetra. Donec molestie porttitor commodo. Integer rutrum turpis ac erat tristique cursus. Sed venenatis urna vel tempus venenatis. Nam eu rhoncus eros, et condimentum elit. Quisque risus turpis, aliquam eget euismod id, gravida in odio. Nunc elementum nibh risus, ut faucibus mauris molestie eu.
Vivamus quis nunc nec nisl vulputate fringilla. Duis tempus libero ac justo laoreet tincidunt. Fusce sagittis gravida magna, pharetra venenatis mauris semper at. Nullam eleifend felis a elementum sagittis. In vel turpis eu metus euismod tempus eget sit amet tortor. Donec eu rhoncus libero, quis iaculis lectus. Aliquam erat volutpat. Proin id ullamcorper tortor. Fusce vestibulum a enim non volutpat. Nam ut interdum nulla. Proin lacinia felis malesuada arcu aliquet fringilla. Aliquam condimentum, tellus eget maximus porttitor, quam sem luctus massa, eu fermentum arcu diam ac massa. Praesent ut quam id leo molestie rhoncus. Praesent nec odio eget turpis bibendum eleifend non sit amet mi. Curabitur placerat finibus velit, eu ultricies risus imperdiet ut. Suspendisse lorem orci, luctus porta eros a, commodo maximus nisi.
Nunc et dolor diam. Phasellus eu justo vitae diam vehicula tristique. Vestibulum vulputate cursus turpis nec commodo. Etiam elementum sit amet erat et pellentesque. In eu augue sed tortor mollis tincidunt. Mauris eros dui, sagittis vestibulum vestibulum vitae, molestie a velit. Donec non felis ut velit aliquam convallis sit amet sit amet velit. Aliquam vulputate, elit in lacinia lacinia, odio lacus consectetur quam, sit amet facilisis mi justo id magna. Curabitur aliquet pulvinar eros. Cras metus enim, tristique ut magna a, interdum egestas nibh. Aenean lorem odio, varius a sollicitudin non, cursus a odio. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae;
\begin{enumerate}
\item The first topic is dull
\item The second topic is duller
\begin{enumerate}
\item The first subtopic is silly
\item The second subtopic is stupid
\end{enumerate}
\item The third topic is the dullest
\end{enumerate}
Morbi bibendum est aliquam, hendrerit dolor ac, pretium sem. Nunc molestie, dui in euismod finibus, nunc enim viverra enim, eu mattis mi metus id libero. Cras sed accumsan justo, ut volutpat ipsum. Nam faucibus auctor molestie. Morbi sit amet eros a justo pretium aliquet. Maecenas tempor risus sit amet tincidunt tincidunt. Curabitur dapibus gravida gravida. Vivamus porta ullamcorper nisi eu molestie. Ut pretium nisl eu facilisis tempor. Nulla rutrum tincidunt justo, id placerat lacus laoreet et. Sed cursus lobortis vehicula. Donec sed tortor et est cursus pellentesque sit amet sed velit. Proin efficitur posuere felis, porta auctor nunc. Etiam non porta risus. Pellentesque lacinia eros at ante iaculis, sed aliquet ipsum volutpat. Suspendisse potenti.
Ut ultrices lectus sed sagittis varius. Nulla facilisi. Nullam tortor sem, placerat nec condimentum eu, tristique eget ex. Nullam pretium tellus ut nibh accumsan elementum. Aliquam posuere gravida tellus, id imperdiet nulla rutrum imperdiet. Nulla pretium ullamcorper quam, non iaculis orci consectetur eget. Curabitur non laoreet nisl. Maecenas lacinia, lorem vel tincidunt cursus, odio lorem aliquet est, gravida auctor arcu urna id enim. Morbi accumsan bibendum ipsum, ut maximus dui placerat vitae. Nullam pretium ac tortor nec venenatis. Nunc non aliquet neque.
\section*{Itemize}
\begin{itemize}
\item The first topic is dull
\item The second topic is duller
\begin{itemize}
\item The first subtopic is silly
\item The second subtopic is stupid
\end{itemize}
\item The third topic is the dullest
\end{itemize}
\section*{Description}
\begin{description}
\item[The first topic] is dull
\item[The second topic] is duller
\begin{description}
\item[The first subtopic] is silly
\item[The second subtopic] is stupid
\end{description}
\item[The third topic] is the dullest
\end{description}
\clearpage
\tochide\section{Hidden section}
\textbf{Lorem ipsum dolor sit amet}, \textit{consectetur adipiscing elit}. In magna nisi, aliquam id blandit id, congue ac est. Fusce porta consequat leo. Proin feugiat at felis vel consectetur. Ut tempus ipsum sit amet congue posuere. Nulla varius rutrum quam. Donec sed purus luctus, faucibus velit id, ultrices sapien. Cras diam purus, tincidunt eget tristique ut, egestas quis nulla. Curabitur vel iaculis lectus. Nunc nulla urna, ultrices et eleifend in, accumsan ut erat. In ut ante leo. Aenean a lacinia nisl, sit amet ullamcorper dolor. Maecenas blandit, tortor ut scelerisque congue, velit diam volutpat metus, sed vestibulum eros justo ut nulla. Etiam nec ipsum non enim luctus porta in in massa. Cras arcu urna, malesuada ut tellus ut, pellentesque mollis risus.Morbi vel tortor imperdiet arcu auctor mattis sit amet eu nisi. Nulla gravida urna vel nisl egestas varius. Aliquam posuere ante quis malesuada dignissim. Mauris ultrices tristique eros, a dignissim nisl iaculis nec. Praesent dapibus tincidunt mauris nec tempor. Curabitur et consequat nisi. Quisque viverra egestas risus, ut sodales enim blandit at. Mauris quis odio nulla. Cras euismod turpis magna, in facilisis diam congue non. Mauris faucibus nisl a orci dictum, et tempus mi cursus.
Etiam elementum tristique lacus, sit amet eleifend nibh eleifend sed \footnote{My footnote goes blah blah blah! \dots}. Maecenas dapibu augue ut urna malesuada, non tempor nibh mollis. Donec sed sem sollicitudin, convallis velit aliquam, tincidunt diam. In eu venenatis lorem. Aliquam non augue porttitor tellus faucibus porta et nec ante. Proin sodales, libero vitae commodo sodales, dolor nisi cursus magna, non tincidunt ipsum nibh eget purus. Nam rutrum tincidunt arcu, tincidunt vulputate mi sagittis id. Proin et nisi nec orci tincidunt auctor et porta elit. Praesent eu dolor ac magna cursus euismod. Integer non dictum nunc.
\begin{landscape}
\section*{Subplots}
I can cite Wall-E (see Fig.~\ref{fig:WallE}) and Minions in despicable me (Fig.~\ref{fig:Minnion}) or I can cite the whole figure as Fig.~\ref{fig:animations}
\begin{figure}
\centering
\begin{subfigure}[b]{0.3\textwidth}
\includegraphics[width=\textwidth]{TomandJerry}
\caption{Tom and Jerry}
\label{fig:TomJerry}
\end{subfigure}
\begin{subfigure}[b]{0.3\textwidth}
\includegraphics[width=\textwidth]{WallE}
\caption{Wall-E}
\label{fig:WallE}
\end{subfigure}
\begin{subfigure}[b]{0.3\textwidth}
\includegraphics[width=\textwidth]{minion}
\caption{Minions}
\label{fig:Minnion}
\end{subfigure}
\caption{Best Animations}
\label{fig:animations}
\end{figure}
\end{landscape}

152
Chapter3/chapter3.tex Normal file
View File

@ -0,0 +1,152 @@
\chapter{My third chapter}
% **************************** Define Graphics Path **************************
\ifpdf
\graphicspath{{Chapter3/Figs/Raster/}{Chapter3/Figs/PDF/}{Chapter3/Figs/}}
\else
\graphicspath{{Chapter3/Figs/Vector/}{Chapter3/Figs/}}
\fi
\section{First section of the third chapter}
And now I begin my third chapter here \dots
And now to cite some more people~\citet{Rea85,Ancey1996}
\subsection{First subsection in the first section}
\dots and some more
\subsection{Second subsection in the first section}
\dots and some more \dots
\subsubsection{First subsub section in the second subsection}
\dots and some more in the first subsub section otherwise it all looks the same
doesn't it? well we can add some text to it \dots
\subsection{Third subsection in the first section}
\dots and some more \dots
\subsubsection{First subsub section in the third subsection}
\dots and some more in the first subsub section otherwise it all looks the same
doesn't it? well we can add some text to it and some more and some more and
some more and some more and some more and some more and some more \dots
\subsubsection{Second subsub section in the third subsection}
\dots and some more in the first subsub section otherwise it all looks the same
doesn't it? well we can add some text to it \dots
\section{Second section of the third chapter}
and here I write more \dots
\section{The layout of formal tables}
This section has been modified from ``Publication quality tables in \LaTeX*''
by Simon Fear.
The layout of a table has been established over centuries of experience and
should only be altered in extraordinary circumstances.
When formatting a table, remember two simple guidelines at all times:
\begin{enumerate}
\item Never, ever use vertical rules (lines).
\item Never use double rules.
\end{enumerate}
These guidelines may seem extreme but I have
never found a good argument in favour of breaking them. For
example, if you feel that the information in the left half of
a table is so different from that on the right that it needs
to be separated by a vertical line, then you should use two
tables instead. Not everyone follows the second guideline:
There are three further guidelines worth mentioning here as they
are generally not known outside the circle of professional
typesetters and subeditors:
\begin{enumerate}\setcounter{enumi}{2}
\item Put the units in the column heading (not in the body of
the table).
\item Always precede a decimal point by a digit; thus 0.1
{\em not} just .1.
\item Do not use `ditto' signs or any other such convention to
repeat a previous value. In many circumstances a blank
will serve just as well. If it won't, then repeat the value.
\end{enumerate}
A frequently seen mistake is to use `\textbackslash begin\{center\}' \dots `\textbackslash end\{center\}' inside a figure or table environment. This center environment can cause additional vertical space. If you want to avoid that just use `\textbackslash centering'
\begin{table}
\caption{A badly formatted table}
\centering
\label{table:bad_table}
\begin{tabular}{|l|c|c|c|c|}
\hline
& \multicolumn{2}{c}{Species I} & \multicolumn{2}{c|}{Species II} \\
\hline
Dental measurement & mean & SD & mean & SD \\ \hline
\hline
I1MD & 6.23 & 0.91 & 5.2 & 0.7 \\
\hline
I1LL & 7.48 & 0.56 & 8.7 & 0.71 \\
\hline
I2MD & 3.99 & 0.63 & 4.22 & 0.54 \\
\hline
I2LL & 6.81 & 0.02 & 6.66 & 0.01 \\
\hline
CMD & 13.47 & 0.09 & 10.55 & 0.05 \\
\hline
CBL & 11.88 & 0.05 & 13.11 & 0.04\\
\hline
\end{tabular}
\end{table}
\begin{table}
\caption{A nice looking table}
\centering
\label{table:nice_table}
\begin{tabular}{l c c c c}
\hline
\multirow{2}{*}{Dental measurement} & \multicolumn{2}{c}{Species I} & \multicolumn{2}{c}{Species II} \\
\cline{2-5}
& mean & SD & mean & SD \\
\hline
I1MD & 6.23 & 0.91 & 5.2 & 0.7 \\
I1LL & 7.48 & 0.56 & 8.7 & 0.71 \\
I2MD & 3.99 & 0.63 & 4.22 & 0.54 \\
I2LL & 6.81 & 0.02 & 6.66 & 0.01 \\
CMD & 13.47 & 0.09 & 10.55 & 0.05 \\
CBL & 11.88 & 0.05 & 13.11 & 0.04\\
\hline
\end{tabular}
\end{table}
\begin{table}
\caption{Even better looking table using booktabs}
\centering
\label{table:good_table}
\begin{tabular}{l c c c c}
\toprule
\multirow{2}{*}{Dental measurement} & \multicolumn{2}{c}{Species I} & \multicolumn{2}{c}{Species II} \\
\cmidrule{2-5}
& mean & SD & mean & SD \\
\midrule
I1MD & 6.23 & 0.91 & 5.2 & 0.7 \\
I1LL & 7.48 & 0.56 & 8.7 & 0.71 \\
I2MD & 3.99 & 0.63 & 4.22 & 0.54 \\
I2LL & 6.81 & 0.02 & 6.66 & 0.01 \\
CMD & 13.47 & 0.09 & 10.55 & 0.05 \\
CBL & 11.88 & 0.05 & 13.11 & 0.04\\
\bottomrule
\end{tabular}
\end{table}

1300
Classes/PhDThesisPSnPDF.cls Normal file

File diff suppressed because it is too large Load Diff

4613
Classes/glyphtounicode.tex Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,17 @@
% ******************************* Thesis Declaration ***************************
\begin{declaration}
I hereby declare that except where specific reference is made to the work of
others, the contents of this dissertation are original and have not been
submitted in whole or in part for consideration for any other degree or
qualification in this, or any other university. This dissertation is my own
work and contains nothing which is the outcome of work done in collaboration
with others, except as specified in the text and Acknowledgements. This
dissertation contains fewer than 65,000 words including appendices,
bibliography, footnotes, tables and equations and has fewer than 150 figures.
% Author and date will be inserted automatically from thesis.tex \author \degreedate
\end{declaration}

View File

@ -0,0 +1,8 @@
% ******************************* Thesis Dedidcation ********************************
\begin{dedication}
I would like to dedicate this thesis to my loving parents \dots
\end{dedication}

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 MiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -0,0 +1,128 @@
This file contains licences accompanying the images in this folder.
# King's College's shield
Files:
Kings.svg
Derivative files:
Kings.eps
Kings.pdf
Source:
Provided by the college / Vectorised by Krishna Kumar
Licence:
Public domain
# Gonville and Caius College's shield
Files:
Gonville_and_Caius.jpg
Source:
Provided by the college
Licence:
Not specified
# Fitzwilliam College's shield
Files:
Fitzwilliam.pdf
Fitzwilliam.eps
FitzwilliamRed.pdf
FitzwilliamRed.eps
Source:
Provided by the college
Licence:
Not specified
# Queens' College's shield
File:
Queens.svg
Derivative files:
Queens.pdf
Queens.eps
Source:
http://en.wikipedia.org/wiki/File:Queens%27_College_%28Cambridge%29_shield.svg
Licence:
Creative Commons Attribution-Share Alike 3.0 Unported
# St. John's College's shield
File:
StJohns.png
Derivative files:
StJohns.eps
Source:
http://en.wikipedia.org/wiki/File:Johns_shield.png
Licence:
GNU Free Documentation License, Version 1.2 or any later version
# Peterhouse's shield
File:
Peterhouse.svg
Derivative files:
Peterhouse.pdf (rsvg-convert -f pdf -o Peterhouse.pdf Peterhouse.svg)
Source:
https://en.wikipedia.org/wiki/File:Peterhouse_shield.svg
Licence:
GNU Free Documentation License, Version 1.2 or any later version or
Creative Commons Attribution-Share Alike 3.0 Unported
# Trinity College's shield
File:
Trinity.svg
Derivative files:
Trinity.eps
Trinity.pdf
Source:
http://en.wikipedia.org/wiki/File:Trinity_College_(Cambridge)_shield.svg
Licence:
GNU Free Documentation License, Version 1.2 or any later version

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 140 KiB

View File

@ -0,0 +1,714 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1006"
sodipodi:version="0.32"
inkscape:version="0.42+devel"
width="85mm"
height="100mm"
sodipodi:docname="Peterhouse shield.svg"
sodipodi:docbase="H:\Leo\[ Interessantes ]\College Crest\Shields"
version="1.0">
<metadata
id="metadata129">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs1008" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.6"
inkscape:cx="179.44302"
inkscape:cy="149.53581"
inkscape:window-width="1400"
inkscape:window-height="964"
showguides="true"
snaptoguides="true"
snaptogrid="false"
showgrid="true"
inkscape:window-x="-4"
inkscape:window-y="-4"
gridspacingx="10mm"
vertgrid="false"
horizgrid="true"
gridspacingy="10mm"
inkscape:document-units="mm"
inkscape:grid-bbox="false"
gridtolerance="0.4mm"
inkscape:current-layer="svg1006" />
<g
id="g5393"
transform="matrix(0.790008,0.000000,0.000000,0.790008,591.6598,-52.28441)">
<g
id="g1130">
<g
id="g994">
<path
style="fill:#b61511;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.01447382pt"
d="M -561.38274,513.07172 C -347.91827,414.56638 -370.81597,246.59271 -370.936,70.856235 C -370.72794,70.347655 -370.51002,69.843103 -370.30197,69.334524 C -370.5133,69.334524 -370.72467,69.334524 -370.936,69.334524 C -495.60735,69.334524 -620.28846,69.334527 -744.95976,69.334524 C -745.17116,69.334524 -745.38256,69.334524 -745.59386,69.334524 C -745.38586,69.843116 -745.16786,70.347643 -744.95976,70.856235 C -745.07986,246.59271 -762.64176,414.56638 -561.38274,513.07172 z "
id="path1534"
sodipodi:nodetypes="cccccccc" />
<g
id="g1418">
<g
id="g1346"
transform="translate(1.907349e-5,0.000000)">
<g
id="g1215"
transform="matrix(0.802530,0.000000,0.000000,1.000000,-156.3343,-302.1088)">
<rect
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.17855096"
id="rect1216"
width="22.304514"
height="3.1462967"
x="-57.471504"
y="-168.08365"
transform="matrix(-1.902030,2.682832e-3,4.874460e-2,2.259996,-394.7497,799.3075)"
ry="1.1368347"
rx="2.2992387" />
<g
id="g1217"
transform="translate(-0.327778,0.000000)">
<path
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.28750002"
d="M -322.14299,409.71089 C -325.61787,408.39376 -327.33439,406.35887 -327.52998,403.46017 C -327.65494,401.71765 -325.90296,399.65172 -324.01837,399.58254 C -318.13094,399.35655 -316.12238,408.82463 -316.14813,411.14163 C -316.39672,411.14382 -317.62165,411.13391 -317.92546,411.14909 C -318.2,409.68919 -317.97709,407.89425 -319.86496,406.40477 C -321.75281,404.9153 -322.57978,406.07664 -322.81107,407.00947 C -323.04236,407.94227 -321.93081,409.80301 -322.14299,409.71092 L -322.14299,409.71092 L -322.14299,409.71092 L -322.14299,409.71089 L -322.14299,409.71089 L -322.14299,409.71089 z "
id="path1218"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.28750002"
d="M -306.4166,409.52785 C -302.95317,408.12996 -301.25398,406.05529 -301.08285,403.15232 C -300.9726,401.40707 -302.74182,399.38215 -304.62682,399.35682 C -310.51555,399.26792 -312.44409,408.78182 -312.39881,411.098 C -312.15024,411.09437 -310.92547,411.05595 -310.62159,411.06405 C -310.35941,409.59793 -310.59742,407.80835 -308.72231,406.27508 C -306.84719,404.74181 -306.0105,405.88379 -305.77137,406.81112 C -305.53224,407.73847 -306.62798,409.62488 -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 z "
id="path1219"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.28750002"
d="M -314.41823,388.39986 C -318.40184,392.55951 -319.45855,396.75533 -316.76272,403.42542 C -315.83822,405.65302 -315.43963,408.33423 -315.46546,411.12624 C -315.07816,411.13058 -313.42954,411.09281 -313.03909,411.06085 C -313.08502,408.30356 -312.63482,405.39597 -311.73266,403.10994 C -308.67234,396.23068 -310.91822,391.61461 -314.31202,388.39862 L -314.36514,388.39924 L -314.41823,388.39986 L -314.41823,388.39986 z "
id="path1220"
sodipodi:nodetypes="cccccccc" />
<rect
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.17855096"
id="rect1221"
width="9.4807405"
height="1.394206"
x="311.22076"
y="407.50232"
transform="matrix(-0.999932,1.163817e-2,4.216721e-3,0.999991,0.000000,0.000000)" />
<g
id="g1222"
style="fill:#ffd700"
transform="matrix(1.418582,-1.509307,1.267023,1.683285,-394.7497,800.4985)">
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 140.191,-105.8351 C 141.6502,-105.8941 142.5196,-106.508 142.9047,-107.7044 C 143.139,-108.4225 142.6961,-109.5459 141.9888,-109.8448 C 139.7801,-110.7829 138.0027,-107.0711 137.7639,-106.0887 C 137.8579,-106.0522 138.3236,-105.8811 138.4372,-105.8312 C 138.6979,-106.4086 138.8059,-107.1986 139.6817,-107.5576 C 140.5575,-107.9165 140.7466,-107.3077 140.7342,-106.8805 C 140.7219,-106.4534 140.1006,-105.8266 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 z "
id="path1223"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 139.5103,-115.9567 C 137.55,-114.8141 136.9236,-107.7177 136.6055,-106.5459 C 136.7509,-106.4848 137.3761,-106.2486 137.5267,-106.2023 C 137.814,-107.3706 138.3048,-108.5262 138.8972,-109.351 C 140.81,-111.7801 140.4737,-114.0676 139.5505,-115.9411 L 139.5304,-115.9489 L 139.5103,-115.9567 L 139.5103,-115.9567 L 139.5103,-115.9567 z "
id="path1224"
sodipodi:nodetypes="cccccccc" />
</g>
<g
id="g1225"
transform="matrix(-1.506659,-1.376448,-1.160906,1.793558,-209.6214,794.0978)"
style="fill:#ffd700">
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 140.191,-105.8351 C 141.6502,-105.8941 142.5196,-106.508 142.9047,-107.7044 C 143.139,-108.4225 142.6961,-109.5459 141.9888,-109.8448 C 139.7801,-110.7829 138.0027,-107.0711 137.7639,-106.0887 C 137.8579,-106.0522 138.3236,-105.8811 138.4372,-105.8312 C 138.6979,-106.4086 138.8059,-107.1986 139.6817,-107.5576 C 140.5575,-107.9165 140.7466,-107.3077 140.7342,-106.8805 C 140.7219,-106.4534 140.1006,-105.8266 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 z "
id="path1226"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 139.5103,-115.9567 C 137.55,-114.8141 136.9236,-107.7177 136.6055,-106.5459 C 136.7509,-106.4848 137.3761,-106.2486 137.5267,-106.2023 C 137.814,-107.3706 138.3048,-108.5262 138.8972,-109.351 C 140.81,-111.7801 140.4737,-114.0676 139.5505,-115.9411 L 139.5304,-115.9489 L 139.5103,-115.9567 L 139.5103,-115.9567 L 139.5103,-115.9567 z "
id="path1227"
sodipodi:nodetypes="cccccccc" />
</g>
<path
style="fill:#ffd700;fill-rule:evenodd;stroke-width:0.625;stroke-opacity:0.54779998"
d="M -318.72752,412.52401 L -309.79758,412.35283 C -305.65476,415.12154 -299.63978,415.18066 -295.11037,412.99295 C -294.71041,413.52431 -292.59589,414.14512 -291.96729,414.43313 L -293.56777,416.6168 L -335.00884,416.91066 L -336.27241,414.92481 C -335.41506,414.96962 -333.61455,413.53261 -332.41458,413.21229 C -328.57157,415.58268 -322.44249,415.52019 -318.72752,412.52401 L -318.72752,412.52401 L -318.72752,412.52401 z "
id="path1228"
sodipodi:nodetypes="cccccccccc" />
</g>
</g>
<g
id="g1229"
transform="matrix(0.802530,0.000000,0.000000,1.000000,-303.4205,-302.1088)">
<rect
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.17855096"
id="rect1230"
width="22.304514"
height="3.1462967"
x="-57.471504"
y="-168.08365"
transform="matrix(-1.902030,2.682832e-3,4.874460e-2,2.259996,-394.7497,799.3075)"
ry="1.1368347"
rx="2.2992387" />
<g
id="g1231"
transform="translate(-0.327778,0.000000)">
<path
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.28750002"
d="M -322.14299,409.71089 C -325.61787,408.39376 -327.33439,406.35887 -327.52998,403.46017 C -327.65494,401.71765 -325.90296,399.65172 -324.01837,399.58254 C -318.13094,399.35655 -316.12238,408.82463 -316.14813,411.14163 C -316.39672,411.14382 -317.62165,411.13391 -317.92546,411.14909 C -318.2,409.68919 -317.97709,407.89425 -319.86496,406.40477 C -321.75281,404.9153 -322.57978,406.07664 -322.81107,407.00947 C -323.04236,407.94227 -321.93081,409.80301 -322.14299,409.71092 L -322.14299,409.71092 L -322.14299,409.71092 L -322.14299,409.71089 L -322.14299,409.71089 L -322.14299,409.71089 z "
id="path1232"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.28750002"
d="M -306.4166,409.52785 C -302.95317,408.12996 -301.25398,406.05529 -301.08285,403.15232 C -300.9726,401.40707 -302.74182,399.38215 -304.62682,399.35682 C -310.51555,399.26792 -312.44409,408.78182 -312.39881,411.098 C -312.15024,411.09437 -310.92547,411.05595 -310.62159,411.06405 C -310.35941,409.59793 -310.59742,407.80835 -308.72231,406.27508 C -306.84719,404.74181 -306.0105,405.88379 -305.77137,406.81112 C -305.53224,407.73847 -306.62798,409.62488 -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 z "
id="path1233"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.28750002"
d="M -314.41823,388.39986 C -318.40184,392.55951 -319.45855,396.75533 -316.76272,403.42542 C -315.83822,405.65302 -315.43963,408.33423 -315.46546,411.12624 C -315.07816,411.13058 -313.42954,411.09281 -313.03909,411.06085 C -313.08502,408.30356 -312.63482,405.39597 -311.73266,403.10994 C -308.67234,396.23068 -310.91822,391.61461 -314.31202,388.39862 L -314.36514,388.39924 L -314.41823,388.39986 L -314.41823,388.39986 z "
id="path1234"
sodipodi:nodetypes="cccccccc" />
<rect
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.17855096"
id="rect1235"
width="9.4807405"
height="1.394206"
x="311.22076"
y="407.50232"
transform="matrix(-0.999932,1.163817e-2,4.216721e-3,0.999991,0.000000,0.000000)" />
<g
id="g1236"
style="fill:#ffd700"
transform="matrix(1.418582,-1.509307,1.267023,1.683285,-394.7497,800.4985)">
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 140.191,-105.8351 C 141.6502,-105.8941 142.5196,-106.508 142.9047,-107.7044 C 143.139,-108.4225 142.6961,-109.5459 141.9888,-109.8448 C 139.7801,-110.7829 138.0027,-107.0711 137.7639,-106.0887 C 137.8579,-106.0522 138.3236,-105.8811 138.4372,-105.8312 C 138.6979,-106.4086 138.8059,-107.1986 139.6817,-107.5576 C 140.5575,-107.9165 140.7466,-107.3077 140.7342,-106.8805 C 140.7219,-106.4534 140.1006,-105.8266 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 z "
id="path1237"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 139.5103,-115.9567 C 137.55,-114.8141 136.9236,-107.7177 136.6055,-106.5459 C 136.7509,-106.4848 137.3761,-106.2486 137.5267,-106.2023 C 137.814,-107.3706 138.3048,-108.5262 138.8972,-109.351 C 140.81,-111.7801 140.4737,-114.0676 139.5505,-115.9411 L 139.5304,-115.9489 L 139.5103,-115.9567 L 139.5103,-115.9567 L 139.5103,-115.9567 z "
id="path1238"
sodipodi:nodetypes="cccccccc" />
</g>
<g
id="g1239"
transform="matrix(-1.506659,-1.376448,-1.160906,1.793558,-209.6214,794.0978)"
style="fill:#ffd700">
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 140.191,-105.8351 C 141.6502,-105.8941 142.5196,-106.508 142.9047,-107.7044 C 143.139,-108.4225 142.6961,-109.5459 141.9888,-109.8448 C 139.7801,-110.7829 138.0027,-107.0711 137.7639,-106.0887 C 137.8579,-106.0522 138.3236,-105.8811 138.4372,-105.8312 C 138.6979,-106.4086 138.8059,-107.1986 139.6817,-107.5576 C 140.5575,-107.9165 140.7466,-107.3077 140.7342,-106.8805 C 140.7219,-106.4534 140.1006,-105.8266 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 z "
id="path1240"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 139.5103,-115.9567 C 137.55,-114.8141 136.9236,-107.7177 136.6055,-106.5459 C 136.7509,-106.4848 137.3761,-106.2486 137.5267,-106.2023 C 137.814,-107.3706 138.3048,-108.5262 138.8972,-109.351 C 140.81,-111.7801 140.4737,-114.0676 139.5505,-115.9411 L 139.5304,-115.9489 L 139.5103,-115.9567 L 139.5103,-115.9567 L 139.5103,-115.9567 z "
id="path1241"
sodipodi:nodetypes="cccccccc" />
</g>
<path
style="fill:#ffd700;fill-rule:evenodd;stroke-width:0.625;stroke-opacity:0.54779998"
d="M -318.72752,412.52401 L -309.79758,412.35283 C -305.65476,415.12154 -299.63978,415.18066 -295.11037,412.99295 C -294.71041,413.52431 -292.59589,414.14512 -291.96729,414.43313 L -293.56777,416.6168 L -335.00884,416.91066 L -336.27241,414.92481 C -335.41506,414.96962 -333.61455,413.53261 -332.41458,413.21229 C -328.57157,415.58268 -322.44249,415.52019 -318.72752,412.52401 L -318.72752,412.52401 L -318.72752,412.52401 z "
id="path1242"
sodipodi:nodetypes="cccccccccc" />
</g>
</g>
<g
id="g1243"
transform="matrix(0.802530,0.000000,0.000000,1.000000,-454.2103,-302.1088)">
<rect
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.17855096"
id="rect1244"
width="22.304514"
height="3.1462967"
x="-57.471504"
y="-168.08365"
transform="matrix(-1.902030,2.682832e-3,4.874460e-2,2.259996,-394.7497,799.3075)"
ry="1.1368347"
rx="2.2992387" />
<g
id="g1245"
transform="translate(-0.327778,0.000000)">
<path
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.28750002"
d="M -322.14299,409.71089 C -325.61787,408.39376 -327.33439,406.35887 -327.52998,403.46017 C -327.65494,401.71765 -325.90296,399.65172 -324.01837,399.58254 C -318.13094,399.35655 -316.12238,408.82463 -316.14813,411.14163 C -316.39672,411.14382 -317.62165,411.13391 -317.92546,411.14909 C -318.2,409.68919 -317.97709,407.89425 -319.86496,406.40477 C -321.75281,404.9153 -322.57978,406.07664 -322.81107,407.00947 C -323.04236,407.94227 -321.93081,409.80301 -322.14299,409.71092 L -322.14299,409.71092 L -322.14299,409.71092 L -322.14299,409.71089 L -322.14299,409.71089 L -322.14299,409.71089 z "
id="path1246"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.28750002"
d="M -306.4166,409.52785 C -302.95317,408.12996 -301.25398,406.05529 -301.08285,403.15232 C -300.9726,401.40707 -302.74182,399.38215 -304.62682,399.35682 C -310.51555,399.26792 -312.44409,408.78182 -312.39881,411.098 C -312.15024,411.09437 -310.92547,411.05595 -310.62159,411.06405 C -310.35941,409.59793 -310.59742,407.80835 -308.72231,406.27508 C -306.84719,404.74181 -306.0105,405.88379 -305.77137,406.81112 C -305.53224,407.73847 -306.62798,409.62488 -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 z "
id="path1247"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.28750002"
d="M -314.41823,388.39986 C -318.40184,392.55951 -319.45855,396.75533 -316.76272,403.42542 C -315.83822,405.65302 -315.43963,408.33423 -315.46546,411.12624 C -315.07816,411.13058 -313.42954,411.09281 -313.03909,411.06085 C -313.08502,408.30356 -312.63482,405.39597 -311.73266,403.10994 C -308.67234,396.23068 -310.91822,391.61461 -314.31202,388.39862 L -314.36514,388.39924 L -314.41823,388.39986 L -314.41823,388.39986 z "
id="path1248"
sodipodi:nodetypes="cccccccc" />
<rect
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.17855096"
id="rect1249"
width="9.4807405"
height="1.394206"
x="311.22076"
y="407.50232"
transform="matrix(-0.999932,1.163817e-2,4.216721e-3,0.999991,0.000000,0.000000)" />
<g
id="g1250"
style="fill:#ffd700"
transform="matrix(1.418582,-1.509307,1.267023,1.683285,-394.7497,800.4985)">
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 140.191,-105.8351 C 141.6502,-105.8941 142.5196,-106.508 142.9047,-107.7044 C 143.139,-108.4225 142.6961,-109.5459 141.9888,-109.8448 C 139.7801,-110.7829 138.0027,-107.0711 137.7639,-106.0887 C 137.8579,-106.0522 138.3236,-105.8811 138.4372,-105.8312 C 138.6979,-106.4086 138.8059,-107.1986 139.6817,-107.5576 C 140.5575,-107.9165 140.7466,-107.3077 140.7342,-106.8805 C 140.7219,-106.4534 140.1006,-105.8266 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 z "
id="path1251"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 139.5103,-115.9567 C 137.55,-114.8141 136.9236,-107.7177 136.6055,-106.5459 C 136.7509,-106.4848 137.3761,-106.2486 137.5267,-106.2023 C 137.814,-107.3706 138.3048,-108.5262 138.8972,-109.351 C 140.81,-111.7801 140.4737,-114.0676 139.5505,-115.9411 L 139.5304,-115.9489 L 139.5103,-115.9567 L 139.5103,-115.9567 L 139.5103,-115.9567 z "
id="path1252"
sodipodi:nodetypes="cccccccc" />
</g>
<g
id="g1253"
transform="matrix(-1.506659,-1.376448,-1.160906,1.793558,-209.6214,794.0978)"
style="fill:#ffd700">
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 140.191,-105.8351 C 141.6502,-105.8941 142.5196,-106.508 142.9047,-107.7044 C 143.139,-108.4225 142.6961,-109.5459 141.9888,-109.8448 C 139.7801,-110.7829 138.0027,-107.0711 137.7639,-106.0887 C 137.8579,-106.0522 138.3236,-105.8811 138.4372,-105.8312 C 138.6979,-106.4086 138.8059,-107.1986 139.6817,-107.5576 C 140.5575,-107.9165 140.7466,-107.3077 140.7342,-106.8805 C 140.7219,-106.4534 140.1006,-105.8266 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 z "
id="path1254"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 139.5103,-115.9567 C 137.55,-114.8141 136.9236,-107.7177 136.6055,-106.5459 C 136.7509,-106.4848 137.3761,-106.2486 137.5267,-106.2023 C 137.814,-107.3706 138.3048,-108.5262 138.8972,-109.351 C 140.81,-111.7801 140.4737,-114.0676 139.5505,-115.9411 L 139.5304,-115.9489 L 139.5103,-115.9567 L 139.5103,-115.9567 L 139.5103,-115.9567 z "
id="path1255"
sodipodi:nodetypes="cccccccc" />
</g>
<path
style="fill:#ffd700;fill-rule:evenodd;stroke-width:0.625;stroke-opacity:0.54779998"
d="M -318.72752,412.52401 L -309.79758,412.35283 C -305.65476,415.12154 -299.63978,415.18066 -295.11037,412.99295 C -294.71041,413.52431 -292.59589,414.14512 -291.96729,414.43313 L -293.56777,416.6168 L -335.00884,416.91066 L -336.27241,414.92481 C -335.41506,414.96962 -333.61455,413.53261 -332.41458,413.21229 C -328.57157,415.58268 -322.44249,415.52019 -318.72752,412.52401 L -318.72752,412.52401 L -318.72752,412.52401 z "
id="path1256"
sodipodi:nodetypes="cccccccccc" />
</g>
</g>
</g>
<g
id="g1285"
transform="translate(1.907349e-5,-2.116348)">
<g
id="g1201"
transform="matrix(0.802530,0.000000,0.000000,1.000000,-156.3343,-159.7843)">
<rect
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.17855096"
id="rect1202"
width="22.304514"
height="3.1462967"
x="-57.471504"
y="-168.08365"
transform="matrix(-1.902030,2.682832e-3,4.874460e-2,2.259996,-394.7497,799.3075)"
ry="1.1368347"
rx="2.2992387" />
<g
id="g1203"
transform="translate(-0.327778,0.000000)">
<path
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.28750002"
d="M -322.14299,409.71089 C -325.61787,408.39376 -327.33439,406.35887 -327.52998,403.46017 C -327.65494,401.71765 -325.90296,399.65172 -324.01837,399.58254 C -318.13094,399.35655 -316.12238,408.82463 -316.14813,411.14163 C -316.39672,411.14382 -317.62165,411.13391 -317.92546,411.14909 C -318.2,409.68919 -317.97709,407.89425 -319.86496,406.40477 C -321.75281,404.9153 -322.57978,406.07664 -322.81107,407.00947 C -323.04236,407.94227 -321.93081,409.80301 -322.14299,409.71092 L -322.14299,409.71092 L -322.14299,409.71092 L -322.14299,409.71089 L -322.14299,409.71089 L -322.14299,409.71089 z "
id="path1204"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.28750002"
d="M -306.4166,409.52785 C -302.95317,408.12996 -301.25398,406.05529 -301.08285,403.15232 C -300.9726,401.40707 -302.74182,399.38215 -304.62682,399.35682 C -310.51555,399.26792 -312.44409,408.78182 -312.39881,411.098 C -312.15024,411.09437 -310.92547,411.05595 -310.62159,411.06405 C -310.35941,409.59793 -310.59742,407.80835 -308.72231,406.27508 C -306.84719,404.74181 -306.0105,405.88379 -305.77137,406.81112 C -305.53224,407.73847 -306.62798,409.62488 -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 z "
id="path1205"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.28750002"
d="M -314.41823,388.39986 C -318.40184,392.55951 -319.45855,396.75533 -316.76272,403.42542 C -315.83822,405.65302 -315.43963,408.33423 -315.46546,411.12624 C -315.07816,411.13058 -313.42954,411.09281 -313.03909,411.06085 C -313.08502,408.30356 -312.63482,405.39597 -311.73266,403.10994 C -308.67234,396.23068 -310.91822,391.61461 -314.31202,388.39862 L -314.36514,388.39924 L -314.41823,388.39986 L -314.41823,388.39986 z "
id="path1206"
sodipodi:nodetypes="cccccccc" />
<rect
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.17855096"
id="rect1207"
width="9.4807405"
height="1.394206"
x="311.22076"
y="407.50232"
transform="matrix(-0.999932,1.163817e-2,4.216721e-3,0.999991,0.000000,0.000000)" />
<g
id="g1208"
style="fill:#ffd700"
transform="matrix(1.418582,-1.509307,1.267023,1.683285,-394.7497,800.4985)">
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 140.191,-105.8351 C 141.6502,-105.8941 142.5196,-106.508 142.9047,-107.7044 C 143.139,-108.4225 142.6961,-109.5459 141.9888,-109.8448 C 139.7801,-110.7829 138.0027,-107.0711 137.7639,-106.0887 C 137.8579,-106.0522 138.3236,-105.8811 138.4372,-105.8312 C 138.6979,-106.4086 138.8059,-107.1986 139.6817,-107.5576 C 140.5575,-107.9165 140.7466,-107.3077 140.7342,-106.8805 C 140.7219,-106.4534 140.1006,-105.8266 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 z "
id="path1209"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 139.5103,-115.9567 C 137.55,-114.8141 136.9236,-107.7177 136.6055,-106.5459 C 136.7509,-106.4848 137.3761,-106.2486 137.5267,-106.2023 C 137.814,-107.3706 138.3048,-108.5262 138.8972,-109.351 C 140.81,-111.7801 140.4737,-114.0676 139.5505,-115.9411 L 139.5304,-115.9489 L 139.5103,-115.9567 L 139.5103,-115.9567 L 139.5103,-115.9567 z "
id="path1210"
sodipodi:nodetypes="cccccccc" />
</g>
<g
id="g1211"
transform="matrix(-1.506659,-1.376448,-1.160906,1.793558,-209.6214,794.0978)"
style="fill:#ffd700">
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 140.191,-105.8351 C 141.6502,-105.8941 142.5196,-106.508 142.9047,-107.7044 C 143.139,-108.4225 142.6961,-109.5459 141.9888,-109.8448 C 139.7801,-110.7829 138.0027,-107.0711 137.7639,-106.0887 C 137.8579,-106.0522 138.3236,-105.8811 138.4372,-105.8312 C 138.6979,-106.4086 138.8059,-107.1986 139.6817,-107.5576 C 140.5575,-107.9165 140.7466,-107.3077 140.7342,-106.8805 C 140.7219,-106.4534 140.1006,-105.8266 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 z "
id="path1212"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 139.5103,-115.9567 C 137.55,-114.8141 136.9236,-107.7177 136.6055,-106.5459 C 136.7509,-106.4848 137.3761,-106.2486 137.5267,-106.2023 C 137.814,-107.3706 138.3048,-108.5262 138.8972,-109.351 C 140.81,-111.7801 140.4737,-114.0676 139.5505,-115.9411 L 139.5304,-115.9489 L 139.5103,-115.9567 L 139.5103,-115.9567 L 139.5103,-115.9567 z "
id="path1213"
sodipodi:nodetypes="cccccccc" />
</g>
<path
style="fill:#ffd700;fill-rule:evenodd;stroke-width:0.625;stroke-opacity:0.54779998"
d="M -318.72752,412.52401 L -309.79758,412.35283 C -305.65476,415.12154 -299.63978,415.18066 -295.11037,412.99295 C -294.71041,413.52431 -292.59589,414.14512 -291.96729,414.43313 L -293.56777,416.6168 L -335.00884,416.91066 L -336.27241,414.92481 C -335.41506,414.96962 -333.61455,413.53261 -332.41458,413.21229 C -328.57157,415.58268 -322.44249,415.52019 -318.72752,412.52401 L -318.72752,412.52401 L -318.72752,412.52401 z "
id="path1214"
sodipodi:nodetypes="cccccccccc" />
</g>
</g>
<g
id="g1257"
transform="matrix(0.802530,0.000000,0.000000,1.000000,-454.2103,-159.7843)">
<rect
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.17855096"
id="rect1258"
width="22.304514"
height="3.1462967"
x="-57.471504"
y="-168.08365"
transform="matrix(-1.902030,2.682832e-3,4.874460e-2,2.259996,-394.7497,799.3075)"
ry="1.1368347"
rx="2.2992387" />
<g
id="g1259"
transform="translate(-0.327778,0.000000)">
<path
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.28750002"
d="M -322.14299,409.71089 C -325.61787,408.39376 -327.33439,406.35887 -327.52998,403.46017 C -327.65494,401.71765 -325.90296,399.65172 -324.01837,399.58254 C -318.13094,399.35655 -316.12238,408.82463 -316.14813,411.14163 C -316.39672,411.14382 -317.62165,411.13391 -317.92546,411.14909 C -318.2,409.68919 -317.97709,407.89425 -319.86496,406.40477 C -321.75281,404.9153 -322.57978,406.07664 -322.81107,407.00947 C -323.04236,407.94227 -321.93081,409.80301 -322.14299,409.71092 L -322.14299,409.71092 L -322.14299,409.71092 L -322.14299,409.71089 L -322.14299,409.71089 L -322.14299,409.71089 z "
id="path1260"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.28750002"
d="M -306.4166,409.52785 C -302.95317,408.12996 -301.25398,406.05529 -301.08285,403.15232 C -300.9726,401.40707 -302.74182,399.38215 -304.62682,399.35682 C -310.51555,399.26792 -312.44409,408.78182 -312.39881,411.098 C -312.15024,411.09437 -310.92547,411.05595 -310.62159,411.06405 C -310.35941,409.59793 -310.59742,407.80835 -308.72231,406.27508 C -306.84719,404.74181 -306.0105,405.88379 -305.77137,406.81112 C -305.53224,407.73847 -306.62798,409.62488 -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 z "
id="path1261"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.28750002"
d="M -314.41823,388.39986 C -318.40184,392.55951 -319.45855,396.75533 -316.76272,403.42542 C -315.83822,405.65302 -315.43963,408.33423 -315.46546,411.12624 C -315.07816,411.13058 -313.42954,411.09281 -313.03909,411.06085 C -313.08502,408.30356 -312.63482,405.39597 -311.73266,403.10994 C -308.67234,396.23068 -310.91822,391.61461 -314.31202,388.39862 L -314.36514,388.39924 L -314.41823,388.39986 L -314.41823,388.39986 z "
id="path1262"
sodipodi:nodetypes="cccccccc" />
<rect
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.17855096"
id="rect1263"
width="9.4807405"
height="1.394206"
x="311.22076"
y="407.50232"
transform="matrix(-0.999932,1.163817e-2,4.216721e-3,0.999991,0.000000,0.000000)" />
<g
id="g1264"
style="fill:#ffd700"
transform="matrix(1.418582,-1.509307,1.267023,1.683285,-394.7497,800.4985)">
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 140.191,-105.8351 C 141.6502,-105.8941 142.5196,-106.508 142.9047,-107.7044 C 143.139,-108.4225 142.6961,-109.5459 141.9888,-109.8448 C 139.7801,-110.7829 138.0027,-107.0711 137.7639,-106.0887 C 137.8579,-106.0522 138.3236,-105.8811 138.4372,-105.8312 C 138.6979,-106.4086 138.8059,-107.1986 139.6817,-107.5576 C 140.5575,-107.9165 140.7466,-107.3077 140.7342,-106.8805 C 140.7219,-106.4534 140.1006,-105.8266 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 z "
id="path1265"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 139.5103,-115.9567 C 137.55,-114.8141 136.9236,-107.7177 136.6055,-106.5459 C 136.7509,-106.4848 137.3761,-106.2486 137.5267,-106.2023 C 137.814,-107.3706 138.3048,-108.5262 138.8972,-109.351 C 140.81,-111.7801 140.4737,-114.0676 139.5505,-115.9411 L 139.5304,-115.9489 L 139.5103,-115.9567 L 139.5103,-115.9567 L 139.5103,-115.9567 z "
id="path1266"
sodipodi:nodetypes="cccccccc" />
</g>
<g
id="g1267"
transform="matrix(-1.506659,-1.376448,-1.160906,1.793558,-209.6214,794.0978)"
style="fill:#ffd700">
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 140.191,-105.8351 C 141.6502,-105.8941 142.5196,-106.508 142.9047,-107.7044 C 143.139,-108.4225 142.6961,-109.5459 141.9888,-109.8448 C 139.7801,-110.7829 138.0027,-107.0711 137.7639,-106.0887 C 137.8579,-106.0522 138.3236,-105.8811 138.4372,-105.8312 C 138.6979,-106.4086 138.8059,-107.1986 139.6817,-107.5576 C 140.5575,-107.9165 140.7466,-107.3077 140.7342,-106.8805 C 140.7219,-106.4534 140.1006,-105.8266 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 z "
id="path1268"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 139.5103,-115.9567 C 137.55,-114.8141 136.9236,-107.7177 136.6055,-106.5459 C 136.7509,-106.4848 137.3761,-106.2486 137.5267,-106.2023 C 137.814,-107.3706 138.3048,-108.5262 138.8972,-109.351 C 140.81,-111.7801 140.4737,-114.0676 139.5505,-115.9411 L 139.5304,-115.9489 L 139.5103,-115.9567 L 139.5103,-115.9567 L 139.5103,-115.9567 z "
id="path1269"
sodipodi:nodetypes="cccccccc" />
</g>
<path
style="fill:#ffd700;fill-rule:evenodd;stroke-width:0.625;stroke-opacity:0.54779998"
d="M -318.72752,412.52401 L -309.79758,412.35283 C -305.65476,415.12154 -299.63978,415.18066 -295.11037,412.99295 C -294.71041,413.52431 -292.59589,414.14512 -291.96729,414.43313 L -293.56777,416.6168 L -335.00884,416.91066 L -336.27241,414.92481 C -335.41506,414.96962 -333.61455,413.53261 -332.41458,413.21229 C -328.57157,415.58268 -322.44249,415.52019 -318.72752,412.52401 L -318.72752,412.52401 L -318.72752,412.52401 z "
id="path1270"
sodipodi:nodetypes="cccccccccc" />
</g>
</g>
</g>
<g
id="g1271"
transform="matrix(0.802530,0.000000,0.000000,1.000000,-305.2723,60.31597)">
<rect
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.17855096"
id="rect1272"
width="22.304514"
height="3.1462967"
x="-57.471504"
y="-168.08365"
transform="matrix(-1.902030,2.682832e-3,4.874460e-2,2.259996,-394.7497,799.3075)"
ry="1.1368347"
rx="2.2992387" />
<g
id="g1273"
transform="translate(-0.327778,0.000000)">
<path
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.28750002"
d="M -322.14299,409.71089 C -325.61787,408.39376 -327.33439,406.35887 -327.52998,403.46017 C -327.65494,401.71765 -325.90296,399.65172 -324.01837,399.58254 C -318.13094,399.35655 -316.12238,408.82463 -316.14813,411.14163 C -316.39672,411.14382 -317.62165,411.13391 -317.92546,411.14909 C -318.2,409.68919 -317.97709,407.89425 -319.86496,406.40477 C -321.75281,404.9153 -322.57978,406.07664 -322.81107,407.00947 C -323.04236,407.94227 -321.93081,409.80301 -322.14299,409.71092 L -322.14299,409.71092 L -322.14299,409.71092 L -322.14299,409.71089 L -322.14299,409.71089 L -322.14299,409.71089 z "
id="path1274"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.28750002"
d="M -306.4166,409.52785 C -302.95317,408.12996 -301.25398,406.05529 -301.08285,403.15232 C -300.9726,401.40707 -302.74182,399.38215 -304.62682,399.35682 C -310.51555,399.26792 -312.44409,408.78182 -312.39881,411.098 C -312.15024,411.09437 -310.92547,411.05595 -310.62159,411.06405 C -310.35941,409.59793 -310.59742,407.80835 -308.72231,406.27508 C -306.84719,404.74181 -306.0105,405.88379 -305.77137,406.81112 C -305.53224,407.73847 -306.62798,409.62488 -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 z "
id="path1275"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.28750002"
d="M -314.41823,388.39986 C -318.40184,392.55951 -319.45855,396.75533 -316.76272,403.42542 C -315.83822,405.65302 -315.43963,408.33423 -315.46546,411.12624 C -315.07816,411.13058 -313.42954,411.09281 -313.03909,411.06085 C -313.08502,408.30356 -312.63482,405.39597 -311.73266,403.10994 C -308.67234,396.23068 -310.91822,391.61461 -314.31202,388.39862 L -314.36514,388.39924 L -314.41823,388.39986 L -314.41823,388.39986 z "
id="path1276"
sodipodi:nodetypes="cccccccc" />
<rect
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.17855096"
id="rect1277"
width="9.4807405"
height="1.394206"
x="311.22076"
y="407.50232"
transform="matrix(-0.999932,1.163817e-2,4.216721e-3,0.999991,0.000000,0.000000)" />
<g
id="g1278"
style="fill:#ffd700"
transform="matrix(1.418582,-1.509307,1.267023,1.683285,-394.7497,800.4985)">
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 140.191,-105.8351 C 141.6502,-105.8941 142.5196,-106.508 142.9047,-107.7044 C 143.139,-108.4225 142.6961,-109.5459 141.9888,-109.8448 C 139.7801,-110.7829 138.0027,-107.0711 137.7639,-106.0887 C 137.8579,-106.0522 138.3236,-105.8811 138.4372,-105.8312 C 138.6979,-106.4086 138.8059,-107.1986 139.6817,-107.5576 C 140.5575,-107.9165 140.7466,-107.3077 140.7342,-106.8805 C 140.7219,-106.4534 140.1006,-105.8266 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 z "
id="path1279"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 139.5103,-115.9567 C 137.55,-114.8141 136.9236,-107.7177 136.6055,-106.5459 C 136.7509,-106.4848 137.3761,-106.2486 137.5267,-106.2023 C 137.814,-107.3706 138.3048,-108.5262 138.8972,-109.351 C 140.81,-111.7801 140.4737,-114.0676 139.5505,-115.9411 L 139.5304,-115.9489 L 139.5103,-115.9567 L 139.5103,-115.9567 L 139.5103,-115.9567 z "
id="path1280"
sodipodi:nodetypes="cccccccc" />
</g>
<g
id="g1281"
transform="matrix(-1.506659,-1.376448,-1.160906,1.793558,-209.6214,794.0978)"
style="fill:#ffd700">
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 140.191,-105.8351 C 141.6502,-105.8941 142.5196,-106.508 142.9047,-107.7044 C 143.139,-108.4225 142.6961,-109.5459 141.9888,-109.8448 C 139.7801,-110.7829 138.0027,-107.0711 137.7639,-106.0887 C 137.8579,-106.0522 138.3236,-105.8811 138.4372,-105.8312 C 138.6979,-106.4086 138.8059,-107.1986 139.6817,-107.5576 C 140.5575,-107.9165 140.7466,-107.3077 140.7342,-106.8805 C 140.7219,-106.4534 140.1006,-105.8266 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 z "
id="path1282"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 139.5103,-115.9567 C 137.55,-114.8141 136.9236,-107.7177 136.6055,-106.5459 C 136.7509,-106.4848 137.3761,-106.2486 137.5267,-106.2023 C 137.814,-107.3706 138.3048,-108.5262 138.8972,-109.351 C 140.81,-111.7801 140.4737,-114.0676 139.5505,-115.9411 L 139.5304,-115.9489 L 139.5103,-115.9567 L 139.5103,-115.9567 L 139.5103,-115.9567 z "
id="path1283"
sodipodi:nodetypes="cccccccc" />
</g>
<path
style="fill:#ffd700;fill-rule:evenodd;stroke-width:0.625;stroke-opacity:0.54779998"
d="M -318.72752,412.52401 L -309.79758,412.35283 C -305.65476,415.12154 -299.63978,415.18066 -295.11037,412.99295 C -294.71041,413.52431 -292.59589,414.14512 -291.96729,414.43313 L -293.56777,416.6168 L -335.00884,416.91066 L -336.27241,414.92481 C -335.41506,414.96962 -333.61455,413.53261 -332.41458,413.21229 C -328.57157,415.58268 -322.44249,415.52019 -318.72752,412.52401 L -318.72752,412.52401 L -318.72752,412.52401 z "
id="path1284"
sodipodi:nodetypes="cccccccccc" />
</g>
</g>
<g
id="g1389"
transform="translate(-0.933189,0.000000)">
<g
id="g1314"
transform="matrix(0.618003,0.511982,-0.637961,0.770069,7.728107,223.1574)">
<rect
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.17855096"
id="rect1315"
width="22.304514"
height="3.1462967"
x="-57.471504"
y="-168.08365"
transform="matrix(-1.902030,2.682832e-3,4.874460e-2,2.259996,-394.7497,799.3075)"
ry="1.1368347"
rx="2.2992387" />
<g
id="g1316"
transform="translate(-0.327778,0.000000)">
<path
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.28750002"
d="M -322.14299,409.71089 C -325.61787,408.39376 -327.33439,406.35887 -327.52998,403.46017 C -327.65494,401.71765 -325.90296,399.65172 -324.01837,399.58254 C -318.13094,399.35655 -316.12238,408.82463 -316.14813,411.14163 C -316.39672,411.14382 -317.62165,411.13391 -317.92546,411.14909 C -318.2,409.68919 -317.97709,407.89425 -319.86496,406.40477 C -321.75281,404.9153 -322.57978,406.07664 -322.81107,407.00947 C -323.04236,407.94227 -321.93081,409.80301 -322.14299,409.71092 L -322.14299,409.71092 L -322.14299,409.71092 L -322.14299,409.71089 L -322.14299,409.71089 L -322.14299,409.71089 z "
id="path1317"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.28750002"
d="M -306.4166,409.52785 C -302.95317,408.12996 -301.25398,406.05529 -301.08285,403.15232 C -300.9726,401.40707 -302.74182,399.38215 -304.62682,399.35682 C -310.51555,399.26792 -312.44409,408.78182 -312.39881,411.098 C -312.15024,411.09437 -310.92547,411.05595 -310.62159,411.06405 C -310.35941,409.59793 -310.59742,407.80835 -308.72231,406.27508 C -306.84719,404.74181 -306.0105,405.88379 -305.77137,406.81112 C -305.53224,407.73847 -306.62798,409.62488 -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 z "
id="path1318"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.28750002"
d="M -314.41823,388.39986 C -318.40184,392.55951 -319.45855,396.75533 -316.76272,403.42542 C -315.83822,405.65302 -315.43963,408.33423 -315.46546,411.12624 C -315.07816,411.13058 -313.42954,411.09281 -313.03909,411.06085 C -313.08502,408.30356 -312.63482,405.39597 -311.73266,403.10994 C -308.67234,396.23068 -310.91822,391.61461 -314.31202,388.39862 L -314.36514,388.39924 L -314.41823,388.39986 L -314.41823,388.39986 z "
id="path1319"
sodipodi:nodetypes="cccccccc" />
<rect
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.17855096"
id="rect1320"
width="9.4807405"
height="1.394206"
x="311.22076"
y="407.50232"
transform="matrix(-0.999932,1.163817e-2,4.216721e-3,0.999991,0.000000,0.000000)" />
<g
id="g1321"
style="fill:#ffd700"
transform="matrix(1.418582,-1.509307,1.267023,1.683285,-394.7497,800.4985)">
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 140.191,-105.8351 C 141.6502,-105.8941 142.5196,-106.508 142.9047,-107.7044 C 143.139,-108.4225 142.6961,-109.5459 141.9888,-109.8448 C 139.7801,-110.7829 138.0027,-107.0711 137.7639,-106.0887 C 137.8579,-106.0522 138.3236,-105.8811 138.4372,-105.8312 C 138.6979,-106.4086 138.8059,-107.1986 139.6817,-107.5576 C 140.5575,-107.9165 140.7466,-107.3077 140.7342,-106.8805 C 140.7219,-106.4534 140.1006,-105.8266 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 z "
id="path1322"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 139.5103,-115.9567 C 137.55,-114.8141 136.9236,-107.7177 136.6055,-106.5459 C 136.7509,-106.4848 137.3761,-106.2486 137.5267,-106.2023 C 137.814,-107.3706 138.3048,-108.5262 138.8972,-109.351 C 140.81,-111.7801 140.4737,-114.0676 139.5505,-115.9411 L 139.5304,-115.9489 L 139.5103,-115.9567 L 139.5103,-115.9567 L 139.5103,-115.9567 z "
id="path1323"
sodipodi:nodetypes="cccccccc" />
</g>
<g
id="g1324"
transform="matrix(-1.506659,-1.376448,-1.160906,1.793558,-209.6214,794.0978)"
style="fill:#ffd700">
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 140.191,-105.8351 C 141.6502,-105.8941 142.5196,-106.508 142.9047,-107.7044 C 143.139,-108.4225 142.6961,-109.5459 141.9888,-109.8448 C 139.7801,-110.7829 138.0027,-107.0711 137.7639,-106.0887 C 137.8579,-106.0522 138.3236,-105.8811 138.4372,-105.8312 C 138.6979,-106.4086 138.8059,-107.1986 139.6817,-107.5576 C 140.5575,-107.9165 140.7466,-107.3077 140.7342,-106.8805 C 140.7219,-106.4534 140.1006,-105.8266 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 z "
id="path1325"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 139.5103,-115.9567 C 137.55,-114.8141 136.9236,-107.7177 136.6055,-106.5459 C 136.7509,-106.4848 137.3761,-106.2486 137.5267,-106.2023 C 137.814,-107.3706 138.3048,-108.5262 138.8972,-109.351 C 140.81,-111.7801 140.4737,-114.0676 139.5505,-115.9411 L 139.5304,-115.9489 L 139.5103,-115.9567 L 139.5103,-115.9567 L 139.5103,-115.9567 z "
id="path1326"
sodipodi:nodetypes="cccccccc" />
</g>
<path
style="fill:#ffd700;fill-rule:evenodd;stroke-width:0.625;stroke-opacity:0.54779998"
d="M -318.72752,412.52401 L -309.79758,412.35283 C -305.65476,415.12154 -299.63978,415.18066 -295.11037,412.99295 C -294.71041,413.52431 -292.59589,414.14512 -291.96729,414.43313 L -293.56777,416.6168 L -335.00884,416.91066 L -336.27241,414.92481 C -335.41506,414.96962 -333.61455,413.53261 -332.41458,413.21229 C -328.57157,415.58268 -322.44249,415.52019 -318.72752,412.52401 L -318.72752,412.52401 L -318.72752,412.52401 z "
id="path1327"
sodipodi:nodetypes="cccccccccc" />
</g>
</g>
<g
id="g1328"
transform="matrix(-0.618003,0.511982,0.637961,0.770069,-1121.624,223.1574)">
<rect
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.17855096"
id="rect1329"
width="22.304514"
height="3.1462967"
x="-57.471504"
y="-168.08365"
transform="matrix(-1.902030,2.682832e-3,4.874460e-2,2.259996,-394.7497,799.3075)"
ry="1.1368347"
rx="2.2992387" />
<g
id="g1330"
transform="translate(-0.327778,0.000000)">
<path
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.28750002"
d="M -322.14299,409.71089 C -325.61787,408.39376 -327.33439,406.35887 -327.52998,403.46017 C -327.65494,401.71765 -325.90296,399.65172 -324.01837,399.58254 C -318.13094,399.35655 -316.12238,408.82463 -316.14813,411.14163 C -316.39672,411.14382 -317.62165,411.13391 -317.92546,411.14909 C -318.2,409.68919 -317.97709,407.89425 -319.86496,406.40477 C -321.75281,404.9153 -322.57978,406.07664 -322.81107,407.00947 C -323.04236,407.94227 -321.93081,409.80301 -322.14299,409.71092 L -322.14299,409.71092 L -322.14299,409.71092 L -322.14299,409.71089 L -322.14299,409.71089 L -322.14299,409.71089 z "
id="path1331"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.28750002"
d="M -306.4166,409.52785 C -302.95317,408.12996 -301.25398,406.05529 -301.08285,403.15232 C -300.9726,401.40707 -302.74182,399.38215 -304.62682,399.35682 C -310.51555,399.26792 -312.44409,408.78182 -312.39881,411.098 C -312.15024,411.09437 -310.92547,411.05595 -310.62159,411.06405 C -310.35941,409.59793 -310.59742,407.80835 -308.72231,406.27508 C -306.84719,404.74181 -306.0105,405.88379 -305.77137,406.81112 C -305.53224,407.73847 -306.62798,409.62488 -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 L -306.4166,409.52785 z "
id="path1332"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.28750002"
d="M -314.41823,388.39986 C -318.40184,392.55951 -319.45855,396.75533 -316.76272,403.42542 C -315.83822,405.65302 -315.43963,408.33423 -315.46546,411.12624 C -315.07816,411.13058 -313.42954,411.09281 -313.03909,411.06085 C -313.08502,408.30356 -312.63482,405.39597 -311.73266,403.10994 C -308.67234,396.23068 -310.91822,391.61461 -314.31202,388.39862 L -314.36514,388.39924 L -314.41823,388.39986 L -314.41823,388.39986 z "
id="path1333"
sodipodi:nodetypes="cccccccc" />
<rect
style="font-size:12px;fill:#ffd700;fill-rule:evenodd;stroke-width:1.17855096"
id="rect1334"
width="9.4807405"
height="1.394206"
x="311.22076"
y="407.50232"
transform="matrix(-0.999932,1.163817e-2,4.216721e-3,0.999991,0.000000,0.000000)" />
<g
id="g1335"
style="fill:#ffd700"
transform="matrix(1.418582,-1.509307,1.267023,1.683285,-394.7497,800.4985)">
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 140.191,-105.8351 C 141.6502,-105.8941 142.5196,-106.508 142.9047,-107.7044 C 143.139,-108.4225 142.6961,-109.5459 141.9888,-109.8448 C 139.7801,-110.7829 138.0027,-107.0711 137.7639,-106.0887 C 137.8579,-106.0522 138.3236,-105.8811 138.4372,-105.8312 C 138.6979,-106.4086 138.8059,-107.1986 139.6817,-107.5576 C 140.5575,-107.9165 140.7466,-107.3077 140.7342,-106.8805 C 140.7219,-106.4534 140.1006,-105.8266 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 z "
id="path1336"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 139.5103,-115.9567 C 137.55,-114.8141 136.9236,-107.7177 136.6055,-106.5459 C 136.7509,-106.4848 137.3761,-106.2486 137.5267,-106.2023 C 137.814,-107.3706 138.3048,-108.5262 138.8972,-109.351 C 140.81,-111.7801 140.4737,-114.0676 139.5505,-115.9411 L 139.5304,-115.9489 L 139.5103,-115.9567 L 139.5103,-115.9567 L 139.5103,-115.9567 z "
id="path1337"
sodipodi:nodetypes="cccccccc" />
</g>
<g
id="g1338"
transform="matrix(-1.506659,-1.376448,-1.160906,1.793558,-209.6214,794.0978)"
style="fill:#ffd700">
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 140.191,-105.8351 C 141.6502,-105.8941 142.5196,-106.508 142.9047,-107.7044 C 143.139,-108.4225 142.6961,-109.5459 141.9888,-109.8448 C 139.7801,-110.7829 138.0027,-107.0711 137.7639,-106.0887 C 137.8579,-106.0522 138.3236,-105.8811 138.4372,-105.8312 C 138.6979,-106.4086 138.8059,-107.1986 139.6817,-107.5576 C 140.5575,-107.9165 140.7466,-107.3077 140.7342,-106.8805 C 140.7219,-106.4534 140.1006,-105.8266 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 L 140.191,-105.8351 z "
id="path1339"
sodipodi:nodetypes="cssccssccccc" />
<path
style="font-size:12px;fill:#ffd700;fill-opacity:1;fill-rule:evenodd;stroke-width:1.28750002"
d="M 139.5103,-115.9567 C 137.55,-114.8141 136.9236,-107.7177 136.6055,-106.5459 C 136.7509,-106.4848 137.3761,-106.2486 137.5267,-106.2023 C 137.814,-107.3706 138.3048,-108.5262 138.8972,-109.351 C 140.81,-111.7801 140.4737,-114.0676 139.5505,-115.9411 L 139.5304,-115.9489 L 139.5103,-115.9567 L 139.5103,-115.9567 L 139.5103,-115.9567 z "
id="path1340"
sodipodi:nodetypes="cccccccc" />
</g>
<path
style="fill:#ffd700;fill-rule:evenodd;stroke-width:0.625;stroke-opacity:0.54779998"
d="M -318.72752,412.52401 L -309.79758,412.35283 C -305.65476,415.12154 -299.63978,415.18066 -295.11037,412.99295 C -294.71041,413.52431 -292.59589,414.14512 -291.96729,414.43313 L -293.56777,416.6168 L -335.00884,416.91066 L -336.27241,414.92481 C -335.41506,414.96962 -333.61455,413.53261 -332.41458,413.21229 C -328.57157,415.58268 -322.44249,415.52019 -318.72752,412.52401 L -318.72752,412.52401 L -318.72752,412.52401 z "
id="path1341"
sodipodi:nodetypes="cccccccccc" />
</g>
</g>
</g>
</g>
</g>
<path
style="fill:#f8e801;fill-rule:evenodd;stroke-width:1pt"
d="M -671.74822,144.13192 C -671.74822,208.61696 -672.77791,279.37243 -656.03521,327.80623 C -653.38599,335.49505 -650.07068,342.74603 -646.43801,349.82705 L -646.43801,144.13192 C -654.87518,144.13192 -663.31071,144.13192 -671.74822,144.13192 z M -621.12787,144.13192 L -621.12787,386.54378 C -613.44619,395.09067 -604.96744,402.83088 -595.8173,409.79304 L -595.8173,144.13192 C -604.2548,144.13192 -612.69036,144.13192 -621.12787,144.13192 z M -570.50717,144.13192 L -570.50717,426.12685 C -566.36046,428.35593 -562.18457,430.56351 -557.87464,432.49645 C -553.60043,430.44943 -549.41146,428.1515 -545.2418,425.80841 L -545.2418,144.13192 C -553.6641,144.13192 -562.08484,144.13192 -570.50717,144.13192 z M -519.93161,144.13192 L -519.93161,409.06512 C -510.8604,402.12505 -502.36733,394.4704 -494.62142,386.08861 L -494.62142,144.13192 C -503.05859,144.13192 -511.49413,144.13192 -519.93161,144.13192 z M -469.31092,144.13192 L -469.31092,350.78239 C -465.34084,343.39056 -461.7542,335.82488 -459.04407,327.80623 C -448.07036,296.51438 -444.87427,262.90851 -444.00073,228.25716 L -444.00073,144.13192 C -452.43821,144.13192 -460.87376,144.13192 -469.31092,144.13192 z "
id="path1129" />
</g>
<g
id="g991"
transform="matrix(1.454482,0.000000,0.000000,1.454482,253.8155,-713.7680)">
<path
style="fill:#b61511;fill-rule:evenodd;stroke-width:1.01447382pt"
d="M -223.36107,771.8076 C -191.87323,757.95378 -164.30736,732.84862 -152.72926,699.87942 C -141.00925,666.61497 -141.7413,616.58233 -141.7413,574.40349 C -192.03553,574.40349 -254.29514,573.75116 -300.72122,573.75115 C -300.72122,615.7817 -304.41102,661.34089 -290.636,699.87942 C -279.50402,732.19534 -253.97716,757.4225 -223.36107,771.8076 z "
id="path1537"
sodipodi:nodetypes="cccccc"
transform="translate(-336.6142,14.56720)" />
<path
style="fill:#ffff00;fill-rule:evenodd;stroke-width:1.01447382pt"
d="M -637.52289,588.33094 L -637.52289,656.29969 C -636.57673,676.49444 -634.02029,696.27808 -627.52289,714.45594 C -625.46724,720.42344 -622.78291,726.05803 -619.80414,731.51844 L -619.80414,588.39344 C -625.33425,588.37898 -632.34716,588.33103 -637.52289,588.33094 z M -602.11664,588.45594 L -602.11664,756.08094 C -596.72274,761.85321 -590.76322,767.0941 -584.39789,771.83094 L -584.39789,588.54969 C -590.40569,588.51731 -596.30947,588.48116 -602.11664,588.45594 z M -566.67914,588.61219 L -566.67914,782.98719 C -564.54297,784.12674 -562.43338,785.33239 -560.24164,786.36219 C -556.41203,784.67727 -552.65226,782.81138 -548.96039,780.79969 L -548.96039,588.67469 C -555.13859,588.63882 -560.54769,588.64812 -566.67914,588.61219 z M -531.24164,588.73719 L -531.24164,769.26844 C -524.85373,764.45942 -518.92452,759.11861 -513.52289,753.26844 L -513.52289,588.83094 C -519.5638,588.80603 -525.09359,588.76938 -531.24164,588.73719 z M -495.80414,588.89344 L -495.80414,728.39344 C -493.45128,723.90003 -491.31762,719.29955 -489.61664,714.45594 C -477.89664,681.1915 -478.61664,631.13478 -478.61664,588.95594 C -484.05331,588.95594 -490.12295,588.90704 -495.80414,588.89344 z "
id="path985" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 62 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 165 KiB

View File

@ -0,0 +1,653 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 15.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1"
id="svg1" inkscape:output_extension="org.inkscape.output.svg.inkscape" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docname="Trinity College (Cambridge) Crest.svg" sodipodi:docbase="H:\Leo\[ Interessantes ]\College Crests\Shields"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="302.973px"
height="352.777px" viewBox="0 0 302.973 352.777" enable-background="new 0 0 302.973 352.777" xml:space="preserve">
<defs>
<inkscape:perspective id="perspective2757" sodipodi:type="inkscape:persp3d" inkscape:vp_z="301.18109 : 177.16536 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 177.16536 : 1" inkscape:persp3d-origin="150.59055 : 118.11024 : 1">
</inkscape:perspective>
<inkscape:perspective id="perspective2879" sodipodi:type="inkscape:persp3d" inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1">
</inkscape:perspective>
</defs>
<g id="Layer_2">
</g>
<sodipodi:namedview id="base" inkscape:cy="252.25138" inkscape:cx="40.890019" borderopacity="1.0" gridtolerance="0.4mm" pagecolor="#ffffff" bordercolor="#666666" showgrid="true" inkscape:zoom="1" inkscape:window-y="-8" inkscape:document-units="mm" inkscape:current-layer="g1731" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-width="1280" inkscape:window-height="750" inkscape:window-x="-8">
<inkscape:grid type="xygrid" color="#0000ff" id="GridFromPre046Settings" originx="0px" originy="0mm" opacity="0.2" spacingx="10mm" empcolor="#0000ff" empspacing="5" empopacity="0.4" spacingy="10mm">
</inkscape:grid>
</sodipodi:namedview>
<path id="path1534" sodipodi:nodetypes="cccccccc" fill="#FFFFFF" stroke="#000000" d="M150.232,352.778
C316.427,275.302,298.599,143.185,298.506,4.964c0.162-0.399,0.332-0.797,0.494-1.196c-0.165,0-0.329,0-0.494,0
c-97.063,0-194.135,0-291.198,0c-0.165,0-0.329,0-0.494,0c0.162,0.399,0.332,0.797,0.494,1.196
C7.214,143.185-6.459,275.302,150.232,352.778z"/>
<rect x="7.307" y="3.767" fill="#FF0000" stroke="#070404" stroke-width="0.7" stroke-linecap="round" width="291.46" height="90.563"/>
<path id="path3981" fill="#FF0000" stroke="#000000" stroke-width="0.5342" d="M7.001,93.332l291.767,0.998"/>
<path id="path3983_4_" fill="none" stroke="#000000" d="M226,303.331"/>
<path id="path3983_3_" fill="none" stroke="#000000" d="M152,184.331"/>
<path id="path3983_1_" fill="none" stroke="#000000" d="M78,303.331"/>
<path id="path3985_4_" fill="none" stroke="#000000" d="M49,267.331"/>
<path id="path3985_3_" fill="none" stroke="#000000" d="M152,98.331"/>
<path id="path3985_1_" fill="none" stroke="#000000" d="M255,267.331"/>
<path id="path4045" fill="none" stroke="#000000" stroke-width="2" d="M30.723,16.687H18.561"/>
<path id="path4047" fill="none" stroke="#000000" d="M17.854,41.613l1.237-24.926"/>
<g id="g4101">
<g id="g4079">
<path id="path4023" fill="none" stroke="#000000" stroke-width="2" d="M65.937,55.401c-0.171-0.043,2.287-0.881,3.006-1.061
c0.896-0.224,1.877-0.188,2.651,0c0.806,0.195,1.533,0.649,2.121,1.237c0.706,0.706,1.311,1.157,1.769,1.768
c0.364,0.486,0.733,0.911,1.062,1.237"/>
<path id="path4029" fill="none" stroke="#000000" stroke-width="2" d="M66.291,31.889c0.249,0.125,2.136,0,3.006,0
c1.174,0,1.875,0.055,2.828,0.531c0.897,0.449,1.895,0.505,2.65,0.884c0.652,0.326,1.139,0.607,1.77,1.237
c0.84,0.84,1.084,1.505,1.943,2.65c0.791,1.056,0.853,1.655,0.354,2.651c-0.104,0.207-0.947,0.594-1.061,0.707"/>
<g id="g4060">
<g id="g4053">
<path id="path4007" fill="none" stroke="#000000" stroke-width="2" d="M32.161,14.066l34.13,0.324l-0.707,57.629l-33.587-0.707
L31.82,48.153l6.188,0.178l0.177,16.617l21.567-0.53l0.529-44.726l-22.45-0.353v14.319l-6.188-0.354L32.161,14.066z"/>
<path id="path4009" fill="none" stroke="#000000" stroke-width="2" d="M60.281,19.692l-9.546,19.27
c0.235,0.236,0.473,0.472,0.707,0.707c0.583,0.583,0.53,1.352,0.53,2.299c0,1.029-0.057,1.704-0.354,2.298
c-0.359,0.718-1.317,1.036-2.121,1.237c-0.772,0.192-1.56-0.675-1.945-1.062c-0.501-0.501-0.898-1.122-1.061-1.768
c-0.221-0.88,0.088-1.943,0.354-2.476c0.346-0.69,1.131-0.901,1.769-1.062c0.638-0.159,1.464-0.045,2.121-0.177"/>
<path id="path4011" fill="none" stroke="#000000" stroke-width="2" d="M50.205,45.325l9.191,18.915"/>
<path id="path4013" fill="none" stroke="#000000" stroke-width="2" d="M38.36,64.417l9.192-19.977"/>
<path id="path4015" fill="none" stroke="#000000" stroke-width="2" d="M38.183,19.339l9.723,19.976"/>
</g>
<path id="path4017" fill="none" stroke="#000000" stroke-width="2" d="M32.174,14.92c0.972-0.243,0,2.003,0,3.005
s0,2.004,0,3.005c0,1.062,0,2.122,0,3.183c0,0.885,0,1.769,0,2.651c0,0.955,0.003,1.932-0.177,2.651
c-0.256,1.021-0.53,1.717-0.53,2.829c0,0.818-0.036,1.731-0.177,2.298L16.44,42.32l0.354,12.552l15.025-6.719"/>
<path id="path4019" fill="none" stroke="#000000" stroke-width="2" d="M23.158,51.689l0.529,24.926l8.662-5.748"/>
<path id="path4021" sodipodi:nodetypes="cccssssssssc" fill="none" stroke="#000000" stroke-width="2" d="M18.208,54.164
l0.707,26.87l51.441,0.529c0,0.922,1.737-0.685,2.476-1.236c0.74-0.557,1.282-0.931,1.768-1.414
c0.739-0.739,1.585-0.876,2.299-1.77c0.835-1.044,0.885-2.184,0.885-3.535c0-1.143-1.563-2.358-1.769-3.182
c-0.154-0.614-1.283-0.995-1.769-1.237c-0.853-0.427-1.543-0.972-2.651-1.415c-0.872-0.349-2.448,0.053-3.358-0.177
c-1.021-0.255-1.478-0.208-2.121-0.53"/>
<path id="path4025" fill="none" stroke="#000000" stroke-width="2" d="M65.937,49.567c0.013,0.016,2.426-0.253,2.829-0.354
c1.037-0.259,2.068,0.17,2.828,0.354c0.856,0.208,1.489,0.461,2.475,0.708c0.688,0.171,1.271,0.915,1.593,1.237
c0.613,0.614,1.069,1.257,1.414,1.944c0.378,0.756,0.707,1.188,0.707,2.121c0,1.028-0.058,1.704-0.354,2.298
c-0.155,0.31-0.836,0.475-1.061,0.53"/>
<path id="path4027" fill="none" stroke="#000000" stroke-width="2" d="M65.937,37.9c-0.416,0.833,1.748-0.657,2.652-0.884
c0.862-0.216,2.124,0,3.005,0c0.804,0,1.563,0.782,2.121,1.062c0.792,0.396,1.412,1.06,2.122,1.414
c0.674,0.337,0.913,0.826,1.061,1.414"/>
<path id="path4031" fill="none" stroke="#000000" stroke-width="2" d="M76.721,40.906l-0.53,11.138"/>
<path id="path4033" fill="none" stroke="#000000" stroke-width="2" d="M65.937,20.753c-0.421,0.844,1.886,0,2.829,0
c1.121,0,2.161,0.03,2.828,0.354c0.876,0.427,1.721,1.05,2.475,1.237c0.866,0.217,1.089,0.911,1.593,1.415
c0.557,0.557,0.821,1,1.236,1.414"/>
<path id="path4039" fill="none" stroke="#000000" stroke-width="2" d="M76.721,34.011l0.177-9.016
c-0.133,0.133,1.591-1.428,1.591-3.006c0-1.216-0.299-1.372-0.529-2.299c-0.266-1.059-1.396-1.938-2.121-2.121
c-0.779-0.194-2.253-1.469-2.652-1.768c-0.623-0.468-2.185-0.493-2.828-0.707c-0.7-0.234-1.939-0.044-2.475-0.177
c-0.663-0.166-0.599-0.371-1.237-0.53"/>
<path id="path4041" fill="none" stroke="#000000" stroke-width="2" d="M38.007,33.481l-2.573,4.065l4.695-1.591l0.177,9.369
l-4.243-1.062l2.121,3.712"/>
<path id="path4043" fill="none" stroke="#000000" stroke-width="2" d="M31.467,36.133l0.354,8.662"/>
<path id="path4049" fill="none" stroke="#000000" stroke-width="2" d="M32.161,14.066c-0.53,0.796-1.667,2.622-2.108,3.505
c-0.428,0.854-0.9,1.245-1.592,1.592c-0.873,0.437-1.479,1.004-2.651,1.591c-0.732,0.367-1.832,0.177-2.65,0.177v18.031"/>
</g>
</g>
<path id="path4051" fill="none" stroke="#000000" stroke-width="2" d="M75.661,57.699V69.72"/>
</g>
<path id="path4125" fill="none" stroke="#000000" d="M79.019,37.9c0.065,0.777-0.559,1.796-1.061,2.299
c-0.344,0.343-0.304,0.417-0.884,0.707"/>
<path id="path4277" fill="#FF0000" stroke="#070404" stroke-width="2" stroke-linecap="round" d="M223.37,298.741
c-28.364-45.947-70.896-115.279-71.379-115.279c-0.355,0-16.795,25.947-36.528,57.66c-19.735,31.714-37.201,60.146-37.591,60.743
c-0.444,0.677-2.26-1.412-4.851-3.911c-4.763-4.594-18.655-21.915-21.063-26.144l-2.623-3.85l51.813-84.326l50.813-83.325
l2.398,3.825c1.319,2.104,23.9,39.15,50.182,82.326c27.537,45.239,52.021,83.061,51.19,82.111
c-2.884,7.783-23.134,29.533-29.941,34.728L223.37,298.741z"/>
<path id="path4353" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M0,0"/>
<path id="path2598" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M55.085,53.843
c-2.114-4.329-3.738-8.076-3.609-8.326c0.128-0.251,0.464-0.854,0.744-1.34c0.67-1.158,0.658-2.966-0.029-4.415L51.639,38.6
l3.892-7.729l3.893-7.729l-0.027,11.49c-0.015,6.319-0.125,14.999-0.246,19.287l-0.22,7.796L55.085,53.843z"/>
<path id="path2600" fill="#FFFF00" stroke="#070404" stroke-linecap="round" d="M43.851,29.433l-4.427-9.122l8.338-0.104
c4.586-0.059,8.999-0.012,9.808,0.104l1.47,0.21l-4.359,8.911C48.81,41.426,49.673,41.426,43.851,29.433L43.851,29.433z"/>
<path id="path2602" fill="#FFFF00" stroke="#070404" stroke-linecap="round" d="M38.829,58.448
c-0.126-1.491-0.229-4.646-0.229-7.011c0-3.23-0.143-4.458-0.519-4.983c-0.952-1.331-1.029-1.315,1.049-0.755
c0.866,0.232,1.679,0.274,1.787,0.167c0.107-0.108,0.086-2.586-0.051-5.507l-0.247-5.309l-1.407,0.496
c-1.991,0.703-2.635,1.346-1.809,0.185c0.667-0.936,1.199-2.271,1.228-7.696l-0.271-7.282l4.487,9.812
c3.668,7.438,4.124,8.555,3.687,9.039c-0.831,0.919-0.998,2.639-0.378,3.882l0.563,1.13l-3.745,8.178
c-2.061,4.498-3.784,8.221-3.831,8.272S38.955,59.94,38.829,58.448L38.829,58.448z"/>
<path id="path2606" fill="#FFFF00" stroke="#070404" stroke-linecap="round" d="M39.306,64.117c0-0.146,7.666-16.923,8.175-17.891
c0.281-0.533,0.443-0.547,1.455-0.121c1.023,0.431,1.563,1.352,5.284,9.016c2.627,5.412,3.988,8.585,3.719,8.668
C57.366,63.968,39.306,64.285,39.306,64.117L39.306,64.117z"/>
<path id="path2632" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M0,0"/>
<path id="path2634" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M0,0"/>
<path id="path2636" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M24.16,73.123
c-0.105-1.206-0.101-6.421-0.181-11.515l-0.227-9.205c0,0,3.133-1.444,4.641-2.141l2.844-1.219l0.109,10.969l0.156,10.766
l-3.656,2.406l-3.625,2.453L24.16,73.123z"/>
<path id="path2638" fill="#FFFF00" stroke="#070404" stroke-linecap="round" d="M49.736,71.027
c-5.25-0.133-11.256-0.262-13.347-0.286l-3.801-0.048v-10.96V48.772l1.855,0.006c3.668-0.062,3.199-0.607,3.029,8.786l0.111,8.11
l4.838-0.144c2.661-0.079,7.8-0.239,11.42-0.355l6.582-0.213l0.262-22.788c0.146-12.533,0.199-22.852,0.121-22.93
c-0.077-0.077-5.424-0.252-11.882-0.39l-11.741-0.247v7.127v7.127h-2.512h-2.513l0.222-1.503c0.121-0.825,0.056-4.725,0.223-8.711
c0.166-3.985-0.022-7.91,0-7.958c0.024-0.049,7.939,0.495,16.8,0.495h16.108l-0.223,27.488c-0.123,15.119-0.304,27.768-0.399,28.107
c-0.15,0.527-0.575,0.608-2.893,0.553C60.505,71.298,54.987,71.16,49.736,71.027L49.736,71.027z"/>
<path id="path2640" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M17.21,49.873
c-0.04-2.141-0.253-7.203-0.253-7.203l7.501-3.787c4.484-2.365,7.377-4.045,7.452-4.416c0.104-0.52,0.016-0.641,0.016-0.641
c1.197,0.136,5.126,0.28,5.126,0.28s-2.908,4.412-2.746,4.412c0.161,0,5.401-2.143,5.401-2.143s-0.048,2.447-0.048,4.4l0.048,3.876
l-2.11-0.577c-1.173-0.297-2.407-0.497-2.407-0.497s0.583,1.113,1.221,2.227l1.188,2.067l-3.375-0.188
c-1.647-0.126-2.802-0.089-2.984,0.078c-0.321,0.295-13.574,6.4-13.905,6.4C17.241,54.164,17.21,49.873,17.21,49.873z
M32.347,43.576c-0.031-0.738-0.184-2.736-0.187-4.438c-0.003-2.855,0.021-3.094-0.634-3.094c-0.807,0-0.732,0.821-0.337,5.922
c0.202,2.597,0.166,2.917,0.789,2.917C32.594,44.884,32.399,44.795,32.347,43.576z"/>
<path id="path2642" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M23.751,29.621v-8.072h1.063
c2.017-0.597,3.728-1.647,5.416-3.483l1.414-2.042l-0.309,5.701c-0.102,2.917-0.005,6.726-0.112,8.674l-0.25,3.833l-3.583,1.9
l-3.638,1.85L23.751,29.621L23.751,29.621z"/>
<path id="path2648" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M73.155,67.839
c-0.729-0.387-2.241-0.782-3.357-0.881c-3.878-0.343-3.748-0.242-3.491-2.699c0.123-1.186,0.225-3.551,0.225-5.256V55.9l1.769-0.587
c2.248-0.746,3.568-0.465,5.344,1.14l1.374,1.241v5.438c0,2.991-0.119,5.432-0.265,5.424C74.604,68.548,73.886,68.224,73.155,67.839
L73.155,67.839z"/>
<path id="path2650" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M74.831,55.835
c-2.292-2.326-4.082-2.711-7.505-1.612c-0.766,0.245-0.797,0.173-0.797-1.85c0-1.883,0.084-2.126,0.797-2.316
c1.754-0.471,4.874,0.063,6.986,1.193c1.746,0.935,3.615,5.478,2.529,6.147C76.681,57.498,75.775,56.795,74.831,55.835
L74.831,55.835z"/>
<path id="path2652" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M74.913,50.021
c-1.121-0.819-5.171-1.649-6.836-1.399l-1.548,0.231v-5.124v-5.124l1.149-0.48c2.03-0.852,3.876-0.567,6.256,0.959l2.152,1.381
l-0.23,4.95c-0.127,2.723-0.249,4.977-0.271,5.009C75.563,50.456,75.26,50.275,74.913,50.021L74.913,50.021z"/>
<path id="path2654" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M74.862,38.113
c-2.257-1.577-2.617-1.715-4.53-1.715c-1.145,0-2.4,0.172-2.793,0.383c-0.395,0.211-0.79,0.307-0.884,0.214
c-0.093-0.093-0.059-1.14,0.076-2.326l0.244-2.158h1.667c1.73,0,5.2,1.027,6.626,1.962c0.936,0.612,2.929,3.238,2.929,3.856
c0,0.226-0.197,0.654-0.44,0.955C77.369,39.76,77.01,39.615,74.862,38.113L74.862,38.113z"/>
<path id="path2656" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M73.601,32.226
c-1.264-0.451-3.293-0.913-4.508-1.026l-2.21-0.206v-4.723v-4.723h1.998c2.406,0,5.277,1.268,6.443,2.844
c0.701,0.95,0.765,1.404,0.675,4.853l-0.102,3.803L73.601,32.226z"/>
<g id="g2660">
<path id="path2604" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M48,43.796
c-1.534-1.823-1.065-3.622,1.047-4.02c1.708-0.319,2.281,0.219,2.281,2.146c0,1.076-0.217,1.763-0.708,2.255
C49.647,45.149,49.068,45.065,48,43.796L48,43.796z"/>
<path id="path2644" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M38.599,80.576
c-10.403-0.125-19.131-0.033-19.158-0.063c-0.025-0.03-0.13-4.32-0.25-9.328c-0.12-5.007-0.203-10.707-0.313-12.703l-0.126-3.891
l1.845-0.781l2.031-0.938l0.281,11.53c0.138,6.269,0.147,11.854,0.206,12.391l0.042,0.798l8.772-5.817l14.624,0.492
c8.167,0.115,15.923,0.302,17.235,0.415l2.387,0.205v-2.439v-2.438l2.387,0.131c4.471,0.246,8.573,3.272,8.573,6.322
c0,1.413-0.588,2.137-3.632,4.468l-2.634,2.018l-6.679-0.07C60.519,80.837,49.003,80.702,38.599,80.576L38.599,80.576z"/>
<path id="path2646" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M19.556,17.306l4.122,0.035
c2.082,0.02,5.371-0.166,5.836-0.035c0.813,0.229-0.842,1.386-2.333,2.386c-0.996,0.669-1.708,1.062-2.786,0.832l-1.883-0.213
l0.126,18.116l-4.166,2.301L19.556,17.306z"/>
<path id="path2658" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M75.948,23.014
c-1.609-1.682-4.859-2.965-7.146-2.822l-1.92,0.119l0.001-2.514v-2.515l2.74,0.438c2.159,0.346,3.246,0.756,5.124,1.934
c1.988,1.247,2.452,1.725,2.799,2.883c0.337,1.123,0.319,1.59-0.091,2.455L76.95,24.06L75.948,23.014z"/>
</g>
<path id="path2770" fill="#FFFF00" stroke="#070404" stroke-width="0.1237" stroke-linecap="round" d="M0,0"/>
<path id="path2798" fill="#FFFF00" stroke="#070404" stroke-width="0.1237" stroke-linecap="round" d="M0,0"/>
<path id="path2806" fill="#FFFF00" stroke="#070404" stroke-width="0.0109" stroke-linecap="round" d="M0,0"/>
<path id="path2824" fill="#FFFF00" stroke="#070404" stroke-width="0.0109" stroke-linecap="round" d="M0,0"/>
<path id="path2850" fill="#FF0000" stroke="#070404" stroke-width="0.0219" stroke-linecap="round" d="M0,0"/>
<path id="path2852" fill="#FF0000" stroke="#070404" stroke-width="0.0219" stroke-linecap="round" d="M0,0"/>
<path id="path2864" fill="#FF0000" stroke="#070404" stroke-width="0.1237" stroke-linecap="round" d="M0,0"/>
<path id="path2868" fill="#FF0000" stroke="#070404" stroke-width="0.1237" stroke-linecap="round" d="M0,0"/>
<path id="path2898" fill="#FFFF00" stroke="#070404" stroke-width="0.1237" stroke-linecap="round" d="M0,0"/>
<path id="path4045_1_" fill="none" stroke="#000000" stroke-width="2" d="M235.723,16.687h-12.162"/>
<path id="path4047_1_" fill="none" stroke="#000000" d="M222.854,41.613l1.237-24.926"/>
<g id="g4101_1_">
<g id="g4079_1_">
<path id="path4023_1_" fill="none" stroke="#000000" stroke-width="2" d="M270.937,55.401c-0.171-0.043,2.287-0.881,3.006-1.061
c0.896-0.224,1.877-0.188,2.651,0c0.806,0.195,1.533,0.649,2.121,1.237c0.706,0.706,1.311,1.157,1.769,1.768
c0.364,0.486,0.733,0.911,1.062,1.237"/>
<path id="path4029_1_" fill="none" stroke="#000000" stroke-width="2" d="M271.291,31.889c0.249,0.125,2.136,0,3.006,0
c1.174,0,1.875,0.055,2.828,0.531c0.897,0.449,1.895,0.505,2.65,0.884c0.652,0.326,1.139,0.607,1.77,1.237
c0.84,0.84,1.084,1.505,1.943,2.65c0.791,1.056,0.853,1.655,0.354,2.651c-0.104,0.207-0.947,0.594-1.061,0.707"/>
<g id="g4060_1_">
<g id="g4053_1_">
<path id="path4007_1_" fill="none" stroke="#000000" stroke-width="2" d="M237.161,14.066l34.13,0.324l-0.707,57.629
l-33.587-0.707l-0.178-23.158l6.188,0.178l0.177,16.617l21.567-0.53l0.529-44.726l-22.45-0.354v14.319l-6.188-0.354
L237.161,14.066z"/>
<path id="path4009_1_" fill="none" stroke="#000000" stroke-width="2" d="M265.281,19.692l-9.546,19.27
c0.235,0.236,0.473,0.472,0.707,0.707c0.583,0.583,0.53,1.352,0.53,2.299c0,1.029-0.057,1.704-0.354,2.298
c-0.359,0.718-1.317,1.036-2.121,1.237c-0.772,0.192-1.56-0.675-1.945-1.062c-0.501-0.501-0.898-1.122-1.062-1.768
c-0.22-0.88,0.089-1.943,0.354-2.476c0.346-0.69,1.131-0.901,1.769-1.062c0.638-0.159,1.464-0.045,2.121-0.177"/>
<path id="path4011_1_" fill="none" stroke="#000000" stroke-width="2" d="M255.205,45.325l9.191,18.915"/>
<path id="path4013_1_" fill="none" stroke="#000000" stroke-width="2" d="M243.36,64.417l9.192-19.977"/>
<path id="path4015_1_" fill="none" stroke="#000000" stroke-width="2" d="M243.183,19.339l9.723,19.976"/>
</g>
<path id="path4017_1_" fill="none" stroke="#000000" stroke-width="2" d="M237.174,14.92c0.972-0.243,0,2.003,0,3.005
s0,2.004,0,3.005c0,1.062,0,2.122,0,3.183c0,0.885,0,1.769,0,2.651c0,0.955,0.003,1.932-0.177,2.651
c-0.256,1.021-0.53,1.717-0.53,2.829c0,0.818-0.036,1.731-0.177,2.298L221.44,42.32l0.354,12.552l15.025-6.719"/>
<path id="path4019_1_" fill="none" stroke="#000000" stroke-width="2" d="M228.158,51.689l0.529,24.926l8.662-5.748"/>
<path id="path4021_1_" sodipodi:nodetypes="cccssssssssc" fill="none" stroke="#000000" stroke-width="2" d="M223.208,54.164
l0.707,26.87l51.441,0.529c0,0.922,1.737-0.685,2.476-1.236c0.74-0.557,1.282-0.931,1.768-1.414
c0.739-0.739,1.585-0.876,2.299-1.77c0.835-1.044,0.885-2.184,0.885-3.535c0-1.143-1.563-2.358-1.769-3.182
c-0.154-0.614-1.283-0.995-1.769-1.237c-0.853-0.427-1.543-0.972-2.651-1.415c-0.872-0.349-2.448,0.053-3.358-0.177
c-1.021-0.255-1.478-0.208-2.122-0.53"/>
<path id="path4025_1_" fill="none" stroke="#000000" stroke-width="2" d="M270.937,49.567c0.013,0.016,2.426-0.253,2.829-0.354
c1.037-0.259,2.068,0.17,2.828,0.354c0.856,0.208,1.489,0.461,2.475,0.708c0.688,0.171,1.271,0.915,1.593,1.237
c0.613,0.614,1.069,1.257,1.414,1.944c0.378,0.756,0.707,1.188,0.707,2.121c0,1.028-0.058,1.704-0.354,2.298
c-0.155,0.31-0.836,0.475-1.061,0.53"/>
<path id="path4027_1_" fill="none" stroke="#000000" stroke-width="2" d="M270.937,37.9c-0.416,0.833,1.748-0.657,2.652-0.884
c0.862-0.216,2.124,0,3.005,0c0.804,0,1.563,0.782,2.121,1.062c0.792,0.396,1.412,1.06,2.122,1.414
c0.674,0.337,0.913,0.826,1.061,1.414"/>
<path id="path4031_1_" fill="none" stroke="#000000" stroke-width="2" d="M281.721,40.906l-0.53,11.138"/>
<path id="path4033_1_" fill="none" stroke="#000000" stroke-width="2" d="M270.937,20.753c-0.421,0.844,1.886,0,2.829,0
c1.121,0,2.161,0.03,2.828,0.354c0.876,0.427,1.721,1.05,2.475,1.237c0.866,0.217,1.089,0.911,1.593,1.415
c0.557,0.557,0.821,1,1.236,1.414"/>
<path id="path4039_1_" fill="none" stroke="#000000" stroke-width="2" d="M281.721,34.011l0.177-9.016
c-0.133,0.133,1.591-1.428,1.591-3.006c0-1.216-0.299-1.372-0.529-2.299c-0.266-1.059-1.396-1.938-2.121-2.121
c-0.779-0.194-2.253-1.469-2.652-1.768c-0.623-0.468-2.185-0.493-2.828-0.707c-0.7-0.234-1.939-0.044-2.475-0.177
c-0.663-0.166-0.599-0.371-1.237-0.53"/>
<path id="path4041_1_" fill="none" stroke="#000000" stroke-width="2" d="M243.007,33.481l-2.573,4.065l4.695-1.591l0.177,9.369
l-4.243-1.062l2.121,3.712"/>
<path id="path4043_1_" fill="none" stroke="#000000" stroke-width="2" d="M236.467,36.133l0.354,8.662"/>
<path id="path4049_1_" fill="none" stroke="#000000" stroke-width="2" d="M237.161,14.066c-0.53,0.796-1.667,2.622-2.108,3.505
c-0.428,0.854-0.9,1.245-1.592,1.592c-0.873,0.437-1.479,1.004-2.651,1.591c-0.732,0.367-1.832,0.177-2.65,0.177v18.031"/>
</g>
</g>
<path id="path4051_1_" fill="none" stroke="#000000" stroke-width="2" d="M280.661,57.699V69.72"/>
</g>
<path id="path4125_1_" fill="none" stroke="#000000" d="M284.019,37.9c0.065,0.777-0.559,1.796-1.061,2.299
c-0.343,0.343-0.304,0.417-0.884,0.707"/>
<path id="path2598_1_" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M260.085,53.843
c-2.114-4.329-3.738-8.076-3.609-8.326c0.128-0.251,0.464-0.854,0.744-1.34c0.67-1.158,0.658-2.966-0.029-4.415l-0.552-1.162
l3.892-7.729l3.893-7.729l-0.027,11.49c-0.015,6.319-0.125,14.999-0.246,19.287l-0.22,7.796L260.085,53.843z"/>
<path id="path2600_1_" fill="#FFFF00" stroke="#070404" stroke-linecap="round" d="M248.851,29.433l-4.427-9.122l8.338-0.104
c4.586-0.059,8.999-0.012,9.808,0.104l1.47,0.21l-4.359,8.911C253.81,41.426,254.673,41.426,248.851,29.433L248.851,29.433z"/>
<path id="path2602_1_" fill="#FFFF00" stroke="#070404" stroke-linecap="round" d="M243.829,58.448
c-0.126-1.491-0.229-4.646-0.229-7.011c0-3.23-0.143-4.458-0.519-4.983c-0.952-1.331-1.028-1.315,1.049-0.755
c0.866,0.232,1.679,0.274,1.787,0.167c0.107-0.108,0.086-2.586-0.051-5.507l-0.247-5.309l-1.407,0.496
c-1.991,0.703-2.636,1.346-1.809,0.185c0.666-0.936,1.198-2.271,1.228-7.696l-0.271-7.282l4.487,9.812
c3.668,7.438,4.124,8.555,3.687,9.039c-0.831,0.919-0.998,2.639-0.378,3.882l0.563,1.13l-3.745,8.178
c-2.061,4.498-3.784,8.221-3.831,8.272S243.955,59.94,243.829,58.448L243.829,58.448z"/>
<path id="path2606_1_" fill="#FFFF00" stroke="#070404" stroke-linecap="round" d="M244.306,64.117
c0-0.146,7.666-16.923,8.175-17.891c0.281-0.533,0.443-0.547,1.455-0.121c1.023,0.431,1.563,1.352,5.284,9.016
c2.627,5.412,3.988,8.585,3.719,8.668C262.366,63.968,244.306,64.285,244.306,64.117L244.306,64.117z"/>
<path id="path2636_1_" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M229.16,73.123
c-0.105-1.206-0.101-6.421-0.181-11.515l-0.227-9.205c0,0,3.133-1.444,4.641-2.141l2.844-1.219l0.109,10.969l0.156,10.766
l-3.656,2.406l-3.625,2.453L229.16,73.123z"/>
<path id="path2638_1_" fill="#FFFF00" stroke="#070404" stroke-linecap="round" d="M254.736,71.027
c-5.25-0.133-11.256-0.262-13.347-0.286l-3.801-0.048v-10.96V48.772l1.855,0.006c3.668-0.062,3.199-0.607,3.029,8.786l0.111,8.11
l4.838-0.144c2.661-0.079,7.8-0.239,11.42-0.355l6.582-0.213l0.262-22.788c0.146-12.533,0.199-22.852,0.121-22.93
c-0.077-0.077-5.424-0.252-11.882-0.39l-11.741-0.247v7.127v7.127h-2.512h-2.513l0.222-1.503c0.121-0.825,0.056-4.725,0.223-8.711
c0.166-3.985-0.022-7.91,0-7.958c0.024-0.049,7.939,0.495,16.8,0.495h16.108l-0.223,27.488c-0.123,15.119-0.304,27.768-0.399,28.107
c-0.149,0.527-0.575,0.608-2.893,0.553C265.505,71.298,259.987,71.16,254.736,71.027L254.736,71.027z"/>
<path id="path2640_1_" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M222.21,49.873
c-0.04-2.141-0.253-7.203-0.253-7.203l7.501-3.787c4.484-2.365,7.377-4.045,7.452-4.416c0.104-0.52,0.016-0.641,0.016-0.641
c1.197,0.136,5.127,0.28,5.127,0.28s-2.908,4.412-2.746,4.412c0.161,0,5.401-2.143,5.401-2.143s-0.048,2.447-0.048,4.4l0.048,3.876
l-2.11-0.577c-1.173-0.297-2.407-0.497-2.407-0.497s0.583,1.113,1.221,2.227l1.188,2.067l-3.375-0.188
c-1.647-0.126-2.802-0.089-2.983,0.078c-0.322,0.295-13.575,6.4-13.906,6.4C222.241,54.164,222.21,49.873,222.21,49.873z
M237.347,43.576c-0.031-0.738-0.184-2.736-0.187-4.438c-0.004-2.855,0.021-3.094-0.634-3.094c-0.807,0-0.732,0.821-0.337,5.922
c0.202,2.597,0.166,2.917,0.789,2.917C237.594,44.884,237.399,44.795,237.347,43.576z"/>
<path id="path2642_1_" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M228.751,29.621v-8.072
h1.063c2.017-0.597,3.728-1.647,5.416-3.483l1.414-2.042l-0.309,5.701c-0.102,2.917-0.005,6.726-0.112,8.674l-0.25,3.833l-3.584,1.9
l-3.638,1.85V29.621z"/>
<path id="path2648_1_" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M278.155,67.839
c-0.729-0.387-2.241-0.782-3.357-0.881c-3.878-0.343-3.748-0.242-3.491-2.699c0.123-1.186,0.225-3.551,0.225-5.256V55.9l1.769-0.587
c2.248-0.746,3.568-0.465,5.344,1.14l1.374,1.241v5.438c0,2.991-0.119,5.432-0.265,5.424
C279.604,68.548,278.886,68.224,278.155,67.839L278.155,67.839z"/>
<path id="path2650_1_" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M279.831,55.835
c-2.292-2.326-4.082-2.711-7.505-1.612c-0.766,0.245-0.797,0.173-0.797-1.85c0-1.883,0.084-2.126,0.797-2.316
c1.754-0.471,4.874,0.063,6.986,1.193c1.746,0.935,3.615,5.478,2.529,6.147C281.681,57.498,280.775,56.795,279.831,55.835
L279.831,55.835z"/>
<path id="path2652_1_" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M279.913,50.021
c-1.121-0.819-5.171-1.649-6.836-1.399l-1.548,0.231v-5.124v-5.124l1.149-0.48c2.03-0.852,3.876-0.567,6.256,0.959l2.152,1.381
l-0.23,4.95c-0.127,2.723-0.249,4.977-0.271,5.009C280.563,50.456,280.26,50.275,279.913,50.021L279.913,50.021z"/>
<path id="path2654_1_" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M279.862,38.113
c-2.257-1.577-2.617-1.715-4.53-1.715c-1.145,0-2.4,0.172-2.793,0.383c-0.395,0.211-0.79,0.307-0.884,0.214
c-0.093-0.093-0.059-1.14,0.076-2.326l0.244-2.158h1.667c1.73,0,5.2,1.027,6.626,1.962c0.936,0.612,2.929,3.238,2.929,3.856
c0,0.226-0.197,0.654-0.44,0.955C282.369,39.76,282.01,39.615,279.862,38.113L279.862,38.113z"/>
<path id="path2656_1_" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M278.601,32.226
c-1.264-0.451-3.293-0.913-4.508-1.026l-2.21-0.206v-4.723v-4.723h1.998c2.406,0,5.277,1.268,6.443,2.844
c0.701,0.95,0.765,1.404,0.675,4.853l-0.102,3.803L278.601,32.226z"/>
<g id="g2660_1_">
<path id="path2604_1_" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M253,43.796
c-1.534-1.823-1.065-3.622,1.047-4.02c1.708-0.319,2.281,0.219,2.281,2.146c0,1.076-0.217,1.763-0.708,2.255
C254.647,45.149,254.068,45.065,253,43.796L253,43.796z"/>
<path id="path2644_1_" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M243.599,80.576
c-10.403-0.125-19.131-0.033-19.158-0.063c-0.025-0.03-0.13-4.32-0.25-9.328c-0.12-5.007-0.203-10.707-0.313-12.703l-0.126-3.891
l1.845-0.781l2.031-0.938l0.281,11.53c0.138,6.269,0.147,11.854,0.205,12.391l0.042,0.798l8.773-5.817l14.623,0.492
c8.167,0.115,15.923,0.302,17.235,0.415l2.387,0.205v-2.439v-2.438l2.387,0.131c4.47,0.246,8.573,3.272,8.573,6.322
c0,1.413-0.588,2.137-3.632,4.468l-2.634,2.018l-6.679-0.07C265.519,80.837,254.003,80.702,243.599,80.576L243.599,80.576z"/>
<path id="path2646_1_" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M224.556,17.306
l4.121,0.035c2.082,0.02,5.371-0.166,5.836-0.035c0.813,0.229-0.842,1.386-2.332,2.386c-0.996,0.669-1.709,1.062-2.786,0.832
l-1.883-0.213l0.126,18.116l-4.166,2.301L224.556,17.306z"/>
<path id="path2658_1_" fill="#FFFF00" stroke="#070404" stroke-width="0.2475" stroke-linecap="round" d="M280.948,23.014
c-1.609-1.682-4.859-2.965-7.146-2.822l-1.92,0.119l0.001-2.514v-2.515l2.74,0.438c2.158,0.346,3.246,0.756,5.124,1.934
c1.988,1.247,2.451,1.725,2.799,2.883c0.337,1.123,0.318,1.59-0.091,2.455l-0.507,1.067L280.948,23.014z"/>
</g>
<g>
<path id="path3263" fill="#FFE000" d="M131.515,58.083c4.658,0.937,9.781,1.056,14.765-0.627
c10.672-3.602,16.802-5.245,21.555-5.583c-0.17-0.002-7.179,4.075-6.471,6.905c0.707,2.83,4.92,2.562,6.772,2.763
c1.853,0.203,3.773,2.393,1.313,4.077c-2.461,1.685-4.616,5.862-7.413,5.931c-2.798,0.068-2.09-2.089-2.932-2.931
c-0.177-0.177-0.45-0.344-0.929-0.474c-0.149,0.001-4.766-3.94-8.237,1.484c0,0,3.115-0.956,4.38,0.97
c-0.195,1.717,1.52,1.452,2.123,2.298c0,0-2.659-1.92-4.378,0.192c-2.683-1.098-3.595-0.042-4.308,1.57
c-0.552,1.522,0.052,2.882,0.856,3.902c0.646-1.616,1.64-2.042,3.286-1.986c0.602,0.768,1.567,1.253,2.352,1.216
c0.152,0.156-2.944,0.68-1.182,5.136c0,0,3.025-3.669,6.063-1.906c0.012,0.047,0.798,0.644,1.346-0.787
c0.549-1.429,2.098-2.812,3.099-2.119c1.001,0.69,0.867,3.206,5.434,1.876l0,0c0,0-2.711-2.898,0.783-5.481
c-0.047,0.433-0.104,0.755-0.21,1.084c-0.505,1.55,1.28,2.898,1.28,2.898s0.135-2.562,1.517-3.304
c0.599-0.319,0.98-1.261,1.245-2.417c0.068-0.126,1.417,0.616,1.687,3.396c0,0,2.698-4.242,1.081-9.868c0,0,2.623,2.882,2.79,5.169
c0,0,4.789-6.386-0.501-11.484c1.205,0.112,1.884-0.435,2.74-1.071c0.381-1.072-0.144-2.217-1.312-2.55
c-1.167-0.333-1.452,0.597-2.478,0.716c-1.278,0.148-1.573-2.287,0.762-2.121c0.592,0.043,1.063-0.308,1.705-0.888
c3.776,1.743,6.271,3.828,6.207,3.751c3.879,3.103,6.482,1.545,10.102,1.545c4.432,0,4.099,2.572,2.572,5.146
c-1.523,2.573-3.002,6.338-3.002,6.338s-0.856,2.764-1.811,1.382s-2.192-4.384-4.313-3.55c-0.119,0.071-2.55-2.788-5.552,0.978
c0,0,2.573-1.145,3.559,0.651c-0.39,0.85-0.39,1.754,0.11,2.685c-0.916,0.174-1.516,0.691-2.138,1.282
c-0.006-0.044-3.724,0.146-3.58,2.958c0.143,2.813,2.239,3.574,2.239,3.574s-0.716-2.144,1.931-3.088
c0.877,1.047,1.938,1.522,3.312,0.932c-0.011,0.484,0.02,0.825,0.096,1.204c0.715,3.526,3.098,3.432,3.098,3.432
s-0.524-2.287,1.459-3.302c0.521,0.317,0.956,0.494,1.4,0.396c0,0,1,0.048,1.048-0.19c0.048-0.237-0.096-2.145,0.572-2.716
c0.667-0.571,0.856-1.048,2.572-1.048c0,0,2.813,3.717,5.051,1.811c0,0-3.002-3.907-2.286-6.719c0,0,0.856,3.099,3.05,3.479
c0,0,0.856-0.953,0.286-3.24c-0.572-2.287-0.668-3.669-0.524-5.003c0,0,1.524,4.67,4.956,4.003
c3.431-0.667-1.335-0.048-1.153-6.656c0.535,0.426,1.562,0.672,2.964,0.271l0,0c0,0-0.477-7.672-5.956-8.911
c0,0,3.752-0.282,2.504-3.651c0,0-7.277,2.83-13.586-4.986c-0.546-0.606,7.031,3.396,12.226-2.369
c5.194-5.767-1.382-10.198-4.193-11.39c-2.811-1.19-16.011-1.954-24.491-0.523c-3.651,0.616-16.081,0.878-26.296,0.276
c0,0-5.321-0.276-5.061-3.255c0.263-2.978,2.66-5.046,6.233-4.046c3.573,1.001,6.442,4.207,14.975,3.165
c0.007,0.002,3.455,1.138,5.688,0.2c0.201,0.078,3.727,1.076,5.981-0.097c0.998,0.493,2.838,1.31,7.471,0.274
c2.135,0.365,4.775,0.27,8.21-0.807c8.674-2.716,10.197-4.766,18.584-5.813c0,0-4.104-0.613-21.846,0.663
c-10.47,0.573-21.018-1.137-31.382-2.234c-6.052-1.239-14.581-1.239-17.297,4.24c-2.717,5.48-0.145,10.103,4.241,11.104
c4.384,1.001,17.549,1.649,31.498-0.439c3.774-0.564,9.785-0.651,16.387-0.313c0,0,9.93,0.382,8.75,5.335
c-1.179,4.953-8.929,3.571-11.928,1.078c0,0-5.661-3.673-18.195-1.921c-12.535,1.752-37.113,0.253-37.246,0.067
c-0.637-2.049-1.461-4.22-1.632-4.641c0,0,1.881,0.664,2.453,2.214c0,0,2.021-2.999-0.941-6.878
c0.003-1.93-0.964-2.556-0.964-2.556c2.812,0.763,3.384-3.05,3.384-3.05c-2.335-0.763-5.099,1.097-5.099,1.097
c3.335-0.715,3.524-3.24,3.524-3.24c-2.716-0.286-4.991,1.149-4.991,1.149c3.167-0.875,3.03-5.257,3.03-5.257
c-3.976,0.068-5.458,3.37-5.458,3.37c2.428-2.831,0.54-7.413,0.54-7.413c-3.101,1.82-3.438,6.335-3.438,6.335l0,0
c0.135-4.784-3.842-5.593-3.842-5.593c1.28,2.291,0.943,5.458,0.943,5.458c-0.675-3.033-3.167-3.977-3.167-3.977
c-0.606,2.562-0.136,4.786-0.136,4.786c-1.146-3.101-3.639-2.629-3.639-2.629c0.172,0.278,0.316,0.618,0.259,1.125
c-1.041,0.636-1.856,1.285-2.166,3.217c-0.086,0.539-0.12,1.014-0.128,1.67c-1.373-1.86-2.852-0.836-2.852-0.836
s1.025,0.857-0.5,2.835c-1.523,1.978-0.715,3.191-0.971,3.412c-1.585,1.354-2.547,2.974-3.437,5.046
c5.069-3.245,3.944-2.234,1.498,0.867c-0.685,0.941-1.362,2.097-2.14,3.427c-6.144-3.479-7.188-8.97-5.268-10.317
c1.334-0.937,2.074-3.029,1.148-4.426c0.064-0.946-0.069-1.878-0.711-2.818c-2.156-3.167-5.728-0.438-5.728-0.438l0,0
c3.1,0.539,2.628,2.56,2.548,2.542c-2.117,0.824-2.165,3.521-2.023,6.136c0.104-2.63-0.53-4.013-1.145-4.713
c-2.952-7.639-8.781-1.203-8.781-1.203c3.538-0.876,4.111,1.348,4.111,1.348s0.358-1.411-0.31,0.924
c-0.306,1.069,0.285,1.994,0.781,2.484c-1.162-0.77-1.924-0.15-1.938-0.043c-0.016,0.106-1.7-1.579-3.723-0.164
c-2.021,1.415-2.089,4.011-1.179,5.729c0,0,1.583-3.27,4.288-1.031c1.081,1.315,2.559,0.958,4.274,0.719
c1.715-0.238,2.191,0.43,2.382,0.93s-0.381,0.811-0.381,0.811l0,0c-2.335,1.31-2.765,2.418-2.765,2.418
c-0.667,1.418,0.62,1.871,1.645,1.775c1.023-0.097,3.479-2.454,3.479-2.454l0,0c1.287,3.431,3.049,3.1,3.049,3.1
c-3.233,3.47-7.614,2.189-7.614,2.189c3.234,4.313,7.21,2.932,7.21,2.932c-1.078,2.562-5.224,1.887-5.224,1.887
c2.696,3.234,7.684,4.01,7.684,4.01c-0.792,1.398-4.062,0.978-4.062,0.978c6.019,4.996,13.042,6.053,15.047,6.323
c-2.139,8.856-8.595,11.737-8.595,11.737c1.524-3.252-1.651-4.161-1.787-4.22c-1.362-3.607-4.131-2.964-6.711-1.012
c0,0,2.931-0.5,3.375,1.906c-0.851,0.886-0.99,2.121-0.167,3.173c0.012-0.023-1.573-1.038-2.841-0.275
c-0.081,0.128-0.391-1.707-2.678-1.11c-2.288,0.596-3.693,3.573-2.668,5.86c1.341-1.87,3.018-2.001,4.229-0.718
c0.379,1.159,1.275,1.745,2.417,1.777c-0.118,0.036-3.692,6.16,3.718,6.041c0,0-1.811-2.05-0.147-3.779
c0.735,0.519,1.327,0.695,1.813,0.612c1.752-0.305,1.583-2.695,2.543-3.27c0.96-0.573,1.416,0.118,1.416,0.118l0,0
c0.473,5.088,6.194,3.555,6.194,3.555c-1.475-1.074-2.389-2.548-2.202-4.438c-0.093-0.918,2.465-3.282,2.465-3.282
c-1.097,4.694,2.765,5.289,2.765,5.289c-0.953-2.621,1.404-7.981,1.404-7.981l0,0c-1.334,4.004,3.051,6.528,3.051,6.528
s-0.716-1.811,0.048-3.431c0.763-1.62,0.477-3.24,0.333-5.146c-0.144-1.905,0.448-3.375,0.448-3.375
c0,5.291,4.103,5.082,4.091,5.085c-0.161,0.055-0.563-2.229,0.387-3.731c0.833-1.322,0.841-5.055,0.841-5.055
c2.954,3.384,4.002-5.193,4.002-5.193"/>
<path id="path2461" fill="none" stroke="#000000" stroke-width="1.5" d="M187.975,72.99c0,0,1.858,0.047,2.669,0.952
M189.739,68.749c0,0-2.431-2.859-5.433,0.904c0,0,2.573-1.144,3.574,0.572 M185.832,74.229c0,0-3.718,0.19-3.574,3.002
c0.143,2.813,2.239,3.574,2.239,3.574s-0.716-2.144,1.954-3.145 M192.597,76.088L192.597,76.088c0,0-3.479,0.238-2.764,3.765
s3.098,3.432,3.098,3.432s-0.523-2.287,1.334-3.288 M194.265,75.278c0,0-1.382,0.048-1.572,0.905
c-0.189,0.858,1.383,4.575,3.099,4.193c0,0,1,0.048,1.048-0.19c0.048-0.237-0.095-2.145,0.572-2.716s0.856-1.048,2.572-1.048
c0,0,2.813,3.717,5.052,1.811c0,0-3.002-3.907-2.287-6.719c0,0,0.856,3.098,3.05,3.479c0,0,0.856-0.953,0.286-3.24
c-0.572-2.287-0.668-3.669-0.524-5.003c0,0,1.524,4.67,4.956,4.003c3.431-0.667-1.335-0.048-0.953-6.624 M207.56,62.031
c0,0,1.097,3.383,4.767,2.335l0,0c0,0-0.478-7.673-5.957-8.911c0,0,3.752-0.282,2.504-3.651c0,0-7.277,2.83-13.039-4.381
c-2.042-2.555-5.564-3.917-9.262-4.61 M189.739,78.47c-2.097,1.239-4.003-0.762-4.192-2.859c-0.19-2.097,2.43-2.62,2.43-2.62
c-1-1.859,0-3.622,2.002-4.385c2.001-0.762,3.24,2.24,4.193,3.622s1.811-1.382,1.811-1.382s1.479-3.765,3.002-6.338
c1.525-2.573,1.858-5.146-2.572-5.146c-4.432,0-7.339,2.334-13.104-4.622c-5.766-6.957-17.154-5.242-17.154-5.242 M186.403,57.932
L186.403,57.932c0,0-5.643-4.734-12.104-5.766c-6.576-1.048-12.484,0.048-28.021,5.29c-4.982,1.683-10.105,1.563-14.765,0.627
M132.27,55.24c0,0-1.048,8.576-4.002,5.193c0,0-0.008,3.732-0.841,5.054c-0.948,1.505-0.548,3.786-0.387,3.732
c0.012-0.003-4.09,0.205-4.09-5.085c0,0-0.593,1.469-0.449,3.375s0.43,3.526-0.333,5.146c-0.764,1.619-0.048,3.431-0.048,3.431
s-4.385-2.525-3.051-6.528l0,0c0,0-2.357,5.361-1.404,7.981c0,0-3.86-0.596-2.765-5.289c0,0-2.558,2.364-2.465,3.282
c-0.187,1.89,0.729,3.362,2.202,4.438c0,0-5.722,1.534-6.194-3.555l0,0c0,0-0.455-0.691-1.416-0.118
c-0.96,0.573-0.792,2.965-2.543,3.269c-1.752,0.304-4.886-2.796-2.493-4.92 M100.847,76.383c-3.016,0.927-4.835-0.505-4.077-3.875
s3.893-1.381,3.875-1.349c-1.566-2.004,0.354-4.666,3.64-4.01c0,0,3.175,0.91,1.65,4.161c0,0,6.456-2.88,8.493-11.683
M104.013,67.034L104.013,67.034c0,0-1.549-5.528-6.576-0.953c0,0,2.932-0.5,3.432,1.857 M97.723,71.013L97.723,71.013
c0,0-0.31-1.835-2.597-1.239c-2.288,0.597-3.693,3.574-2.668,5.861c1.341-1.87,3.018-2.001,4.169-0.81 M98.986,76.731
c0,0-3.573,6.124,3.836,6.004c0,0-1.811-2.049-0.333-3.954 M114.633,59.52c-2.108-0.214-9.132-1.271-15.15-6.268
c0,0,3.27,0.421,4.062-0.979c0,0-4.987-0.774-7.684-4.009c0,0,4.146,0.674,5.224-1.887c0,0-3.977,1.381-7.21-2.933
c0,0,4.38,1.281,7.614-2.188c0,0-1.763,0.331-3.049-3.1l0,0c0,0-2.454,2.357-3.479,2.453s-2.312-0.356-1.645-1.774
c0,0,0.43-1.108,2.765-2.418l0,0c0,0,0.571-0.311,0.381-0.812c-0.19-0.5-0.667-1.167-2.382-0.929s-3.193,0.596-4.266-0.738
c-1.071-1.334-1-3.336,0.62-4.623c0,0,0.763-0.618,1.692-0.047 M94.507,30.961c0,0-3.598-1.645-2.931-3.979s2.906-2.478,3.74-2.024
s2.55,1.477,2.384,5.67c-0.17-3.127-0.068-6.374,3.383-6.421c4.044,0.033,3.379,4.022,1.382,5.425
c-1.921,1.348-0.876,6.839,4.987,10.311 M90.402,29.531L90.402,29.531c0,0-1.685-1.686-3.707-0.271
c-2.021,1.415-2.089,4.01-1.179,5.729c0,0,1.583-3.27,4.279-1.012 M91.885,26.06c0,0-0.573-2.224-4.111-1.348
c0,0,5.829-6.437,8.862,1.28 M99.802,24.51c0,0,0.472-2.021-2.628-2.56l0,0c0,0,3.571-2.73,5.728,0.438
c0.642,0.94,0.775,1.872,0.649,2.717 M167.664,51.87c0,0-7.009,4.078-6.301,6.907c0.707,2.83,4.92,2.562,6.772,2.763
c1.853,0.203,3.773,2.393,1.313,4.077c-2.461,1.685-4.616,5.862-7.413,5.931c-2.798,0.068-2.09-2.089-2.932-2.931
c-0.843-0.844-3.909-1.483-4.649,1.145c-0.742,2.628,1.313,2.19,1.986,3.134c0,0-2.659-1.92-4.548,0.337
c-1.888,2.258,0.891,4.805,2.204,4.4 M159.742,75.921c0,0-3.182-2.12-5.396,1.215s1.537-2.788,4.801,3.931
c0,0,0.786,0.597,1.334-0.834c0.549-1.429,2.098-2.812,3.099-2.12s0.867,3.207,5.434,1.877l0,0c0,0-2.711-2.898,0.809-5.611
M169.45,72.626c0,0,0.64,1.416,0.135,2.965c-0.505,1.55,1.281,2.898,1.281,2.898s0.134-2.562,1.516-3.304
c1.382-0.741,1.617-4.785,1.011-5.626 M173.696,72.643c0,0,1.349,0.742,1.617,3.521c0,0,2.698-4.242,1.081-9.868
c0,0,2.623,2.882,2.79,5.169c0,0,4.789-6.386-0.501-11.484l0,0c0,0,2.359,0,2.74-1.071c0.381-1.072-0.144-2.217-1.312-2.55
c-1.167-0.333-1.452,0.597-2.478,0.716c-1.278,0.148-1.573-2.287,0.762-2.121c0.682,0.049,1.2-0.42,1.722-1.228 M158.028,68.145
c0,0-4.615-3.941-8.088,1.483c0,0,3.115-0.956,4.39,1.086 M152.237,72.943c-2.854-0.952-3.767,0.104-4.479,1.716
c-0.552,1.522,0.052,2.882,0.856,3.902c0.646-1.616,1.64-2.042,3.313-1.95 M154.405,77.946c0,0-3.098,0.524-1.334,4.979
c0,0,3.025-3.669,6.053-1.954 M194.742,46.21c0,0,7.576,4.003,12.771-1.763c5.194-5.767-1.382-10.198-4.193-11.39
c-2.811-1.19-16.011-1.954-24.491-0.523c-3.651,0.615-16.081,0.878-26.295,0.276c0,0-5.322-0.276-5.062-3.255
c0.263-2.978,2.66-5.046,6.233-4.046c3.573,1.001,6.442,4.207,15.13,3.241 M162.125,25.458c0,0,1.905,0.07,3.836,1.501
c1.93,1.429,4.05,3.073,8.506,1.978 M168.224,25.481c0,0,1.786-0.119,3.55,1.382c1.764,1.502,3.265,3.621,8.673,1.979
M175.491,26.482c0,0,0.477-0.477,3.858,1.716c3.384,2.191,6.386,1.238,8.34,0.81 M180.709,26.315c0,0,0.882-0.356,1.954,0.381
c1.071,0.738,4.692,4.266,13.365,1.55c8.674-2.717,10.197-4.766,18.584-5.813c0,0-4.104-0.614-21.846,0.663
c-2.143,0.155-4.521,0.134-7.062-0.017l0,0c0,0-18.269-0.98-24.32-2.22c-6.052-1.238-14.581-1.238-17.297,4.241
c-2.717,5.48-0.145,10.103,4.241,11.104c4.384,1.001,17.549,1.649,31.498-0.439c3.774-0.564,9.785-0.652,16.387-0.313
c0,0,9.93,0.382,8.75,5.335c-1.179,4.952-8.929,3.57-11.928,1.077c0,0-5.661-3.673-18.195-1.921
c-12.535,1.752-37.113,0.253-37.113,0.253 M122.188,31.542c0,0,1.457,0.325,1.648,1.087c0.085,0.339,0.408,0.578,0.784,0.722
c0,0-0.117,3.566-3.264,2.328c-1.057-0.416-1.599-1.09-1.846-1.854l0,0c0,0-0.251-0.387-0.203-1.006c0,0-2.145,0.524-2.239-1.523
c-0.096-2.049,0.667-2.859,1.431-3.956c0.762-1.096,0.88-6.199-0.333-8.153c0,0,2.493-0.471,3.639,2.628
c0,0-0.472-2.224,0.136-4.786c0,0,2.492,0.944,3.167,3.978c0,0,0.337-3.167-0.943-5.458c0,0,3.977,0.809,3.842,5.593l0,0
c0,0,0.337-4.515,3.438-6.335c0,0,1.888,4.582-0.54,7.413c0,0,1.482-3.302,5.458-3.37c0,0,0.137,4.381-3.03,5.256
c0,0,2.275-1.435,4.991-1.148c0,0-0.189,2.524-3.524,3.239c0,0,2.764-1.857,5.099-1.096c0,0-0.571,3.813-3.384,3.049
c0,0,1.62,1.05,0.663,4.244c-2.97,0.338-3.998-2.433-3.998-2.433c1.144,4.479-0.43,5.432-1.668,6.527
c-1.239,1.097-2.479-1.857-2.479-1.857s1.479,2.24-1.952,2.621c-3.433,0.381-2.456-3.9-2.456-3.9
c0.472,0.183,1.023,0.214,1.29,0.108c0.477-0.19,1.2,0.081,1.857-0.542 M120.024,34.821c0,0,0.199,1.197,0.097,2.813
c-0.078,1.203,0.025,4.418,1.429,4.575c2.141,0.24,3.908-1.573,4.956-4.766 M118.07,28.054c0,0-2.478-0.361-1.811-4.527
c0.31-1.931,1.125-2.581,1.987-3.092 M134.509,47.827c2.797-1.449,1.387-6.321,1.927-5.95c0.539,0.37,1.261,1.175,1.261,1.175
s0.495-3.1-1.731-7.682c0,0,1.881,0.664,2.453,2.214c0,0,2.021-2.999-0.943-6.705 M117.213,28.865
c-4.91,0.23-7.025,2.563-8.839,6.791c0,0,2.311-1.979,4.24-2.05c0.024-0.023-5.551,4.169-5.359,10.889c0,0,1.382-1.954,2.954-1.858
c0,0-2.765,6.052-0.572,10.437c0,0,0.143-2.288,1.906-3.526l0,0c0,0-1.43,3.383,0.763,6.576c0,0,0.715-2.573,1.572-3.098
c0,0-0.811,3.766,1.001,8.006c0,0,4.099-1.191,6.813-4.86c0,0,1.191,2.036,0.315,3.484c0,0,3.201-0.81,4.516-6.604
c0,0,0.235,3.403-0.473,4.448c0,0,3.943-2.426,4.415-9.232c0,0,0.909,3.942,0.37,5.155c0,0,5.459-3.134,2.662-14.253
M112.066,30.389c0,0-0.81-1.215,0.715-3.191c1.525-1.979,0.5-2.836,0.5-2.836s1.479-1.023,2.837,1.072 M114.123,36.64
c0,0-1.28,4.583-0.741,9.502c0,0,1.078-1.281,2.123-1.146c0,0-1.112,1.448-0.708,3.808c0,0,1.28-1.617,3.134-1.449
c0,0-1.651,1.854,0.103,6.401c4.277-2.594,3.269-5.391,3.269-5.391s1.449,1.516,0.977,3.672c0,0,2.63-0.774,2.563-4.718l0,0
c0,0,0.841,1.482,0.942,2.897c0,0,1.785-0.606,2.324-5.559c0,0,1.181,1.11,1.112,2.089c0,0,1.617-0.979,1.517-6.369 M129.96,36.236
c0,0-0.202,3.438-1.349,4.246c-1.146,0.81-2.584,3.644-3.324,3.912c-0.741,0.27-2.628,0.067-3.37,0.404
c-0.74,0.337-1.617,1.079-2.695-0.471c-1.078-1.551-1.55-1.617-1.954-2.359c0,0-0.202-0.675,0-1.483
c0.202-0.808,0.81-5.12-0.066-6.198c0,0,1.304-0.813,1.506-1.554"/>
<path id="path2443" d="M122.361,36.211c0,0,0.363,1.463,0.302,2.351l-0.08,1.109c0,0,0.888-2.221,2.315-2.777
C124.898,36.894,124.686,33.52,122.361,36.211z M118.407,26.514c0,0-0.021-0.019-0.328-0.85c-0.311-0.832-0.213-2.589,0.676-2.358
C119.643,23.538,118.407,26.533,118.407,26.514z M127.407,24.829l-0.749,0.001c0,0-0.933,0.85-1.15,1.846
c-1.594-1.3-3.101-2.469-5.335-1.826l0.242,0.883c0.648,1.208,0.665,1.715,0.998,2.028c0.271,0.38,0.637,0.745,1.12,0.958
c0.481,0.213,1.091,0.259,1.758,0.022c0.426-0.151,0.737-0.352,0.955-0.577c0.168-0.175,0.215-0.384,0.262-0.588
c0.007,0.02,0.019,0.025,0.041,0.063c0.021,0.036,0.054,0.14,0.217,0.164c0.082,0.012,0.181-0.028,0.23-0.062
c0.049-0.033,0.058-0.07,0.072-0.095c0.063-0.091,0.063-0.118,0.078-0.169c0.017-0.051,0.056-0.104,0.05-0.186
C126.096,25.855,127.407,24.829,127.407,24.829z M121.344,25.843c0.337-0.028,1.117,0.032,1.563,0.366
c-0.493,0.208-0.591,0.81-0.591,1.063c0,0.259,0.063,0.487,0.141,0.703c-0.209-0.152-0.392-0.352-0.547-0.568
C121.558,26.915,121.417,26.081,121.344,25.843z M124.222,26.738c0.213,0.064,0.4,0.163,0.536,0.252
c0.161,0.235,0.237,0.183,0.226,0.384c-0.008,0.125-0.067,0.239-0.195,0.373c-0.128,0.133-0.339,0.281-0.704,0.411
c0.125-0.254,0.182-0.558,0.182-0.888C124.265,27.085,124.262,26.903,124.222,26.738z M128.216,25.142l0.527,0.53
c0,0,0.059,1.26-0.492,2.121c2.046,0.207,3.938,0.447,5.063,2.479l-0.795,0.453c-1.313,0.396-1.683,0.742-2.14,0.729
c-0.462,0.076-0.979,0.076-1.47-0.115s-0.954-0.588-1.26-1.228c-0.193-0.407-0.272-0.771-0.268-1.084
c0.004-0.241,0.119-0.423,0.229-0.6c-0.02,0.008-0.03,0.005-0.072,0.015c-0.041,0.01-0.139,0.063-0.27-0.036
c-0.065-0.05-0.107-0.148-0.119-0.206c-0.013-0.059,0.01-0.092,0.015-0.119c0.021-0.11,0.039-0.128,0.063-0.174
c0.025-0.048,0.034-0.112,0.098-0.167C128.416,26.794,128.216,25.142,128.216,25.142z M131.785,30.147
c-0.218-0.259-0.813-0.768-1.363-0.848c0.2,0.497-0.157,0.99-0.337,1.17c-0.183,0.182-0.388,0.301-0.594,0.398
c0.256,0.04,0.522,0.027,0.787-0.017C130.876,30.752,131.565,30.263,131.785,30.147z M129.117,28.743
c-0.196-0.105-0.397-0.169-0.558-0.202c-0.281,0.053-0.297-0.039-0.431,0.11c-0.084,0.096-0.122,0.219-0.125,0.402
c-0.003,0.186,0.04,0.439,0.207,0.789c0.091-0.268,0.267-0.523,0.499-0.756C128.842,28.958,128.972,28.832,129.117,28.743z"/>
</g>
<path id="path6793_1_" inkscape:r_cx="true" inkscape:r_cy="true" sodipodi:type="arc" sodipodi:ry="50" sodipodi:rx="50" sodipodi:cy="390" sodipodi:cx="480" fill="none" stroke="#333333" stroke-linecap="round" stroke-linejoin="round" d="
M70.564,144.066c0,2.79-2.261,5.053-5.051,5.053s-5.051-2.263-5.051-5.053c0-2.789,2.261-5.05,5.051-5.05
S70.564,141.277,70.564,144.066z"/>
<path id="path7668_1_" inkscape:r_cx="true" inkscape:r_cy="true" sodipodi:type="arc" sodipodi:ry="295" sodipodi:rx="295" sodipodi:cy="390" sodipodi:cx="480" fill="none" stroke="#333333" stroke-linecap="round" stroke-linejoin="round" d="
M95.315,144.066c0,16.459-13.342,29.803-29.801,29.803c-16.458,0-29.801-13.344-29.801-29.803c0-16.458,13.343-29.801,29.801-29.801
S95.315,127.608,95.315,144.066z"/>
<path id="sepales_1_" sodipodi:nodetypes="cccccc" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="#808000" stroke="#070404" stroke-width="2" stroke-linecap="round" d="
M109.457,157.037c-23.64,1.28-36.35,13.986-43.597,32.403c-8.625-19.429-22.604-31.053-44.292-31.446
c21.079-15.54,21.864-33.333,16.223-51.842c17.119,9.841,34.965,12.286,54.317-0.592C89.147,125.635,93.397,143.304,109.457,157.037
"/>
<g id="g13210_1_" inkscape:r_cx="true" inkscape:r_cy="true">
<path id="petale1_1_" sodipodi:nodetypes="cscsssc" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="#FF0000" stroke="#000000" stroke-width="2" stroke-linecap="round" d="
M57.441,105.901c2.072,0,6.43,2.144,8.501,2.144s5.286-2.285,7.357-2.285c6.218,0.534,11.952,11.799,8.714,16.43
c-3.205,4.584-15.722,22.404-16.144,21.858c-1.112-1.442-12.276-17.594-15.572-22.859
C46.622,115.315,52.937,106.087,57.441,105.901z"/>
<path id="petale2_1_" sodipodi:nodetypes="cszzssz" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="#FF0000" stroke="#000000" stroke-width="2" stroke-linecap="round" d="
M98.93,124.047c1.862,3.352,0.071,7.036,0.711,9.007c0.64,1.97,3.079,4.468,2.733,8.576c-0.335,3.976-7.656,11.373-13.033,9.733
c-5.376-1.641-24.353-6.684-23.963-7.254c1.026-1.504,12.938-17.111,16.928-21.874C86.757,116.926,97.067,120.696,98.93,124.047z"
/>
<path id="petale3_1_" sodipodi:nodetypes="cszsssz" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="#FF0000" stroke="#000000" stroke-width="2" stroke-linecap="round" d="
M95.27,168.253c-1.908,2.455-6.309,2.906-7.984,4.124c-1.677,1.218-4.021,3.804-7.038,6.46c-3.018,2.655-14.104-3.538-14.206-9.187
c-0.103-5.593-0.522-26.637,0.14-26.441c1.747,0.512,18.845,6.446,24.605,8.769C97.212,154.567,97.29,165.652,95.27,168.253z"/>
<path id="petale4_1_" sodipodi:nodetypes="cscsssz" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="#FF0000" stroke="#000000" stroke-width="2" stroke-linecap="round" d="
M51.328,179.149c-2.837-1.724-4.883-4.979-6.559-6.195c-1.676-1.219-5.621-1.259-7.296-2.477
c-5.241-2.879-3.29-15.563,2.051-17.404c5.287-1.825,26.444-9.895,26.465-9.203c0.053,1.818,0.447,19.448,0.02,25.646
C65.531,176.427,54.165,180.874,51.328,179.149L51.328,179.149z"/>
<path id="petale5_1_" sodipodi:nodetypes="czcsssz" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="#FF0000" stroke="#000000" stroke-width="2" stroke-linecap="round" d="
M27.913,141.94c0.45-3.92,2.977-6.964,3.616-8.935c0.641-1.97,0.461-6.876,1.101-8.846c1.119-4.019,13.641-7.081,17.044-2.572
c3.369,4.465,16.724,22.38,16.074,22.611c-1.714,0.612-19.098,6.811-25.123,8.317C33.904,154.199,27.457,145.901,27.913,141.94z"/>
</g>
<path id="path2244_1_" sodipodi:nodetypes="czzzzzzzzzz" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="#808000" stroke="#070404" stroke-linecap="round" d="
M37.729,153.174c0.24,0.325,23.5-9.338,23.935-10.79c0.353-1.391-12.781-22.21-13.025-22.029s16.281,18.617,17.612,18.89
c1.392,0.353,17.645-18.955,17.384-19.14c-0.261-0.184-12.71,21.211-12.396,22.485c0.396,1.215,23.266,10.563,23.391,10.22
c0.123-0.343-24.289-5.66-25.447-4.677c-1.015,0.75-3.405,25.636-3.063,25.761c0.363-0.019-2.034-25.007-3.161-25.682
c-1.045-0.735-25.204,4.314-25.066,4.841L37.729,153.174z"/>
<path id="path3105_1_" sodipodi:nodetypes="cszsc" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="none" stroke="#000000" stroke-linecap="round" d="
M53.817,116.436c0.582-2.182,2.534-4.654,4.767-4.52c2.096,0.127,4.163,1.844,6.963,1.885s5.113-2.484,9.165-1.158
c2.405,0.787,2.751,2.342,3.449,4.368"/>
<path id="path1348_1_" sodipodi:nodetypes="cszsc" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="none" stroke="#000000" stroke-linecap="round" d="
M88.646,123.534c2.364,0.357,3.735,2.107,4.705,4.771c0.719,1.974-0.245,3.824,0.581,6.501c0.826,2.676,1.438,2.361,2.625,5.295
c0.732,1.81,0.288,3.12-1.016,5.736"/>
<path id="path1350_1_" sodipodi:nodetypes="cszsc" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="none" stroke="#000000" stroke-linecap="round" d="
M91.902,158.094c0.377,1.74,0.415,4.715-2.24,6.872c-2.101,1.707-4.099,1.113-6.389,2.727c-2.29,1.612-2.943,3.908-5.458,5.122
c-2.424,1.17-4.277,0.52-6.035-0.711"/>
<path id="path1352_1_" sodipodi:nodetypes="cszsc" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="none" stroke="#000000" stroke-linecap="round" d="
M59.291,172.956c-2.047,0.855-4.017,1.211-5.743-0.211c-1.621-1.335-3.48-3.29-5.722-4.971c-2.242-1.679-3.851-1.057-6.45-3.698
c-1.37-1.391-1.396-4.016-0.77-6.065"/>
<path id="path1354_1_" sodipodi:nodetypes="cszsc" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="none" stroke="#000000" stroke-linecap="round" d="
M36.248,146.816c-1.447-1.683-3.377-3.035-2.255-6.834c0.594-2.014,2.229-3.323,3.133-5.976c0.903-2.65,0.161-4.618,1.782-7.237
c1.344-2.172,3.246-2.628,5.391-2.665"/>
<path fill="#FFFF00" stroke="#070404" stroke-linecap="round" d="M74.937,158.578c0,0-6.854-5.188-9.583-5.229
c-2.729-0.043-9.741,4.93-9.741,4.93s2.815-8.121,2.013-10.729c-0.804-2.608-7.699-7.741-7.699-7.741s8.594,0.168,10.827-1.4
c2.232-1.57,4.982-9.716,4.982-9.716s2.496,8.227,4.68,9.864c2.183,1.638,10.777,1.736,10.777,1.736s-7.051,4.916-7.935,7.499
C72.375,150.373,74.937,158.578,74.937,158.578z"/>
<circle fill="#FFFF00" stroke="#070404" stroke-linecap="round" cx="65.374" cy="145.837" r="2.635"/>
<circle fill="#FFFF00" stroke="#070404" stroke-linecap="round" cx="65.374" cy="139.618" r="2.635"/>
<circle fill="#FFFF00" stroke="#070404" stroke-linecap="round" cx="69.461" cy="150.568" r="2.635"/>
<circle fill="#FFFF00" stroke="#070404" stroke-linecap="round" cx="61.427" cy="150.568" r="2.635"/>
<circle fill="#FFFF00" stroke="#070404" stroke-linecap="round" cx="59.969" cy="143.595" r="2.635"/>
<circle fill="#FFFF00" stroke="#070404" stroke-linecap="round" cx="71.058" cy="143.595" r="2.635"/>
<path id="path6793_2_" inkscape:r_cx="true" inkscape:r_cy="true" sodipodi:type="arc" sodipodi:ry="50" sodipodi:rx="50" sodipodi:cy="390" sodipodi:cx="480" fill="none" stroke="#333333" stroke-linecap="round" stroke-linejoin="round" d="
M253.007,143.227c0,2.79-2.262,5.052-5.051,5.052c-2.79,0-5.052-2.262-5.052-5.052c0-2.789,2.262-5.05,5.052-5.05
C250.745,138.177,253.007,140.438,253.007,143.227z"/>
<path id="path7668_2_" inkscape:r_cx="true" inkscape:r_cy="true" sodipodi:type="arc" sodipodi:ry="295" sodipodi:rx="295" sodipodi:cy="390" sodipodi:cx="480" fill="none" stroke="#333333" stroke-linecap="round" stroke-linejoin="round" d="
M277.757,143.227c0,16.459-13.342,29.802-29.801,29.802s-29.802-13.343-29.802-29.802c0-16.458,13.343-29.801,29.802-29.801
S277.757,126.769,277.757,143.227z"/>
<path id="sepales_2_" sodipodi:nodetypes="cccccc" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="#808000" stroke="#070404" stroke-width="2" stroke-linecap="round" d="
M291.899,156.198c-23.639,1.28-36.348,13.986-43.596,32.403c-8.625-19.429-22.605-31.053-44.291-31.447
c21.078-15.539,21.863-33.333,16.222-51.841c17.118,9.84,34.965,12.286,54.317-0.592C271.59,124.797,275.84,142.466,291.899,156.198
"/>
<g id="g13210_2_" inkscape:r_cx="true" inkscape:r_cy="true">
<path id="petale1_2_" sodipodi:nodetypes="cscsssc" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="#FF0000" stroke="#000000" stroke-width="2" stroke-linecap="round" d="
M239.884,105.062c2.072,0,6.43,2.144,8.501,2.144s5.286-2.285,7.357-2.285c6.218,0.534,11.951,11.799,8.714,16.43
c-3.204,4.584-15.722,22.404-16.144,21.858c-1.112-1.442-12.276-17.594-15.572-22.859
C229.065,114.476,235.38,105.248,239.884,105.062z"/>
<path id="petale2_2_" sodipodi:nodetypes="cszzssz" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="#FF0000" stroke="#000000" stroke-width="2" stroke-linecap="round" d="
M281.373,123.208c1.861,3.352,0.07,7.036,0.712,9.007c0.64,1.97,3.078,4.468,2.731,8.576c-0.334,3.976-7.654,11.373-13.031,9.732
c-5.376-1.64-24.354-6.683-23.964-7.253c1.027-1.504,12.938-17.111,16.929-21.874C269.199,116.087,279.51,119.857,281.373,123.208z
"/>
<path id="petale3_2_" sodipodi:nodetypes="cszsssz" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="#FF0000" stroke="#000000" stroke-width="2" stroke-linecap="round" d="
M277.712,167.414c-1.907,2.455-6.31,2.905-7.984,4.124c-1.675,1.218-4.021,3.804-7.037,6.46
c-3.018,2.654-14.104-3.538-14.207-9.187c-0.102-5.593-0.521-26.637,0.142-26.441c1.746,0.512,18.844,6.445,24.604,8.769
C279.655,153.728,279.733,164.813,277.712,167.414z"/>
<path id="petale4_2_" sodipodi:nodetypes="cscsssz" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="#FF0000" stroke="#000000" stroke-width="2" stroke-linecap="round" d="
M233.77,178.31c-2.837-1.724-4.883-4.979-6.559-6.195c-1.676-1.218-5.62-1.259-7.296-2.477c-5.241-2.879-3.29-15.563,2.051-17.405
c5.286-1.824,26.444-9.894,26.465-9.202c0.052,1.818,0.447,19.448,0.02,25.646C247.973,175.588,236.607,180.035,233.77,178.31
L233.77,178.31z"/>
<path id="petale5_2_" sodipodi:nodetypes="czcsssz" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="#FF0000" stroke="#000000" stroke-width="2" stroke-linecap="round" d="
M210.356,141.101c0.45-3.92,2.978-6.964,3.616-8.935c0.64-1.971,0.46-6.876,1.1-8.847c1.118-4.018,13.643-7.08,17.045-2.571
c3.368,4.465,16.725,22.38,16.073,22.61c-1.715,0.613-19.098,6.812-25.123,8.318C216.346,153.36,209.899,145.062,210.356,141.101z"
/>
</g>
<path id="path2244_2_" sodipodi:nodetypes="czzzzzzzzzz" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="#808000" stroke="#070404" stroke-linecap="round" d="
M220.172,152.335c0.24,0.325,23.5-9.338,23.935-10.79c0.354-1.392-12.78-22.21-13.024-22.029s16.28,18.617,17.611,18.89
c1.393,0.353,17.646-18.955,17.385-19.14c-0.263-0.184-12.71,21.211-12.396,22.485c0.396,1.215,23.266,10.563,23.391,10.22
c0.123-0.343-24.288-5.66-25.446-4.677c-1.017,0.75-3.406,25.636-3.063,25.761c0.363-0.019-2.034-25.007-3.161-25.682
c-1.046-0.735-25.204,4.314-25.064,4.841L220.172,152.335z"/>
<path id="path3105_2_" sodipodi:nodetypes="cszsc" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="none" stroke="#000000" stroke-linecap="round" d="
M236.259,115.597c0.582-2.182,2.534-4.655,4.767-4.52c2.098,0.127,4.163,1.844,6.964,1.885s5.113-2.484,9.164-1.158
c2.405,0.787,2.751,2.342,3.449,4.368"/>
<path id="path1348_2_" sodipodi:nodetypes="cszsc" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="none" stroke="#000000" stroke-linecap="round" d="
M271.089,122.695c2.363,0.358,3.733,2.108,4.705,4.771c0.719,1.974-0.246,3.824,0.58,6.501c0.825,2.676,1.438,2.361,2.626,5.295
c0.731,1.81,0.288,3.12-1.018,5.736"/>
<path id="path1350_2_" sodipodi:nodetypes="cszsc" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="none" stroke="#000000" stroke-linecap="round" d="
M274.344,157.255c0.377,1.74,0.414,4.715-2.241,6.872c-2.101,1.707-4.099,1.113-6.388,2.727c-2.29,1.612-2.945,3.908-5.458,5.122
c-2.424,1.17-4.278,0.52-6.034-0.711"/>
<path id="path1352_2_" sodipodi:nodetypes="cszsc" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="none" stroke="#000000" stroke-linecap="round" d="
M241.733,172.117c-2.047,0.855-4.016,1.211-5.741-0.211c-1.621-1.336-3.48-3.29-5.723-4.971c-2.241-1.679-3.85-1.057-6.45-3.699
c-1.368-1.39-1.396-4.015-0.769-6.064"/>
<path id="path1354_2_" sodipodi:nodetypes="cszsc" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="none" stroke="#000000" stroke-linecap="round" d="
M218.69,145.977c-1.446-1.683-3.377-3.036-2.256-6.834c0.595-2.014,2.229-3.324,3.134-5.976c0.904-2.65,0.161-4.618,1.782-7.237
c1.344-2.172,3.246-2.628,5.392-2.665"/>
<path fill="#FFFF00" stroke="#070404" stroke-linecap="round" d="M257.38,157.74c0,0-6.854-5.188-9.584-5.229
c-2.729-0.043-9.74,4.93-9.74,4.93s2.814-8.122,2.012-10.729c-0.802-2.608-7.698-7.741-7.698-7.741s8.594,0.168,10.826-1.401
c2.233-1.569,4.983-9.715,4.983-9.715s2.496,8.227,4.679,9.864c2.184,1.638,10.778,1.736,10.778,1.736s-7.051,4.916-7.935,7.499
C254.817,149.534,257.38,157.74,257.38,157.74z"/>
<circle fill="#FFFF00" stroke="#070404" stroke-linecap="round" cx="247.816" cy="144.998" r="2.635"/>
<circle fill="#FFFF00" stroke="#070404" stroke-linecap="round" cx="247.816" cy="138.779" r="2.635"/>
<circle fill="#FFFF00" stroke="#070404" stroke-linecap="round" cx="251.904" cy="149.729" r="2.634"/>
<circle fill="#FFFF00" stroke="#070404" stroke-linecap="round" cx="243.869" cy="149.729" r="2.634"/>
<circle fill="#FFFF00" stroke="#070404" stroke-linecap="round" cx="242.411" cy="142.757" r="2.635"/>
<circle fill="#FFFF00" stroke="#070404" stroke-linecap="round" cx="253.5" cy="142.757" r="2.634"/>
<path id="path6793_3_" inkscape:r_cx="true" inkscape:r_cy="true" sodipodi:type="arc" sodipodi:ry="50" sodipodi:rx="50" sodipodi:cy="390" sodipodi:cx="480" fill="none" stroke="#333333" stroke-linecap="round" stroke-linejoin="round" d="
M154.836,286.168c0,2.79-2.262,5.052-5.051,5.052c-2.79,0-5.052-2.262-5.052-5.052c0-2.789,2.262-5.05,5.052-5.05
C152.574,281.118,154.836,283.379,154.836,286.168z"/>
<path id="path7668_3_" inkscape:r_cx="true" inkscape:r_cy="true" sodipodi:type="arc" sodipodi:ry="295" sodipodi:rx="295" sodipodi:cy="390" sodipodi:cx="480" fill="none" stroke="#333333" stroke-linecap="round" stroke-linejoin="round" d="
M179.586,286.168c0,16.459-13.342,29.802-29.801,29.802s-29.802-13.343-29.802-29.802c0-16.458,13.343-29.801,29.802-29.801
S179.586,269.71,179.586,286.168z"/>
<path id="sepales_3_" sodipodi:nodetypes="cccccc" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="#808000" stroke="#070404" stroke-width="2" stroke-linecap="round" d="
M193.728,299.138c-23.639,1.281-36.348,13.987-43.596,32.404c-8.625-19.43-22.605-31.053-44.292-31.447
c21.079-15.54,21.864-33.333,16.222-51.841c17.118,9.84,34.965,12.286,54.317-0.592
C173.419,267.737,177.669,285.406,193.728,299.138"/>
<g id="g13210_3_" inkscape:r_cx="true" inkscape:r_cy="true">
<path id="petale1_3_" sodipodi:nodetypes="cscsssc" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="#FF0000" stroke="#000000" stroke-width="2" stroke-linecap="round" d="
M141.713,248.003c2.072,0,6.43,2.143,8.501,2.143s5.286-2.285,7.356-2.285c6.219,0.534,11.952,11.8,8.715,16.431
c-3.204,4.584-15.722,22.403-16.144,21.857c-1.113-1.441-12.277-17.594-15.572-22.858
C130.894,257.417,137.209,248.188,141.713,248.003z"/>
<path id="petale2_3_" sodipodi:nodetypes="cszzssz" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="#FF0000" stroke="#000000" stroke-width="2" stroke-linecap="round" d="
M183.202,266.148c1.861,3.353,0.07,7.036,0.712,9.008c0.64,1.97,3.078,4.468,2.731,8.575c-0.334,3.977-7.654,11.373-13.032,9.733
c-5.376-1.64-24.353-6.683-23.963-7.253c1.027-1.504,12.938-17.112,16.929-21.874C171.028,259.027,181.339,262.798,183.202,266.148
z"/>
<path id="petale3_3_" sodipodi:nodetypes="cszsssz" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="#FF0000" stroke="#000000" stroke-width="2" stroke-linecap="round" d="
M179.541,310.354c-1.907,2.455-6.31,2.906-7.984,4.124s-4.021,3.805-7.037,6.46c-3.018,2.655-14.104-3.538-14.207-9.186
c-0.102-5.593-0.521-26.637,0.142-26.442c1.746,0.513,18.844,6.446,24.604,8.77C181.484,296.669,181.562,307.754,179.541,310.354z"
/>
<path id="petale4_3_" sodipodi:nodetypes="cscsssz" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="#FF0000" stroke="#000000" stroke-width="2" stroke-linecap="round" d="
M135.599,321.251c-2.837-1.725-4.883-4.979-6.559-6.196c-1.677-1.217-5.62-1.258-7.296-2.476
c-5.241-2.879-3.29-15.563,2.051-17.405c5.286-1.825,26.443-9.895,26.465-9.203c0.052,1.819,0.447,19.449,0.019,25.646
C149.802,318.528,138.436,322.975,135.599,321.251L135.599,321.251z"/>
<path id="petale5_3_" sodipodi:nodetypes="czcsssz" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="#FF0000" stroke="#000000" stroke-width="2" stroke-linecap="round" d="
M112.185,284.042c0.451-3.92,2.978-6.964,3.617-8.936c0.64-1.97,0.46-6.876,1.1-8.846c1.119-4.018,13.643-7.081,17.044-2.572
c3.369,4.465,16.726,22.38,16.074,22.611c-1.715,0.613-19.098,6.811-25.123,8.318C118.175,296.301,111.728,288.003,112.185,284.042
z"/>
</g>
<path id="path2244_3_" sodipodi:nodetypes="czzzzzzzzzz" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="#808000" stroke="#070404" stroke-linecap="round" d="
M122.001,295.275c0.24,0.325,23.5-9.338,23.935-10.79c0.354-1.391-12.781-22.21-13.024-22.028
c-0.244,0.18,16.28,18.617,17.611,18.889c1.393,0.354,17.646-18.955,17.385-19.139c-0.263-0.185-12.711,21.211-12.396,22.484
c0.396,1.216,23.266,10.563,23.391,10.221c0.123-0.344-24.289-5.66-25.446-4.678c-1.017,0.75-3.406,25.637-3.063,25.762
c0.363-0.02-2.034-25.008-3.161-25.683c-1.046-0.734-25.204,4.315-25.064,4.841L122.001,295.275z"/>
<path id="path3105_3_" sodipodi:nodetypes="cszsc" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="none" stroke="#000000" stroke-linecap="round" d="
M138.088,258.538c0.582-2.183,2.534-4.655,4.767-4.521c2.098,0.127,4.163,1.844,6.964,1.885s5.113-2.483,9.164-1.157
c2.405,0.787,2.751,2.342,3.449,4.367"/>
<path id="path1348_3_" sodipodi:nodetypes="cszsc" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="none" stroke="#000000" stroke-linecap="round" d="
M172.918,265.635c2.362,0.358,3.733,2.108,4.705,4.771c0.719,1.974-0.246,3.823,0.58,6.501c0.825,2.676,1.438,2.36,2.626,5.295
c0.731,1.809,0.288,3.12-1.018,5.735"/>
<path id="path1350_3_" sodipodi:nodetypes="cszsc" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="none" stroke="#000000" stroke-linecap="round" d="
M176.174,300.195c0.377,1.74,0.414,4.716-2.241,6.872c-2.101,1.707-4.099,1.113-6.388,2.728c-2.29,1.612-2.945,3.908-5.458,5.122
c-2.424,1.17-4.278,0.519-6.034-0.711"/>
<path id="path1352_3_" sodipodi:nodetypes="cszsc" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="none" stroke="#000000" stroke-linecap="round" d="
M143.562,315.057c-2.047,0.856-4.016,1.211-5.742-0.211c-1.62-1.335-3.479-3.29-5.722-4.97c-2.241-1.679-3.85-1.058-6.45-3.699
c-1.369-1.39-1.396-4.015-0.769-6.065"/>
<path id="path1354_3_" sodipodi:nodetypes="cszsc" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:connector-curvature="0" fill="none" stroke="#000000" stroke-linecap="round" d="
M120.519,288.918c-1.447-1.684-3.377-3.036-2.255-6.834c0.594-2.015,2.229-3.324,3.133-5.977c0.904-2.649,0.161-4.617,1.782-7.236
c1.344-2.172,3.246-2.628,5.391-2.665"/>
<path fill="#FFFF00" stroke="#070404" stroke-linecap="round" d="M159.209,300.679c0,0-6.854-5.187-9.584-5.229
c-2.729-0.043-9.74,4.93-9.74,4.93s2.814-8.122,2.012-10.73c-0.802-2.607-7.699-7.74-7.699-7.74s8.595,0.168,10.827-1.401
c2.233-1.57,4.983-9.715,4.983-9.715s2.496,8.226,4.679,9.864c2.184,1.638,10.778,1.735,10.778,1.735s-7.051,4.916-7.936,7.499
C156.646,292.474,159.209,300.679,159.209,300.679z"/>
<circle fill="#FFFF00" stroke="#070404" stroke-linecap="round" cx="149.645" cy="287.938" r="2.635"/>
<circle fill="#FFFF00" stroke="#070404" stroke-linecap="round" cx="149.645" cy="281.719" r="2.635"/>
<circle fill="#FFFF00" stroke="#070404" stroke-linecap="round" cx="153.733" cy="292.67" r="2.634"/>
<circle fill="#FFFF00" stroke="#070404" stroke-linecap="round" cx="145.698" cy="292.67" r="2.634"/>
<circle fill="#FFFF00" stroke="#070404" stroke-linecap="round" cx="144.24" cy="285.697" r="2.635"/>
<circle fill="#FFFF00" stroke="#070404" stroke-linecap="round" cx="155.329" cy="285.697" r="2.634"/>
</svg>

After

Width:  |  Height:  |  Size: 65 KiB

1814
Figs/University_Crest.eps Normal file

File diff suppressed because it is too large Load Diff

BIN
Figs/University_Crest.pdf Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

22
LICENSE Normal file
View File

@ -0,0 +1,22 @@
The MIT License (MIT)
Copyright (c) 2013 Krishna Kumar
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

202
Preamble/preamble.tex Normal file
View File

@ -0,0 +1,202 @@
% ******************************************************************************
% ****************************** Custom Margin *********************************
% Add `custommargin' in the document class options to use this section
% Set {innerside margin / outerside margin / topmargin / bottom margin} and
% other page dimensions
\ifsetCustomMargin
\RequirePackage[left=37mm,right=30mm,top=35mm,bottom=30mm]{geometry}
\setFancyHdr % To apply fancy header after geometry package is loaded
\fi
% Add spaces between paragraphs
%\setlength{\parskip}{0.5em}
% Ragged bottom avoids extra whitespaces between paragraphs
\raggedbottom
% To remove the excess top spacing for enumeration, list and description
%\usepackage{enumitem}
%\setlist[enumerate,itemize,description]{topsep=0em}
% *****************************************************************************
% ******************* Fonts (like different typewriter fonts etc.)*************
% Add `customfont' in the document class option to use this section
\ifsetCustomFont
% Set your custom font here and use `customfont' in options. Leave empty to
% load computer modern font (default LaTeX font).
%\RequirePackage{helvet}
% For use with XeLaTeX
% \setmainfont[
% Path = ./libertine/opentype/,
% Extension = .otf,
% UprightFont = LinLibertine_R,
% BoldFont = LinLibertine_RZ, % Linux Libertine O Regular Semibold
% ItalicFont = LinLibertine_RI,
% BoldItalicFont = LinLibertine_RZI, % Linux Libertine O Regular Semibold Italic
% ]
% {libertine}
% % load font from system font
% \newfontfamily\libertinesystemfont{Linux Libertine O}
\fi
% *****************************************************************************
% **************************** Custom Packages ********************************
% ************************* Algorithms and Pseudocode **************************
%\usepackage{algpseudocode}
% ********************Captions and Hyperreferencing / URL **********************
% Captions: This makes captions of figures use a boldfaced small font.
%\RequirePackage[small,bf]{caption}
\RequirePackage[labelsep=space,tableposition=top]{caption}
\renewcommand{\figurename}{Fig.} %to support older versions of captions.sty
% *************************** Graphics and figures *****************************
%\usepackage{rotating}
%\usepackage{wrapfig}
% Uncomment the following two lines to force Latex to place the figure.
% Use [H] when including graphics. Note 'H' instead of 'h'
%\usepackage{float}
%\restylefloat{figure}
% Subcaption package is also available in the sty folder you can use that by
% uncommenting the following line
% This is for people stuck with older versions of texlive
%\usepackage{sty/caption/subcaption}
\usepackage{subcaption}
% ********************************** Tables ************************************
\usepackage{booktabs} % For professional looking tables
\usepackage{multirow}
%\usepackage{multicol}
%\usepackage{longtable}
%\usepackage{tabularx}
% *********************************** SI Units *********************************
\usepackage{siunitx} % use this package module for SI units
% ******************************* Line Spacing *********************************
% Choose linespacing as appropriate. Default is one-half line spacing as per the
% University guidelines
% \doublespacing
% \onehalfspacing
% \singlespacing
% ************************ Formatting / Footnote *******************************
% Don't break enumeration (etc.) across pages in an ugly manner (default 10000)
%\clubpenalty=500
%\widowpenalty=500
%\usepackage[perpage]{footmisc} %Range of footnote options
% *****************************************************************************
% *************************** Bibliography and References ********************
%\usepackage{cleveref} %Referencing without need to explicitly state fig /table
% Add `custombib' in the document class option to use this section
\ifuseCustomBib
\RequirePackage[square, sort, numbers, authoryear]{natbib} % CustomBib
% If you would like to use biblatex for your reference management, as opposed to the default `natbibpackage` pass the option `custombib` in the document class. Comment out the previous line to make sure you don't load the natbib package. Uncomment the following lines and specify the location of references.bib file
%\RequirePackage[backend=biber, style=numeric-comp, citestyle=numeric, sorting=nty, natbib=true]{biblatex}
%\bibliography{References/references} %Location of references.bib only for biblatex
\fi
% changes the default name `Bibliography` -> `References'
\renewcommand{\bibname}{References}
% ******************************** Roman Pages *********************************
% The romanpages environment set the page numbering to lowercase roman one
% for the contents and figures lists. It also resets
% page-numbering for the remainder of the dissertation (arabic, starting at 1).
\newenvironment{romanpages}{
\setcounter{page}{1}
\renewcommand{\thepage}{\roman{page}}}
{\newpage\renewcommand{\thepage}{\arabic{page}}}
% ******************************************************************************
% ************************* User Defined Commands ******************************
% ******************************************************************************
% *********** To change the name of Table of Contents / LOF and LOT ************
%\renewcommand{\contentsname}{My Table of Contents}
%\renewcommand{\listfigurename}{My List of Figures}
%\renewcommand{\listtablename}{My List of Tables}
% ********************** TOC depth and numbering depth *************************
\setcounter{secnumdepth}{2}
\setcounter{tocdepth}{2}
% ******************************* Nomenclature *********************************
% To change the name of the Nomenclature section, uncomment the following line
%\renewcommand{\nomname}{Symbols}
% ********************************* Appendix ***********************************
% The default value of both \appendixtocname and \appendixpagename is `Appendices'. These names can all be changed via:
%\renewcommand{\appendixtocname}{List of appendices}
%\renewcommand{\appendixname}{Appndx}
% *********************** Configure Draft Mode **********************************
% Uncomment to disable figures in `draftmode'
%\setkeys{Gin}{draft=true} % set draft to false to enable figures in `draft'
% These options are active only during the draft mode
% Default text is "Draft"
%\SetDraftText{DRAFT}
% Default Watermark location is top. Location (top/bottom)
%\SetDraftWMPosition{bottom}
% Draft Version - default is v1.0
%\SetDraftVersion{v1.1}
% Draft Text grayscale value (should be between 0-black and 1-white)
% Default value is 0.75
%\SetDraftGrayScale{0.8}
% ******************************** Todo Notes **********************************
%% Uncomment the following lines to have todonotes.
%\ifsetDraft
% \usepackage[colorinlistoftodos]{todonotes}
% \newcommand{\mynote}[1]{\todo[author=kks32,size=\small,inline,color=green!40]{#1}}
%\else
% \newcommand{\mynote}[1]{}
% \newcommand{\listoftodos}{}
%\fi
% Example todo: \mynote{Hey! I have a note}

534
README.md Normal file
View File

@ -0,0 +1,534 @@
CUED PhD thesis template
========================
[![Join the chat at https://gitter.im/kks32/phd-thesis-template](https://badges.gitter.im/kks32/phd-thesis-template.svg)](https://gitter.im/kks32/phd-thesis-template?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
> A LaTeX / XeLaTeX / LuaLaTeX PhD thesis template for Cambridge University Engineering Department.
[![Build Status](https://api.travis-ci.org/kks32/phd-thesis-template.svg)](https://travis-ci.org/kks32/phd-thesis-template)
[![License MIT](http://img.shields.io/badge/license-MIT-brightgreen.svg)](license.md)
[![Version](http://img.shields.io/badge/version-2.0-brightgreen.svg)](https://github.com/kks32/phd-thesis-template/releases/latest)
## Author(s)
* Krishna Kumar
--------------------------------------------------------------------------------
## Features
* Conforms to the Student Registry PhD dissertation guidelines and CUED PhD guidelines
* Supports LaTeX, XeLaTeX and LuaLaTeX
* Adaptive Title Page: Title page adapts to title length
* Title page with both College and University crests.
* Print / On-line version: Different layout and hyper-referencing styles
* Pre-defined and custom fonts (Times / Fourier / Latin Modern) with math support
* Supports system fonts (XeLaTeX)
* Pre-defined and custom bibliography style support (authoryear / numbered / custom)
* Custom page styles: 3 Different Header / Footer styles
* Pre-defined and custom margin size
* A separate abstract with thesis title and author name, along with the titlepage can be generated by passing the argument `abstract` to the document class.
* Option to generate only specific chapters and references without the frontmatter and title page. Useful for review and corrections.
* Draft mode: Draft water mark, timestamp, version numbering and line numbering
* Add supervisor and/or advisor to your PhD thesis or MPhil report
* A LyX Template is now available at [https://github.com/kks32/PhDThesisLyX/](https://github.com/kks32/PhDThesisLyX/)
--------------------------------------------------------------------------------
## Building your thesis - XeLaTeX
### Using latexmk (Unix/Linux/Windows)
This template supports `XeLaTeX` compilation chain. To generate PDF run
latexmk -xelatex thesis.tex
makeindex thesis.nlo -s nomencl.ist -o thesis.nls
latexmk -xelatex -g thesis.tex
## Building your thesis - LuaLaTeX
### Using latexmk (Unix/Linux/Windows)
This template supports `XeLaTeX` compilation chain. To generate PDF run
latexmk -pdflatex=lualatex -pdf thesis.tex
## Building your thesis - LaTeX / PDFLaTeX
### Using latexmk (Unix/Linux/Windows)
This template supports `latexmk`. To generate DVI, PS and PDF run
latexmk -dvi -ps -pdf thesis.tex
### Using the make file (Unix/Linux)
The template supports PDF, DVI and PS formats. All three formats can be generated
with the provided `Makefile`.
To build the `PDF` version of your thesis, run:
make
This build procedure uses `pdflatex` and will produce `thesis.pdf`.
To produce `DVI` and `PS` versions of your document, you should run:
make BUILD_STRATEGY=latex
This will use the `latex` command to build the document and will produce
`thesis.dvi`, `thesis.ps` and `thesis.pdf` documents. You will need psutils installed
Clean unwanted files
To clean unwanted clutter (all LaTeX auto-generated files), run:
make clean
__Note__: the `Makefile` itself is take from and maintained at
[here](http://code.google.com/p/latex-makefile/).
### Shell script for PDFLaTeX (Unix/Linux)
Usage: `sh ./compile-thesis.sh [OPTIONS] [filename]`
[option] compile: Compiles the PhD Thesis
[option] clean: removes temporary files - no filename required
### Using the batch file on Windows OS (PDFLaTeX)
* Open command prompt and navigate to the directory with the tex file. Run:
`compile-thesis-windows.bat`.
* Alternatively, double click on `compile-thesis-windows.bat`
-------------------------------------------------------------------------------
## Usage details
Thesis information such as title, author, year, degree, etc., and other meta-data can be modified in `thesis-info.tex`
### Class options
The class file, `PhDThesisPSnPDF`, is based on the standard `book` class
It supports the following custom options in the documentclass in thesis.tex:
(Usage `\documentclass[a4paper,11pt,print]{Classes/PhDThesisPSnPDF}`)
* `a4paper` (default as per the University guidelines) or `a5paper`: Paper size
* `11pt` or `12pt`: The University of Cambridge guidelines recommend using a minimum font size of 11pt (12pt is preferred) and 10pt for footnotes. This template also supports `10pt`.
* `oneside` or `twoside` (default): This is especially useful for printing double side (twoside) or single side.
* `print`: Supports Print and Online Version with different page margins and hyperlink styles.
Use `print` in the options to activate Print Version with appropriate margins and page layout and view styles.
Leaving the options field blank will activate Online version.
* `custommargin`: You can alter the margin dimension for both print and online version by using the keyword `custommargin` in the options. Then you can define the dimensions of the margin in the `preamble.tex` file:
\ifsetCustomMargin
\RequirePackage[left=37mm,right=30mm,top=35mm,bottom=30mm]{geometry}
\setFancyHdr
\fi
`\setFancyHdr` should be called when using custom margins for proper header/footer dimensions
`\ifsetMargin` is deprecated, please use `\ifsetCustomMargin` instead.
* `index`: Including this option builds the index, which is placed at the end of the thesis.
Instructions on how to use the index can be found [here](http://en.wikibooks.org/wiki/LaTeX/Indexing#Using_makeidx).
_Note_: the package `makeidx` is used to create the index.
* `abstract`: This option enables only the thesis title page and the abstract with title and author to be printed.
* `chapter`: This option enables only the specified chapter and it's references. Useful for review and corrections.
* `draft`: The default draft mode supports some special features such as line numbers, images, and water mark with
timestamp and custom text. Position of the text can be modified in `preamble.tex`.
* `draftclassic`: This mode is similar to the default draft mode in the book class. Images are not loaded.
* `lineno`: Enables pagewise line numbering on the outer edge. You can switch-off line numbering by specifying `nolineno` in the options.
* `flushleft`: The University recommends using ragged right or flush left alignment for texts. The reason behind this is left justifying a text may exclude a certain readers. Dyslexic people find it hard to read justified text. You can enable `raggedright` option in the document class by passing `flushleft` argument. Default is flush left and right.
### Title page
The front page (title page) resizes to fit your title length. You can modify the options in `thesis-info.tex`.
* `\subtitle` (optional): Adds a subtitle to your thesis.
* `\college` (optional): This option adds the name of your college on the bottom left.
If `\college` is defined, the bottom of the title page will look like this:
King's College 2014
If `\college` is undefined or blank, the `degreedate` will be centered.
2014
The template offers support to having both the college and university crests or just one of the crests.
* `\collegeshield` (optional): Includes college crest in addition to the university crest. This reformats the front page layout.
### Abstract separate
* A separate abstract with the title of the PhD and the candidate name has to be submitted to the Student Registry. This can be generated using `abstract` option in the document class. Ignore subsequent warnings about skipping sections (if any).
* To generate the separate abstract and the title page, make sure the following commands are in the preamble section of `thesis.tex` file:
\ifdefineAbstract
\includeonly{Abstract/abstract}
\fi
### Chapter mode
* The chapter mode allows user to only print specific chapters along with references. By default, it excludes everything else in the front matter and appendices. This can done by using `chapter` option in the document class in `thesis.tex`. Ignore subsequent warnings about skipping sections (if any).
* To generate the separate abstract and the title page, make sure the following commands are in the preamble section of `thesis.tex` file:
\ifdefineChapter
\includeonly{Chapter3/chapter3}
\fi
### Draft
`draft` adds a watermark `draft` text with timestamp and version number at the top or
the bottom of the page. Pagewise line numbering is added on every page. `draft` settings can be tweaked in the `preamble.tex`.
* Use `draftclassic` in the document class options to use the default book class draft mode.
* To add figures in draft mode (default enabled), in the preamble set `\setkeys{Gin}{draft=false}`. `draft=true` disables figures
* To change the watermark text
\SetDraftText{DRAFT}
* To change the position of the watermark text. Default watermark position is top. The location can be changed to (top / bottom)
\SetDraftWMPosition{bottom}
* To change the draft version. Default draft version is v1.0.
\SetDraftVersion{v1.1}
* Watermark grayscale value can be modified. Text grayscale value (should be between 0-black and 1-white). Default value is 0.75
\SetDraftGrayScale{0.8}
### Choosing the fonts
`PhDThesisPSnPDF` currently supports three fonts `Times`, `Fourier` and `Latin Modern (default)`.
* `times`: (The University of Cambridge guidelines recommend using Times). Specifying times option in the document class will use `mathptpx` or `Times` font with Math Support.
* `fourier`: fourier font with math support
* `default (empty)`: When no font is specified, `Latin Modern` is used as the default font with Math Support.
* `customfont`: Any custom font can be set in preamble by using `customfont` option in the document class. Then the custom font can be loaded in preamble.tex in the line:
\ifsetCustomFont
\RequirePackage{Your_Custom_Font}
\fi
### Choosing the bibliography style
`PhDThesisPSnPDF` currently supports two styles `authoryear` and `numbered (default)`. Citation style has to be set. You can also specify `custombib` style and customise the bibliography.
* `authoryear`: For author-year citation eg., Krishna (2013)
* `numbered`: (Default Option) For numbered and sorted citation e.g., [1,5,2]
* `custombib`: Define your own bibliography style in the `preamble.tex` file.
\RequirePackage[square, sort, numbers, authoryear]{natbib}
* (Overview of Bibtex-Styles with preview)[http://nodonn.tipido.net/bibstyle.php?]
* If you would like to use biblatex instead of natbib. Pass the option `custombib` in the documentclass. In the `preamble.tex` file, edit the custombib section. Make sure you don't load the natbib package and you can specify the layout of your references in `thesis.tex` in the reference section. If you are using `biber` as backend, run `pdflatex thesis.tex >> biber thesis >> pdflatex thesis.tex >> biber thesis >> pdflatex thesis.tex`. If you are using the default natbib package, don't worry about this.
### Choosing the page style
`PhDThesisPSnPDF` defines 3 different page styles (header and footer). The following definition is for `twoside` layout.
* `default (leave empty)`: For Page Numbers in Header (Left Even, Right Odd) and Chapter Name in Header (Right Even) and Section #. Section Name (Left Odd). Blank Footer.
Header (Even) : 4 Introduction
Header (Odd) : 1.2 Section Name 5
Footer : Empty
* `PageStyleI`: For Page Numbers in Header (Left Even, Right Odd) and Chapter Name next to the Page Number on Even Side (Left Even). Section Number and Section Name and Page Number in Header on Odd Side (Right Odd). Footer is empty. Layout:
Header (Even) : 4 | Introduction
Header (Odd) : 1.2 Section Name | 5
Footer : Empty
* `PageStyleII`: Chapter Name on Even Side (Left Even) in Header. Section Number and Section Name in Header on Odd Side (Right Odd). Page numbering in footer. Layout:
Header (Even) : Introduction
Header (Odd) : 1.2 Section Name
Footer[centered]: 3
### Changing the visual style of chapter headings
The visual style of chapter headings can be modified using the `titlesec` package. Edit the following lines in the `preamble.tex` file.
\RequirePackage{titlesec}
\newcommand{\PreContentTitleFormat}{\titleformat{\chapter}[display]{\scshape\Large}
{\Large\filleft{\chaptertitlename} \Huge\thechapter}
{1ex}{}
[\vspace{1ex}\titlerule]}
\newcommand{\ContentTitleFormat}{\titleformat{\chapter}[display]{\scshape\huge}
{\Large\filleft{\chaptertitlename} \Huge\thechapter}{1ex}
{\titlerule\vspace{1ex}\filright}
[\vspace{1ex}\titlerule]}
\newcommand{\PostContentTitleFormat}{\PreContentTitleFormat}
\PreContentTitleFormat
### Custom settings
* The depth for the table of contents can be set using:
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
A depth of [3] indicates to a level of `\subsubsection` or #.#.#.#. Default set as 2.
* To hide sections from appearing in TOC use: `\tochide\section{Section name}` in your TeX files
* Define custom caption style for figure and table caption in `preamble.tex` using:
\RequirePackage[small,bf,figurename=Fig.,labelsep=space,tableposition=top]{caption}
* Uncomment the following lines in `preamble.tex` to force a figure to be displayed in a particular location. Use `H` when including graphics. Note `H` instead of `h`.
\usepackage{float}
\restylefloat{figure}
* Bibliography with Author-Year Citation in `preamble.tex`:
\RequirePackage[round, sort, numbers, authoryear]{natbib}
* Line spacing for the entire document can be specified in `preamble.tex`. Uncomment the line spacing you prefer. e.g.,
\onehalfspacing
### Nomenclature definition
* To use nomenclature in your chapters:
\nomenclature[g-pi]{$\pi$}{ $\simeq 3.14\ldots$}
The sort keys have prefix. In this case a prefix of `g` is used to denote Greek Symbols, followed by `-pi` or `-sort_key`. Use a `-` to separate sort key from the prefixes. The standard prefixes defined in this class are:
* `A` or `a`: Roman Symbols
* `G` or `g`: Greek Symbols
* `Z` or `z`: Acronyms/Abbreviations
* `R` or `r`: Superscripts
* `S` or `s`: Subscripts
* `X` or `x`: Other Symbols
* You can change the Title of Nomenclature to Notations or Symbols in the `preamble.tex` using:
\renewcommand\nomname{Symbols}
TexStudio's default compile option doesn't include `nomenclature`, to compile your document with the nomenclature, do the following:
Options >> Configure TexStudio >> Build >> User Commands >> add user command
In `add user command` type `makenomeclature:makenomenclature` on the left pane and `makeindex %.nlo -s nomencl.ist -o %.nls` on the execution side. Now you can run the user defined command `makenomenclature` from `Tools >> User >> makenomenclature`.
Alternatively, you can use the `compile-thesis-windows.bat` file or run `make` on Unix / Linux / MacOS
## To-do Notes
To include custom to-do notes in your pdf document use `\mynote{Hey! I have a note}` anywhere in your chapters. To activate this feature, you need to uncomment the following lines in `preamble.tex`. To-do notes will be available only in the `draft` or `draftclassic` and not in the final thesis.
\ifsetDraft
\usepackage[colorinlistoftodos]{todonotes}
\newcommand{\mynote}[1]
{\todo[author=kks32,size=\small,inline,color=green!40]{#1}}
\else
\newcommand{\mynote}[1]{}
\newcommand{\listoftodos}{}
\fi
## General guidelines
[Why is it important to follow good practices and not get killed by a Velociraptor ;)](http://www.xkcd.com/292/)
* To restrict the length of the figure caption in List of figures use a \[short-title\] and {longtitle} for the caption or the section:
`\caption[Caption that you want to appear in TOC]{Actual caption of the figure}`
`\section[short]{title}`
* To exclude sections from being numbered and disable it from appearing in the Table of Contents use \section*{Section_Name} or \chapter*{Chapter_Name}
* To only exclude it from being listed in the Table of Contents encapsulate the section command inside the `\tochide` command. `\tochide{\section{Section_Name}}` the section will not appear in the Table of Contents, but the section will be numbered.
* When including figures in your tex file, it's a good practice to size your picture depending on the page size, instead of using absolute values. In the following example `0.75\textwidth` refers to picture width being set to 75% of the text width.
\includegraphics[width=0.75\textwidth]{minion}
* Use a `-` to separate sort key from the prefixes, eg., `g-pi` denotes the Greek symbol `pi`.
-------------------------------------------------------------------------------
## Frequently Asked Questions
#### _Q1_: Where can I find the thesis formatting guidelines this class is based on?
[https://www.admin.cam.ac.uk/students/studentregistry/exams/submission/phd/format.html](https://www.admin.cam.ac.uk/students/studentregistry/exams/submission/phd/format.html)
#### _Q2_: Where can I find newer versions of the University of Cambridge crest/logos?
The university updates its crest every now and then. You can find up-to-date
logos on [this page](http://www.cam.ac.uk/brand-resources/about-the-logo/logo-downloads)
(subject to change without notice).
Download and exchange the new logos with `University_Crest.eps` and/or `University_Crest.pdf`. I'll try to keep the crest up to date.
#### _Q3_: Where can I find the guidelines to submit my thesis and requirements?
[Preparing to submit:](https://www.admin.cam.ac.uk/students/studentregistry/exams/submission/phd/preparing.html)
[Formatting styles:](https://www.admin.cam.ac.uk/students/studentregistry/exams/submission/phd/format.html)
[Submitting the dissertation](https://www.admin.cam.ac.uk/students/studentregistry/exams/submission/phd/submitting.html)
#### _Q4_: How can I count the number of words in my thesis?
You can run the following command (Linux/Unix):
`ps2ascii thesis.pdf | wc -w` (eg., result 2713 words)
or
`pdftotext thesis.pdf | wc thesis.txt -w` (eg., result 2690 words)
or
`texcount -inc *.tex` (eg., result 2341 words)
#### _Q5_: How do I use a system font (libertine)?
To use a system font (open type) font with XeLaTeX, please select `customfont` option in the `documentclass` in `thesis.tex`. Add the path and font name to the custom font definition in `preamble.tex`
\ifsetCustomFont
\setmainfont[
Path = ./libertine/opentype/,
Extension = .otf,
UprightFont = LinLibertine_R,
BoldFont = LinLibertine_RZ, % Regular Semibold
ItalicFont = LinLibertine_RI,
BoldItalicFont = LinLibertine_RZI, % Regular Semibold Italic
] {libertine}
\newfontfamily\libertinesystemfont{Linux Libertine O}
\fi
Please use XeLaTeX tool chain with LaTeXmk.
#### _Q6_: I found a bug in the template. Where do I report bugs?
You can report issues at
[our GitHub repository](https://github.com/kks32/phd-thesis-template).
You can also mail
[the developer](https://github.com/kks32/phd-thesis-template/graphs/contributors) directly or contact [Tim Love, CUED](mailto:tpl@eng.cam.ac.uk)
--------------------------------------------------------------------------------
## Troubleshooting warnings
#### _W1_: I get the LaTeX Warning: You have requested document class `Classes/PhDThesisPSnPDF`, but the document class provides `PhDThesisPSnPDF`, should I be concerned?
No! Do nothing, or if you don't want any warning messages change the line near the top of the class file to \ProvidesClass{Classes/PhDthesisPSnPDF} if you're not going to install the class file in a more standard location. You can install it in a standard location like `/usr/share/texmf/tex/latex/` and run `texhash` to reconfigure.
#### _W2_:I get the package Fancyhdr Warning: \fancyhead's `E` option without twoside option is useless on input line \# or \#. What should I do?
Nothing. The warning is because the twoside option is also defined in the class, although only the oneside option is currently used.
#### _W3_: I get the Class PhDThesisPSnPDF Warning: Unknown or non-standard option 'something'. Will see if I can load it from the book class. If you get a warning unused global option(s): `something` then the option is not supported! on input line \#.
You are either trying to use a undefined option or a non-standard option which is in the book class but not defined in the PhD Thesis Template. If it can be used it will be loaded and you will get no further warnings. If not, the option you chose is unavailable.
#### _W4_: I get LaTeX Warning: Unused global option(s):[something].
You are trying to load an option that is not supported in the PhDThesisClass and the Book Class. Are you sure you are using the right option? Check your spelling!
#### _W5_: I get I'm skipping whatever remains of this command line \# of file thesis.aux \@input{Chapter1/chapter1.aux}
If you are generating a separate abstract for your thesis submission, ignore this warning and good luck with your submission. If you are compiling your thesis and see this warning, please remove the option `abstract` from the document class.
#### _W6_: I get blank pages between chapters
This is normal for a book class. Usually, a new chapter in a book always starts on the right hand side, which is why you see a blank page. You can remove the extra blank page by passing `openany` option to the documentclass. This works for double sided printing. However, if you are printing on a single side, please pass `oneside` option to the document class.
#### _W7_: My references aren't listed in the ordered in which I cite them
This is controlled by the bibliography style. Please use `\bibliographystyle{unsrt}` in `thesis.tex` instead of `apalike`. This applicable only for numerically sorted references.
--------------------------------------------------------------------------------
## Known issue(s) / Bugs / Feature requests
* Hyperlinks doesn't seem to be working in Post-Script file, however works on DVI and PDF (which is produced from the PS file), possibly viewer limitation than a code bug.
* On older versions of dvips (version 5.97 or below), if your page margins do not appear properly in your PDF, when compiling through DVI >> PS >> PDF, please ensure that you have set a4paper or a5paper in the document class. If you are still having issues you can run:
ps2pdf -sPAPERSIZE=a4 thesis.ps thesis.pdf
This issue occurs only when the papersize is not specified in the document class and you are compiling DVI >> PS >> PDF using an older version (5.97 or below) of dvips.
* Open issues can be tracked at [https://github.com/kks32/phd-thesis-template/issues](https://github.com/kks32/phd-thesis-template/issues). If you would like a new feature to be added to the template, please create an issue and label it as an enhancement.
* Please [fork me on github](https://github.com/kks32/phd-thesis-template/fork) and create a pull request, if you would like to contribute to the repo.
## ChangeLog
The history of releases can be viewed at [ChangeLog](ChangeLog.md)
--------------------------------------------------------------------------------
## Inspirations/Based on
* Cambridge Computer Laboratory PhD Thesis Template [https://github.com/cambridge/thesis](https://github.com/cambridge/thesis)
* CUED Version 1.1 Template by H. Banderi
## Acknowlegments
* Alex Ridge - original idea, code concepts & testing
* Steven Kaneti - code concepts
* Tina Schwamb - testing and bug reports
* John Plaice - Bug fixes
# thesis

390
References/references.bib Normal file
View File

@ -0,0 +1,390 @@
% ------------------------------------------------------------------------
% SAMPLE BIBLIOGRAPHY FILE
% ------------------------------------------------------------------------
@misc{cve-2008-1368,
key = {CVE-2008-1368},
title = {Publication quality tables in \LaTeX*},
howpublished = {},
institution = {NIST},
day = 17,
month = {March},
year = 2008,
note = {[online] \url{http://nvd.nist.gov/nvd.cfm?cvename=CVE-2008-1368}},
url = {http://nvd.nist.gov/nvd.cfm?cvename=CVE-2008-1368}
}
@MISC{prime-number-theorem,
author = "Charles Louis Xavier Joseph de la Vall{\'e}e Poussin",
note = "A strong form of the prime number theorem, 19th century" }
% ------------------------------------------------------------------------
@BOOK{texbook,
author = "Donald E. Knuth",
title= "The {{\TeX}book}",
publisher = "Addison-Wesley",
year = 1984 }
@BOOK{latex,
author = "Leslie Lamport",
title = "{\LaTeX:} {A} Document Preparation System",
publisher = "Addison-Wesley",
year = 1986 }
% ------------------------------------------------------------------------
@article{Ancey1996,
author = {Ancey, Christophe and Coussot, Philippe and Evesque, Pierre},
journal = {Mechanics of Cohesive-frictional Materials},
number = {4},
pages = {385--403},
title = {Examination of the possibility of a fluid-mechanics treatment of dense granular flows},
url = {http://doi.wiley.com/10.1002/(SICI)1099-1484(199610)1:4<385::AID-CFM20>3.0.CO;2-0},
volume = {1},
year = {1996}
}
@BOOK{RR73,
author={H. Radjavi and P. Rosenthal},
title={Invariant {Subspaces}},
publisher={Springer-Verlag},
address={New York},
year={1973},
}
@BOOK{Aup91,
author={B. Aupetit},
title={A {Primer} on {Spectral} {Theory}},
publisher={Springer-Verlag},
address={New York},
year={1991},
}
@BOOK{Dou72,
author={R. G. Douglas},
title={Banach {Algebra} {Techniques} in {Operator} {Theory}},
publisher={Academic Press},
address={New York},
year={1972},
}
@BOOK{Hal82,
author={P. R. Halmos},
title={A {Hilbert} {Space} {Problem} {Book}},
edition={Second},
publisher={Springer-Verlag},
address={New York},
year={1982},
}
@BOOK{Rud73,
author={W. Rudin},
title={Functional {Analysis}},
publisher={McGraw-Hill},
address={New York},
year={1973},
}
@BOOK{Con90,
author={J. B. Conway},
title={A {Course} in {Functional} {Analysis}},
edition={Second},
publisher={Springer-Verlag},
address={New York},
year={1990},
}
@BOOK{Con78,
author={J. B. Conway},
title={Functions of {One} {Complex} {Variable}},
publisher={Springer-Verlag},
address={New York},
year={1978},
}
@BOOK{KR83,
author={R. V. Kadison and J. R. Ringrose},
title={Fundamentals of the {Theory} of {Operator} {Algebras},
{Part} {I}},
publisher={Academic Press},
address={New York},
year={1983},
}
@BOOK{KR86,
author={R. V. Kadison and J. R. Ringrose},
title={Fundamentals of the {Theory} of {Operator} {Algebras},
{Part} {II}},
publisher={Academic Press},
address={New York},
year={1986},
}
@INBOOK{SFPT,
author={N. Dunford and J. T. Schwartz},
title={Linear {Operators},
{Part} {I}: {General} {Theory}},
pages={456},
publisher={Interscience},
address={New York},
year={1957},
}
@BOOK{DS57,
author={N. Dunford and J. T. Schwartz},
title={Linear {Operators},
{Part} {I}: {General} {Theory}},
publisher={Interscience},
address={New York},
year={1957},
}
@BOOK{Gan59,
author={F. R. Gantmacher},
title={Applications of the {Theory} of {Matrices}},
publisher={Interscience},
address={New York},
year={1959},
}
@BOOK{Pau86,
author={Vern I. Paulsen},
title={Completely bounded maps and dilations},
series={Pitman Research Notes in Mathematics Series},
volume={146},
publisher={Longman Scientific \& Technical},
address={Harlow UK},
year={1986},
}
@BOOK{Dav88,
author={Kenneth R. Davidson},
title={Nest algebras},
series={Pitman Research Notes in Mathematics Series},
volume={191},
publisher={Longman Scientific \& Technical},
address={Harlow UK},
year={1988},
}
@BOOK{Spi65,
author={Michael Spivak},
title={Calculus on {Manifolds}},
publisher={The Benjamin/Cummings Publishing Company},
address={New York},
year={1965},
}
@BOOK{Dev68,
author={Allen Devinaz},
title={Advanced {Calculus}},
publisher={Holt, Rinehart and Winston},
address={New York},
year={1968},
}
@BOOK{Gam90,
editor={R. V. Gamkerlidze},
title={Analysis {I}{I}: {Convex} {Analysis} and
{Approximation} {Theory}},
series={Encyclopaedia of Mathematical Sciences},
volume={14},
publisher={Springer-Verlag},
address={New York},
year={1990},
}
@BOOK{Hen93,
author={Peter Henderson},
title={Object-oriented specification and design with {C}$++$},
publisher={McGraw-Hill},
address={London},
year={1993},
}
% ------------------------------------------------------------------------
@ARTICLE{Rea85,
author={C. J. Read},
title={A solution to the invariant subspace problem on the space $l_1$},
journal={Bull. London Math. Soc.},
volume={17},
year={1985},
pages={305-317},
}
@ARTICLE{Enf87,
author={P. Enflo},
title={On the invariant subspaces problem for {Banach} spaces},
journal={Acta. Math.},
note={Seminare Maurey-Schwartz (1975-1976)},
volume={158},
year={1987},
pages={213-313},
}
@ARTICLE{Dau75,
author={J. Daughtry},
title={An invariant subspace theorem},
journal={Proc. Amer. Math. Soc.},
volume={49},
year={1975},
pages={267-268},
}
@ARTICLE{KPS75,
author={H. W. Kim and C. Pearcy and A. L. Shields},
title={Rank-One Commutators and Hyperinvariant Subspaces},
journal={Michigan Math. J.},
volume={22},
number={3},
year={1975},
pages={193-194},
}
% --------------------------------------------------------------------------
@ARTICLE{Rad87,
author={H. Radjavi},
title={The {Engel}-{Jacobson} {Theorem} {Revisited}},
journal={J. Alg.},
volume={111},
year={1987},
pages={427-430},
}
@ARTICLE{MOR91,
author={B. Mathes and M. Omladi\v{c} and H. Radjavi},
title={Linear {Spaces} of {Nilpotent} {Operators}},
journal={Linear Algebra Appl.},
volume={149},
year={1991},
pages={215-225},
}
@ARTICLE{Lom73,
author={V. I. Lomonosov},
title={Invariant subspaces for operators commuting with compact
operators},
journal={Functional Anal. Appl.},
volume=7,
year=1973,
pages="213-214",
}
@ARTICLE{Lom91,
author={V. I. Lomonosov},
title={An extension of {Burnside}'s theorem to infinite
dimensional spaces},
journal={Israel J. Math},
volume=75,
year=1991,
pages="329-339",
}
@ARTICLE{Lom92,
author={V. I. Lomonosov},
title={On {Real} {Invariant} {Subspaces} of {Bounded} {Operators} with
{Compact} {Imaginary} {Part}},
journal={Proc. Amer. Math. Soc.},
volume=115,
number=3,
month=jul,
year=1992,
pages="775-777",
}
@ARTICLE{dB59,
author={L. de Branges},
title={The {Stone}-{Weierstrass} {Theorem}},
journal={Proc. Amer. Math. Soc.},
volume=10,
year=1959,
pages="822-824",
}
@ARTICLE{dB93,
author={L. de Branges},
title={A construction of invariant subspaces},
journal={Math. Nachr.},
volume=163,
year=1993,
pages="163-175",
}
@ARTICLE{AAB95,
author={Y. A. Abramovich and C. D. Aliprantis and O. Burkinshaw},
title={Another Characterization of the Invariant Subspace Problem},
journal={Operator Theory in Function Spaces and Banach Lattices.
{\em The A.C.\,Zaanen Anniversary Volume},
Operator Theory: Advances and Applications},
volume={75},
year={1995},
pages={15-31},
note={Birkh\"auser Verlag},
}
@ARTICLE{LM65,
author={Ju. I. Ljubi\v{c} and V. I. Macaev},
title={On Operators with a Separable Spectrum},
journal={Amer. Math. Soc. Transl. (2)},
volume={47},
year={1965},
pages={89-129},
}
% ------------------------------------------------------------------------
@MASTERSTHESIS{Sim90,
author={A. Simoni\v{c}},
title={Grupe Operatorjev s Pozitivnim Spektrom},
school={Univerza v Ljubljani, FNT, Oddelek za Matematiko},
year={1990},
}
@UNPUBLISHED{Sim91,
author={A. Simoni\v{c}},
title={Notes on {Subharmonic} {Functions}},
note={Lecture Notes, Dalhousie University,
Department of Mathematics, Statistics, \& Computing Science},
year={1991},
}
@ARTICLE{Sim92,
author={A. Simoni\v{c}},
title={Matrix {Groups} with {Positive} {Spectra}},
journal={Linear Algebra Appl.},
volume={173},
year={1992},
pages={57-76},
}
@PHDTHESIS{Sim94,
author={A. Simoni\v{c}},
title={An {Extension} of {Lomonosov's} {Techniques} to {Non}-{Compact}
{Operators}},
school={Dalhousie University,
Department of Mathematics, Statistics, \& Computing Science},
year={1994},
}
@ARTICLE{Sim96a,
author={A. Simoni\v{c}},
title={A {Construction} of {Lomonosov} {Functions} and
{Applications} to the {Invariant} {Subspace} {Problem}},
journal={Pacific J. Math.},
volume={175},
pages={257-270},
year={1996},
}
@ARTICLE{Sim96b,
author={A. Simoni\v{c}},
title={An extension of {Lomonosov's} {Techniques} to non-compact
{Operators}},
journal={Trans. Amer. Math. Soc.},
volume={348},
pages={975-995},
year={1996},
}
% ------------------------------------------------------------------------

8
Variables.ini Normal file
View File

@ -0,0 +1,8 @@
# If you list files or wildcards here, they will *not* be cleaned - default is
# to allow everything to be cleaned.
neverclean := *.pdf *.ps *.dvi
# If you list files here, they will be treated as _include_ files
includes.fig := Figs/University_Crest.pdf Figs/University_Crest.eps
onlysources.tex := thesis.tex
LATEX_COLOR_WARNING := 'bold red uline'

View File

@ -0,0 +1,47 @@
SET FILENAME=thesis
DEL "%FILENAME%.aux"
DEL "%FILENAME%.bbl"
DEL "%FILENAME%.blg"
DEL "%FILENAME%.d"
DEL "%FILENAME%.fls"
DEL "%FILENAME%.ild"
DEL "%FILENAME%.ind"
DEL "%FILENAME%.toc"
DEL "%FILENAME%.lot"
DEL "%FILENAME%.lof"
DEL "%FILENAME%.idx"
DEL "%FILENAME%.out"
DEL "%FILENAME%.nlo"
DEL "%FILENAME%.nls"
DEL "%FILENAME%.pdf"
DEL "%FILENAME%.ps"
DEL "%FILENAME%.dvi"
pdflatex -interaction=nonstopmode "%FILENAME%.tex"
bibtex "%FILENAME%.aux"
makeindex "%FILENAME%.aux"
makeindex "%FILENAME%.idx"
makeindex "%FILENAME%.nlo" -s nomencl.ist -o "%FILENAME%".nls
pdflatex -interaction=nonstopmode "%FILENAME%.tex"
makeindex "%FILENAME%.nlo" -s nomencl.ist -o "%FILENAME%".nls
pdflatex -interaction=nonstopmode "%FILENAME%.tex"
DEL "%FILENAME%.aux"
DEL "%FILENAME%.bbl"
DEL "%FILENAME%.blg"
DEL "%FILENAME%.d"
DEL "%FILENAME%.fls"
DEL "%FILENAME%.ild"
DEL "%FILENAME%.ind"
DEL "%FILENAME%.toc"
DEL "%FILENAME%.lot"
DEL "%FILENAME%.lof"
DEL "%FILENAME%.idx"
DEL "%FILENAME%.out"
DEL "%FILENAME%.nlo"
DEL "%FILENAME%.nls"
"%FILENAME%.pdf"

87
compile-thesis.sh Normal file
View File

@ -0,0 +1,87 @@
#!/bin/bash
# A script to compile the PhD Thesis - Krishna Kumar
# Distributed under GPLv2.0 License
compile="compile";
clean="clean";
if test -z "$2"
then
if [ $1 = $clean ]; then
echo "Cleaning please wait ..."
rm -f *~
rm -rf *.aux
rm -rf *.bbl
rm -rf *.blg
rm -rf *.d
rm -rf *.fls
rm -rf *.ilg
rm -rf *.ind
rm -rf *.toc*
rm -rf *.lot*
rm -rf *.lof*
rm -rf *.log
rm -rf *.idx
rm -rf *.out*
rm -rf *.nlo
rm -rf *.nls
rm -rf $filename.pdf
rm -rf $filename.ps
rm -rf $filename.dvi
rm -rf *#*
echo "Cleaning complete!"
exit
else
echo "Shell script for compiling the PhD Thesis"
echo "Usage: sh ./compile-thesis.sh [OPTIONS] [filename]"
echo "[option] compile: Compiles the PhD Thesis"
echo "[option] clean: removes temporary files no filename required"
exit
fi
fi
filename=$2;
if [ $1 = $clean ]; then
echo "Cleaning please wait ..."
rm -f *~
rm -rf *.aux
rm -rf *.bbl
rm -rf *.blg
rm -rf *.d
rm -rf *.fls
rm -rf *.ilg
rm -rf *.ind
rm -rf *.toc*
rm -rf *.lot*
rm -rf *.lof*
rm -rf *.log
rm -rf *.idx
rm -rf *.out*
rm -rf *.nlo
rm -rf *.nls
rm -rf $filename.pdf
rm -rf $filename.ps
rm -rf $filename.dvi
rm -rf *#*
echo "Cleaning complete!"
exit
elif [ $1 = $compile ]; then
echo "Compiling your PhD Thesis...please wait...!"
pdflatex -interaction=nonstopmode $filename.tex
bibtex $filename.aux
makeindex $filename.aux
makeindex $filename.idx
makeindex $filename.nlo -s nomencl.ist -o $filename.nls
pdflatex -interaction=nonstopmode $filename.tex
makeindex $filename.nlo -s nomencl.ist -o $filename.nls
pdflatex -interaction=nonstopmode $filename.tex
echo "Success!"
exit
fi
if test -z "$3"
then
exit
fi

21
license.md Normal file
View File

@ -0,0 +1,21 @@
**The MIT License (MIT)**
*Copyright (c) 2013 Krishna Kumar*
>Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
>The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

314
sty/breakurl.sty Normal file
View File

@ -0,0 +1,314 @@
%%
%% This is file `breakurl.sty',
%% generated with the docstrip utility.
%%
%% The original source files were:
%%
%% breakurl.dtx (with options: `package')
%%
%% This is a generated file.
%%
%% Copyright (C) 2005 by Vilar Camara Neto.
%%
%% This file may be distributed and/or modified under the
%% conditions of the LaTeX Project Public License, either
%% version 1.2 of this license or (at your option) any later
%% version. The latest version of this license is in:
%%
%% http://www.latex-project.org/lppl.txt
%%
%% and version 1.2 or later is part of all distributions of
%% LaTeX version 1999/12/01 or later.
%%
%% Currently this work has the LPPL maintenance status "maintained".
%%
%% The Current Maintainer of this work is Vilar Camara Neto.
%%
%% This work consists of the files breakurl.dtx and
%% breakurl.ins and the derived file breakurl.sty.
%%
\NeedsTeXFormat{LaTeX2e}[1999/12/01]
\ProvidesPackage{breakurl}
[2013/04/10 v1.40 Breakable hyperref URLs]
\RequirePackage{xkeyval}
\RequirePackage{ifpdf}
\ifpdf
% Dummy package options
\DeclareOptionX{preserveurlmacro}{}
\DeclareOptionX{hyphenbreaks}{}
\DeclareOptionX{anythingbreaks}{}
\DeclareOptionX{vertfit}{}
\ProcessOptionsX\relax
\PackageWarning{breakurl}{%
You are using breakurl while processing via pdflatex.\MessageBreak
\string\burl\space will be just a synonym of \string\url.\MessageBreak}
\DeclareRobustCommand{\burl}{\url}
\DeclareRobustCommand*{\burlalt}{\hyper@normalise\burl@alt}
\def\burl@alt#1#2{\hyper@linkurl{\Hurl{#1}}{#2}}
\expandafter\endinput
\fi
\@ifpackageloaded{hyperref}{}{%
\PackageError{breakurl}{The breakurl depends on hyperref package}%
{I can't do anything. Please type X <return>, edit the source file%
\MessageBreak
and add \string\usepackage\string{hyperref\string} before
\string\usepackage\string{breakurl\string}.}
\endinput
}
\newif\if@preserveurlmacro\@preserveurlmacrofalse
\newif\if@burl@fitstrut\@burl@fitstrutfalse
\newif\if@burl@fitglobal\@burl@fitglobalfalse
\newif\if@burl@anythingbreaks\@burl@anythingbreaksfalse
\newtoks\burl@toks
\let\burl@charlistbefore\empty
\let\burl@charlistafter\empty
\def\burl@addtocharlistbefore{\g@addto@macro\burl@charlistbefore}
\def\burl@addtocharlistafter{\g@addto@macro\burl@charlistafter}
\bgroup
\catcode`\&=12\relax
\hyper@normalise\burl@addtocharlistbefore{%}
\hyper@normalise\burl@addtocharlistafter{:/.?#&_,;!}
\egroup
\def\burl@growmif#1#2{%
\g@addto@macro\burl@mif{\def\burl@ttt{#1}\ifx\burl@ttt\@nextchar#2\else}%
}
\def\burl@growmfi{%
\g@addto@macro\burl@mfi{\fi}%
}
\def\burl@defifstructure{%
\let\burl@mif\empty
\let\burl@mfi\empty
\expandafter\@tfor\expandafter\@nextchar\expandafter:\expandafter=%
\burl@charlistbefore\do{%
\expandafter\burl@growmif\@nextchar\@burl@breakbeforetrue
\burl@growmfi
}%
\expandafter\@tfor\expandafter\@nextchar\expandafter:\expandafter=%
\burl@charlistafter\do{%
\expandafter\burl@growmif\@nextchar\@burl@breakaftertrue
\burl@growmfi
}%
}
\AtEndOfPackage{\burl@defifstructure}
\def\burl@setvertfit#1{%
\lowercase{\def\burl@temp{#1}}%
\def\burl@opt{local}\ifx\burl@temp\burl@opt
\@burl@fitstrutfalse\@burl@fitglobalfalse
\else\def\burl@opt{strut}\ifx\burl@temp\burl@opt
\@burl@fitstruttrue\@burl@fitglobalfalse
\else\def\burl@opt{global}\ifx\burl@temp\burl@opt
\@burl@fitstrutfalse\@burl@fitglobaltrue
\else
\PackageWarning{breakurl}{Unrecognized vertfit option `\burl@temp'.%
\MessageBreak
Adopting default `local'}
\@burl@fitstrutfalse\@burl@fitglobalfalse
\fi\fi\fi
}
\DeclareOptionX{preserveurlmacro}{\@preserveurlmacrotrue}
\DeclareOptionX{hyphenbreaks}{%
\bgroup
\catcode`\&=12\relax
\hyper@normalise\burl@addtocharlistafter{-}%
\egroup
}
\DeclareOptionX{anythingbreaks}{%
\@burl@anythingbreakstrue
}
\DeclareOptionX{vertfit}[local]{\burl@setvertfit{#1}}
\ProcessOptionsX\relax
\def\burl@hyper@linkurl#1#2{%
\begingroup
\hyper@chars
\burl@condpdflink{#1}%
\endgroup
}
\def\burl@condpdflink#1{%
\literalps@out{
/burl@bordercolor {\@urlbordercolor} def
/burl@border {\@pdfborder} def
}%
\if@burl@fitstrut
\sbox\pdf@box{#1\strut}%
\else\if@burl@fitglobal
\sbox\pdf@box{\burl@url}%
\else
\sbox\pdf@box{#1}%
\fi\fi
\dimen@\ht\pdf@box\dimen@ii\dp\pdf@box
\sbox\pdf@box{#1}%
\ifdim\dimen@ii=\z@
\literalps@out{BU.SS}%
\else
\lower\dimen@ii\hbox{\literalps@out{BU.SS}}%
\fi
\ifHy@breaklinks\unhbox\else\box\fi\pdf@box
\ifdim\dimen@=\z@
\literalps@out{BU.SE}%
\else
\raise\dimen@\hbox{\literalps@out{BU.SE}}%
\fi
\pdf@addtoksx{H.B}%
}
\DeclareRobustCommand*{\burl}{%
\leavevmode
\begingroup
\let\hyper@linkurl=\burl@hyper@linkurl
\catcode`\&=12\relax
\hyper@normalise\burl@
}
\DeclareRobustCommand*{\burlalt}{%
\begingroup
\let\hyper@linkurl=\burl@hyper@linkurl
\catcode`\&=12\relax
\hyper@normalise\burl@alt
}
\newif\if@burl@breakbefore
\newif\if@burl@breakafter
\newif\if@burl@prevbreakafter
\bgroup
\catcode`\&=12\relax
\gdef\burl@#1{%
\def\burl@url{#1}%
\def\burl@urltext{#1}%
\burl@doit
}
\gdef\burl@alt#1{%
\def\burl@url{#1}%
\hyper@normalise\burl@@alt
}
\gdef\burl@@alt#1{%
\def\burl@urltext{#1}%
\burl@doit
}
\gdef\burl@doit{%
\burl@toks{}%
\let\burl@UrlRight\UrlRight
\let\UrlRight\empty
\@burl@prevbreakafterfalse
\@ifundefined{@urlcolor}{\Hy@colorlink\@linkcolor}{\Hy@colorlink\@urlcolor}%
\expandafter\@tfor\expandafter\@nextchar\expandafter:\expandafter=%
\burl@urltext\do{%
\if@burl@breakafter\@burl@prevbreakaftertrue
\else\@burl@prevbreakafterfalse\fi
\if@burl@anythingbreaks\@burl@breakbeforetrue\else\@burl@breakbeforefalse\fi
\@burl@breakafterfalse
\expandafter\burl@mif\burl@mfi
\if@burl@breakbefore
% Breakable if the current char is in the `can break before' list
\burl@flush\linebreak[0]%
\else
\if@burl@prevbreakafter
\if@burl@breakafter\else
% Breakable if the current char is not in any of the `can break'
% lists, but the previous is in the `can break after' list.
% This mechanism accounts for sequences of `break after' characters,
% where a break is allowed only after the last one
\burl@flush\linebreak[0]%
\fi
\fi
\fi
\expandafter\expandafter\expandafter\burl@toks
\expandafter\expandafter\expandafter{%
\expandafter\the\expandafter\burl@toks\@nextchar}%
}%
\let\UrlRight\burl@UrlRight
\burl@flush
\literalps@out{BU.E}%
\Hy@endcolorlink
\endgroup
}
\egroup
\def\the@burl@toks{\the\burl@toks}
\def\burl@flush{%
\expandafter\def\expandafter\burl@toks@def\expandafter{\the\burl@toks}%
\literalps@out{/BU.L (\burl@url) def}%
\hyper@linkurl{\expandafter\Hurl\expandafter{\burl@toks@def}}{\burl@url}%
\global\burl@toks{}%
\let\UrlLeft\empty
}%
\if@preserveurlmacro\else\let\url\burl\let\urlalt\burlalt\fi
\AtBeginDvi{%
\headerps@out{%
/burl@stx null def
/BU.S {
/burl@stx null def
} def
/BU.SS {
currentpoint
/burl@lly exch def
/burl@llx exch def
burl@stx null ne {burl@endx burl@llx ne {BU.FL BU.S} if} if
burl@stx null eq {
burl@llx dup /burl@stx exch def /burl@endx exch def
burl@lly dup /burl@boty exch def /burl@topy exch def
} if
burl@lly burl@boty gt {/burl@boty burl@lly def} if
} def
/BU.SE {
currentpoint
/burl@ury exch def
dup /burl@urx exch def /burl@endx exch def
burl@ury burl@topy lt {/burl@topy burl@ury def} if
} def
/BU.E {
BU.FL
} def
/BU.FL {
burl@stx null ne {BU.DF} if
} def
/BU.DF {
BU.BB
[ /H /I /Border [burl@border] /Color [burl@bordercolor]
/Action << /Subtype /URI /URI BU.L >> /Subtype /Link BU.B /ANN pdfmark
/burl@stx null def
} def
/BU.BB {
burl@stx HyperBorder sub /burl@stx exch def
burl@endx HyperBorder add /burl@endx exch def
burl@boty HyperBorder add /burl@boty exch def
burl@topy HyperBorder sub /burl@topy exch def
} def
/BU.B {
/Rect[burl@stx burl@boty burl@endx burl@topy]
} def
/eop where {
begin
/@ldeopburl /eop load def
/eop { SDict begin BU.FL end @ldeopburl } def
end
} {
/eop { SDict begin BU.FL end } def
} ifelse
}%
}
\endinput
%%
%% End of file `breakurl.sty'.

58
thesis-info.tex Normal file
View File

@ -0,0 +1,58 @@
% ************************ Thesis Information & Meta-data **********************
%% The title of the thesis
\title{Writing your PhD thesis in \texorpdfstring{\\ \LaTeX2e}{LaTeX2e}}
%\texorpdfstring is used for PDF metadata. Usage:
%\texorpdfstring{LaTeX_Version}{PDF Version (non-latex)} eg.,
%\texorpdfstring{$sigma$}{sigma}
%% Subtitle (Optional)
\subtitle{Using the CUED template}
%% The full name of the author
\author{Krishna Kumar}
%% Department (eg. Department of Engineering, Maths, Physics)
\dept{Department of Engineering}
%% University and Crest
\university{University of Cambridge}
% Crest minimum should be 30mm.
\crest{\includegraphics[width=0.2\textwidth]{University_Crest}}
%% Use this crest, if you are using the college crest
%% Crest long miminum should be 65mm
%\crest{\includegraphics[width=0.45\textwidth]{University_Crest_Long}}
%% College shield [optional]
% Crest minimum should be 30mm.
%\collegeshield{\includegraphics[width=0.2\textwidth]{CollegeShields/Kings}}
%% Supervisor (optional)
%\supervisor{Prof. Kenichi Soga}
%% Supervisor Role (optional) - Supervisor (default) or advisor
%\supervisorrole{Advisor: }
%% Advisor (optional)
%\advisor{Prof. Malcolm Bolton}
%% Advisor Role (optional) - Advisor (default) or leave empty
%\advisorrole{Advisor: }
%% You can redefine the submission text:
% Default as per the University guidelines:
% ``This dissertation is submitted for the degree of''
%\renewcommand{\submissiontext}{change the default text here if needed}
%% Full title of the Degree
\degreetitle{Doctor of Philosophy}
%% College affiliation (optional)
\college{King's College}
%% Submission date
% Default is set as {\monthname[\the\month]\space\the\year}
%\degreedate{September 2014}
%% Meta information
\subject{LaTeX} \keywords{{LaTeX} {PhD Thesis} {Engineering} {University of
Cambridge}}

BIN
thesis.pdf Normal file

Binary file not shown.

27514
thesis.ps Normal file

File diff suppressed because it is too large Load Diff

188
thesis.tex Normal file
View File

@ -0,0 +1,188 @@
% ******************************* PhD Thesis Template **************************
% Please have a look at the README.md file for info on how to use the template
\documentclass[a4paper,12pt,times,numbered,print,index]{Classes/PhDThesisPSnPDF}
% ******************************************************************************
% ******************************* Class Options ********************************
% *********************** See README for more details **************************
% ******************************************************************************
% `a4paper'(The University of Cambridge PhD thesis guidelines recommends a page
% size a4 - default option) or `a5paper': A5 Paper size is also allowed as per
% the Cambridge University Engineering Deparment guidelines for PhD thesis
%
% `11pt' or `12pt'(default): Font Size 10pt is NOT recommended by the University
% guidelines
%
% `oneside' or `twoside'(default): Printing double side (twoside) or single
% side.
%
% `print': Use `print' for print version with appropriate margins and page
% layout. Leaving the options field blank will activate Online version.
%
% `index': For index at the end of the thesis
%
% `draftclassic': For draft mode without loading any images (same as draft in book)
%
% `draft': Special draft mode with line numbers, images, and water mark with
% timestamp and custom text. Position of the text can also be modified.
%
% `abstract': To generate only the title page and abstract page with
% dissertation title and name, to submit to the Student Registry
%
% `chapter`: This option enables only the specified chapter and it's references
% Useful for review and corrections.
%
% ************************* Custom Page Margins ********************************
%
% `custommargin`: Use `custommargin' in options to activate custom page margins,
% which can be defined in the preamble.tex. Custom margin will override
% print/online margin setup.
%
% *********************** Choosing the Fonts in Class Options ******************
%
% `times' : Times font with math support. (The Cambridge University guidelines
% recommend using times)
%
% `fourier': Utopia Font with Fourier Math font (Font has to be installed)
% It's a free font.
%
% `customfont': Use `customfont' option in the document class and load the
% package in the preamble.tex
%
% default or leave empty: `Latin Modern' font will be loaded.
%
% ********************** Choosing the Bibliography style ***********************
%
% `authoryear': For author-year citation eg., Krishna (2013)
%
% `numbered': (Default Option) For numbered and sorted citation e.g., [1,5,2]
%
% `custombib': Define your own bibliography style in the `preamble.tex' file.
% `\RequirePackage[square, sort, numbers, authoryear]{natbib}'.
% This can be also used to load biblatex instead of natbib
% (See Preamble)
%
% **************************** Choosing the Page Style *************************
%
% `default (leave empty)': For Page Numbers in Header (Left Even, Right Odd) and
% Chapter Name in Header (Right Even) and Section Name (Left Odd). Blank Footer.
%
% `PageStyleI': Chapter Name next & Page Number on Even Side (Left Even).
% Section Name & Page Number in Header on Odd Side (Right Odd). Footer is empty.
%
% `PageStyleII': Chapter Name on Even Side (Left Even) in Header. Section Number
% and Section Name in Header on Odd Side (Right Odd). Page numbering in footer
% ********************************** Preamble **********************************
% Preamble: Contains packages and user-defined commands and settings
\input{Preamble/preamble}
% ************************ Thesis Information & Meta-data **********************
% Thesis title and author information, refernce file for biblatex
\input{thesis-info}
% ***************************** Abstract Separate ******************************
% To printout only the titlepage and the abstract with the PhD title and the
% author name for submission to the Student Registry, use the `abstract' option in
% the document class.
\ifdefineAbstract
\pagestyle{empty}
\includeonly{Declaration/declaration, Abstract/abstract}
\fi
% ***************************** Chapter Mode ***********************************
% The chapter mode allows user to only print particular chapters with references
% Title, Contents, Frontmatter are disabled by default
% Useful option to review a particular chapter or to send it to supervisior.
% To use choose `chapter' option in the document class
\ifdefineChapter
\includeonly{Chapter3/chapter3}
\fi
% ******************************** Front Matter ********************************
\begin{document}
\frontmatter
\begin{titlepage}
\maketitle
\end{titlepage}
\include{Dedication/dedication}
\include{Declaration/declaration}
\include{Acknowledgement/acknowledgement}
\include{Abstract/abstract}
% *********************** Adding TOC and List of Figures ***********************
\tableofcontents
\listoffigures
\listoftables
% \printnomenclature[space] space can be set as 2em between symbol and description
%\printnomenclature[3em]
\printnomenclature
% ******************************** Main Matter *********************************
\mainmatter
\include{Chapter1/chapter1}
\include{Chapter2/chapter2}
\include{Chapter3/chapter3}
%\include{Chapter4/chapter4}
%\include{Chapter5/chapter5}
%\include{Chapter6/chapter6}
%\include{Chapter7/chapter7}
% ********************************** Back Matter *******************************
% Backmatter should be commented out, if you are using appendices after References
%\backmatter
% ********************************** Bibliography ******************************
\begin{spacing}{0.9}
% To use the conventional natbib style referencing
% Bibliography style previews: http://nodonn.tipido.net/bibstyle.php
% Reference styles: http://sites.stat.psu.edu/~surajit/present/bib.htm
\bibliographystyle{apalike}
%\bibliographystyle{unsrt} % Use for unsorted references
%\bibliographystyle{plainnat} % use this to have URLs listed in References
\cleardoublepage
\bibliography{References/references} % Path to your References.bib file
% If you would like to use BibLaTeX for your references, pass `custombib' as
% an option in the document class. The location of 'reference.bib' should be
% specified in the preamble.tex file in the custombib section.
% Comment out the lines related to natbib above and uncomment the following line.
%\printbibliography[heading=bibintoc, title={References}]
\end{spacing}
% ********************************** Appendices ********************************
\begin{appendices} % Using appendices environment for more functunality
\include{Appendix1/appendix1}
\include{Appendix2/appendix2}
\end{appendices}
% *************************************** Index ********************************
\printthesisindex % If index is present
\end{document}