summaryrefslogtreecommitdiff
path: root/Master/texmf-dist
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2017-03-15 21:19:41 +0000
committerKarl Berry <karl@freefriends.org>2017-03-15 21:19:41 +0000
commit5b47698ef657d3a6155461aa8c727775446fb2f5 (patch)
tree8b95b79477fbb18c95f750e6f75223400224da4b /Master/texmf-dist
parent0fa206ea66a7e504a71b460222d74c41253eaa3c (diff)
lion-msc (15mar17)
git-svn-id: svn://tug.org/texlive/trunk@43512 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist')
-rw-r--r--Master/texmf-dist/bibtex/bst/lion-msc/lion-msc.bst949
-rw-r--r--Master/texmf-dist/doc/latex/lion-msc/4photon.bib327
-rw-r--r--Master/texmf-dist/doc/latex/lion-msc/AlexanderPRA.tex111
-rw-r--r--Master/texmf-dist/doc/latex/lion-msc/Fig1.pngbin0 -> 374206 bytes
-rw-r--r--Master/texmf-dist/doc/latex/lion-msc/Fig2.pngbin0 -> 155841 bytes
-rw-r--r--Master/texmf-dist/doc/latex/lion-msc/Fig3a.pngbin0 -> 15943 bytes
-rw-r--r--Master/texmf-dist/doc/latex/lion-msc/Fig3b.pngbin0 -> 88562 bytes
-rw-r--r--Master/texmf-dist/doc/latex/lion-msc/Fig4.pngbin0 -> 84042 bytes
-rw-r--r--Master/texmf-dist/doc/latex/lion-msc/README.md19
-rw-r--r--Master/texmf-dist/doc/latex/lion-msc/lion-msc.layout83
-rw-r--r--Master/texmf-dist/doc/latex/lion-msc/lion-msc.pdfbin0 -> 1050660 bytes
-rw-r--r--Master/texmf-dist/doc/latex/lion-msc/lion-msc.tex282
-rw-r--r--Master/texmf-dist/doc/latex/lion-msc/logo_leidenuniv.pdf636
-rw-r--r--Master/texmf-dist/doc/latex/lion-msc/minimal.pdfbin0 -> 108394 bytes
-rw-r--r--Master/texmf-dist/doc/latex/lion-msc/minimal.tex14
-rw-r--r--Master/texmf-dist/doc/latex/lion-msc/thesisstyle.jpgbin0 -> 143505 bytes
-rw-r--r--Master/texmf-dist/tex/latex/lion-msc/lion-msc.cls398
17 files changed, 2819 insertions, 0 deletions
diff --git a/Master/texmf-dist/bibtex/bst/lion-msc/lion-msc.bst b/Master/texmf-dist/bibtex/bst/lion-msc/lion-msc.bst
new file mode 100644
index 00000000000..4df042d0ad0
--- /dev/null
+++ b/Master/texmf-dist/bibtex/bst/lion-msc/lion-msc.bst
@@ -0,0 +1,949 @@
+
+ % 2014 Renamed and reused as lion-msc.bst
+ % 2002 Modified bibliography style by M.J.A. de Dood for PhD thesis
+
+ % Original file was aip.bst; bibliography style for AIP journals
+
+ % Please notify Charles Karney (Karney@Princeton.EDU)
+ % of any bugs, improvements, etc.
+
+ % For American Institute of Physics Journals
+
+ % version 0.99b for BibTeX versions 0.99a or later, LaTeX version 2.09.
+ % Copyright (C) 1985, all rights reserved.
+ % Copying of this file is authorized only if either
+ % (1) you make absolutely no changes to your copy, including name, or
+ % (2) if you do make changes, you name it something other than
+ % btxbst.doc, plain.bst, unsrt.bst, alpha.bst, and abbrv.bst.
+ % This restriction helps ensure that all standard styles are identical.
+ % The file btxbst.doc has the documentation for this style.
+
+ENTRY
+ { address
+ author
+ booktitle
+ chapter
+ edition
+ editor
+ howpublished
+ institution
+ journal
+ key
+ month
+ note
+ number
+ organization
+ pages
+ publisher
+ school
+ series
+ title
+ type
+ volume
+ year
+ }
+ {}
+ { label }
+
+INTEGERS { output.state before.all mid.sentence after.sentence after.block }
+
+FUNCTION {init.state.consts}
+{ #0 'before.all :=
+ #1 'mid.sentence :=
+ #2 'after.sentence :=
+ #3 'after.block :=
+}
+
+STRINGS { s t }
+
+FUNCTION {output.nonnull}
+{ 's :=
+ output.state mid.sentence =
+ { ", " * write$ }
+ { output.state after.block =
+ { "," * write$
+ newline$
+ "\newblock " write$
+ }
+ { output.state before.all =
+ 'write$
+ { add.period$ " " * write$ }
+ if$
+ }
+ if$
+ mid.sentence 'output.state :=
+ }
+ if$
+ s
+}
+
+FUNCTION {output}
+{ duplicate$ empty$
+ 'pop$
+ 'output.nonnull
+ if$
+}
+
+FUNCTION {output.check}
+{ 't :=
+ duplicate$ empty$
+ { pop$ "empty " t * " in " * cite$ * warning$ }
+ 'output.nonnull
+ if$
+}
+
+FUNCTION {output.bibitem}
+{ newline$
+ "\bibitem{" write$
+ cite$ write$
+ "}" write$
+ newline$
+ ""
+ before.all 'output.state :=
+}
+
+FUNCTION {fin.entry}
+{ add.period$
+ write$
+ newline$
+}
+
+FUNCTION {new.block}
+{ output.state before.all =
+ 'skip$
+ { after.block 'output.state := }
+ if$
+}
+
+FUNCTION {new.sentence}
+{ skip$
+}
+
+FUNCTION {not}
+{ { #0 }
+ { #1 }
+ if$
+}
+
+FUNCTION {and}
+{ 'skip$
+ { pop$ #0 }
+ if$
+}
+
+FUNCTION {or}
+{ { pop$ #1 }
+ 'skip$
+ if$
+}
+
+FUNCTION {new.block.checka}
+{ empty$
+ 'skip$
+ 'new.block
+ if$
+}
+
+FUNCTION {new.block.checkb}
+{ empty$
+ swap$ empty$
+ and
+ 'skip$
+ 'new.block
+ if$
+}
+
+FUNCTION {new.sentence.checka}
+{ empty$
+ 'skip$
+ 'new.sentence
+ if$
+}
+
+FUNCTION {new.sentence.checkb}
+{ empty$
+ swap$ empty$
+ and
+ 'skip$
+ 'new.sentence
+ if$
+}
+
+FUNCTION {field.or.null}
+{ duplicate$ empty$
+ { pop$ "" }
+ 'skip$
+ if$
+}
+
+FUNCTION {emphasize}
+{ duplicate$ empty$
+ { pop$ "" }
+ { "{\em " swap$ * "}" * }
+ if$
+}
+
+FUNCTION {embolden}
+{ duplicate$ empty$
+ { pop$ "" }
+ { "{\bf " swap$ * "}" * }
+ if$
+}
+
+FUNCTION {paren}
+{ duplicate$ empty$
+ { pop$ "" }
+ { "(" swap$ * ")" * }
+ if$
+}
+
+INTEGERS { nameptr namesleft numnames }
+
+INTEGERS { etal }
+
+FUNCTION {format.names}
+{ 's :=
+ #1 'nameptr :=
+ s num.names$ 'numnames :=
+ numnames #20 >
+ s numnames "{ll}" format.name$ "others" = numnames #1 > and
+ or 'etal :=
+ etal
+ { #1 #1 + 'namesleft := }
+ { numnames 'namesleft := }
+ if$
+ { namesleft #0 > }
+ { s nameptr "{f.~}{vv~}{ll}{, jj}" format.name$ 't :=
+ nameptr #1 >
+ { namesleft #1 >
+ { ", " * t * }
+ { nameptr #2 >
+ { "," * }
+ 'skip$
+ if$
+ t "others" =
+ etal or
+ { " et~al." * }
+ { " and " * t * }
+ if$
+ }
+ if$
+ }
+ 't
+ if$
+ nameptr #1 + 'nameptr :=
+ namesleft #1 - 'namesleft :=
+ }
+ while$
+}
+
+FUNCTION {format.authors}
+{ author empty$
+ { "" }
+ { author format.names }
+ if$
+}
+
+FUNCTION {format.editors}
+{ editor empty$
+ { "" }
+ { editor format.names
+ editor num.names$ #1 >
+ { ", editors" * }
+ { ", editor" * }
+ if$
+ }
+ if$
+}
+
+FUNCTION {format.edited}
+{ editor empty$
+ { "" }
+ { "edited by " editor format.names * }
+ if$
+}
+
+FUNCTION {format.title}
+{ title empty$
+ { "" }
+ { title emphasize "t" change.case$ }
+ if$
+}
+
+FUNCTION {n.dashify}
+{ 't :=
+ ""
+ { t empty$ not }
+ { t #1 #1 substring$ "-" =
+ { t #1 #2 substring$ "--" = not
+ { "--" *
+ t #2 global.max$ substring$ 't :=
+ }
+ { { t #1 #1 substring$ "-" = }
+ { "-" *
+ t #2 global.max$ substring$ 't :=
+ }
+ while$
+ }
+ if$
+ }
+ { t #1 #1 substring$ *
+ t #2 global.max$ substring$ 't :=
+ }
+ if$
+ }
+ while$
+}
+
+FUNCTION {first.page}
+{ 't :=
+ ""
+ { t empty$ not t #1 #1 substring$ "-" = not and }
+ { t #1 #1 substring$ *
+ t #2 global.max$ substring$ 't :=
+ }
+ while$
+}
+
+FUNCTION {format.date}
+{ year empty$
+ { "" }
+ 'year
+ if$
+}
+
+FUNCTION {format.btitle}
+{ title emphasize
+}
+
+FUNCTION {tie.or.space.connect}
+{ duplicate$ text.length$ #3 <
+ { "~" }
+ { " " }
+ if$
+ swap$ * *
+}
+
+FUNCTION {either.or.check}
+{ empty$
+ 'pop$
+ { "can't use both " swap$ * " fields in " * cite$ * warning$ }
+ if$
+}
+
+FUNCTION {format.bvolume}
+{ volume empty$
+ { "" }
+ { "volume" volume tie.or.space.connect
+ series empty$
+ 'skip$
+ { " of " * series emphasize * }
+ if$
+ "volume and number" number either.or.check
+ }
+ if$
+}
+
+FUNCTION {format.number.series}
+{ volume empty$
+ { number empty$
+ { series field.or.null }
+ { output.state mid.sentence =
+ { "number" }
+ { "Number" }
+ if$
+ number tie.or.space.connect
+ series empty$
+ { "there's a number but no series in " cite$ * warning$ }
+ { " in " * series * }
+ if$
+ }
+ if$
+ }
+ { "" }
+ if$
+}
+
+FUNCTION {format.edition}
+{ edition empty$
+ { "" }
+ { output.state mid.sentence =
+ { edition "l" change.case$ " edition" * }
+ { edition "t" change.case$ " edition" * }
+ if$
+ }
+ if$
+}
+
+INTEGERS { multiresult }
+
+FUNCTION {multi.page.check}
+{ 't :=
+ #0 'multiresult :=
+ { multiresult not
+ t empty$ not
+ and
+ }
+ { t #1 #1 substring$
+ duplicate$ "-" =
+ swap$ duplicate$ "," =
+ swap$ "+" =
+ or or
+ { #1 'multiresult := }
+ { t #2 global.max$ substring$ 't := }
+ if$
+ }
+ while$
+ multiresult
+}
+
+FUNCTION {format.pages}
+{ pages empty$
+ { "" }
+ { pages multi.page.check
+ { "pages" pages n.dashify tie.or.space.connect }
+ { "page" pages tie.or.space.connect }
+ if$
+ }
+ if$
+}
+
+FUNCTION {format.pages.a}
+{ pages empty$
+ { "" }
+ { "page" pages first.page tie.or.space.connect }
+ if$
+}
+
+FUNCTION {format.vol.num.pages}
+{ volume field.or.null embolden
+ " " swap$ * *
+ pages empty$
+ 'skip$
+ { duplicate$ empty$
+ { pop$ format.pages.a }
+ { ", " * pages first.page * }
+ if$
+ }
+ if$
+}
+
+FUNCTION {format.chapter.pages}
+{ chapter empty$
+ 'format.pages
+ { type empty$
+ { "chapter" }
+ { type "l" change.case$ }
+ if$
+ chapter tie.or.space.connect
+ pages empty$
+ 'skip$
+ { ", " * format.pages * }
+ if$
+ }
+ if$
+}
+
+FUNCTION {format.in.ed.booktitle}
+{ booktitle empty$
+ { "" }
+ { editor empty$
+ { "in " booktitle emphasize * }
+ { "in " booktitle emphasize * ", " * format.edited * }
+ if$
+ }
+ if$
+}
+
+FUNCTION {empty.misc.check}
+{ author empty$ title empty$ howpublished empty$
+ month empty$ year empty$ note empty$
+ and and and and and
+ { "all relevant fields are empty in " cite$ * warning$ }
+ 'skip$
+ if$
+}
+
+FUNCTION {format.thesis.type}
+{ type empty$
+ 'skip$
+ { pop$
+ type "t" change.case$
+ }
+ if$
+}
+
+FUNCTION {format.tr.number}
+{ type empty$
+ { "Technical Report" }
+ 'type
+ if$
+ number empty$
+ { "t" change.case$ }
+ { number tie.or.space.connect }
+ if$
+}
+
+FUNCTION {format.article.crossref}
+{ key empty$
+ { journal empty$
+ { "need key or journal for " cite$ * " to crossref " * crossref *
+ warning$
+ ""
+ }
+ { "In " journal * }
+ if$
+ }
+ { "In " key * }
+ if$
+ " \cite{" * crossref * "}" *
+}
+
+FUNCTION {format.crossref.editor}
+{ editor #1 "{vv~}{ll}" format.name$
+ editor num.names$ duplicate$
+ #2 >
+ { pop$ " et~al." * }
+ { #2 <
+ 'skip$
+ { editor #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" =
+ { " et~al." * }
+ { " and " * editor #2 "{vv~}{ll}" format.name$ * }
+ if$
+ }
+ if$
+ }
+ if$
+}
+
+FUNCTION {format.book.crossref}
+{ volume empty$
+ { "empty volume in " cite$ * "'s crossref of " * crossref * warning$
+ "In "
+ }
+ { "Volume" volume tie.or.space.connect
+ " of " *
+ }
+ if$
+ editor empty$
+ editor field.or.null author field.or.null =
+ or
+ { key empty$
+ { series empty$
+ { "need editor, key, or series for " cite$ * " to crossref " *
+ crossref * warning$
+ "" *
+ }
+ { "{\em " * series * "\/}" * }
+ if$
+ }
+ { key * }
+ if$
+ }
+ { format.crossref.editor * }
+ if$
+ " \cite{" * crossref * "}" *
+}
+
+FUNCTION {format.incoll.inproc.crossref}
+{ editor empty$
+ editor field.or.null author field.or.null =
+ or
+ { key empty$
+ { booktitle empty$
+ { "need editor, key, or booktitle for " cite$ * " to crossref " *
+ crossref * warning$
+ ""
+ }
+ { "In {\em " booktitle * "\/}" * }
+ if$
+ }
+ { "In " key * }
+ if$
+ }
+ { "In " format.crossref.editor * }
+ if$
+ " \cite{" * crossref * "}" *
+}
+
+FUNCTION {article}
+{ output.bibitem
+ format.authors "author" output.check
+ format.title "title" output.check
+ new.block
+ crossref missing$
+ { journal field.or.null
+ format.vol.num.pages
+ format.date empty$
+ 'skip$
+ { duplicate$ empty$
+ { pop$ format.date paren }
+ { " " * format.date paren * }
+ if$
+ }
+ if$
+ output
+ }
+ { format.article.crossref output.nonnull
+ format.pages output
+ }
+ if$
+ new.block
+ note output
+ fin.entry
+}
+
+FUNCTION {book}
+{ output.bibitem
+ author empty$
+ { format.editors "author and editor" output.check }
+ { format.authors output.nonnull
+ crossref missing$
+ { "author and editor" editor either.or.check }
+ 'skip$
+ if$
+ }
+ if$
+ new.block
+ format.btitle "title" output.check
+ crossref missing$
+ { format.bvolume output
+ new.block
+ format.number.series output
+ new.sentence
+ publisher "publisher" output.check
+ address output
+ }
+ { new.block
+ format.book.crossref output.nonnull
+ }
+ if$
+ format.edition output
+ format.date "year" output.check
+ new.block
+ note output
+ fin.entry
+}
+
+FUNCTION {booklet}
+{ output.bibitem
+ format.authors output
+ new.block
+ format.title "title" output.check
+ howpublished address new.block.checkb
+ howpublished output
+ address output
+ format.date output
+ new.block
+ note output
+ fin.entry
+}
+
+FUNCTION {inbook}
+{ output.bibitem
+ author empty$
+ { format.editors "author and editor" output.check }
+ { format.authors output.nonnull
+ crossref missing$
+ { "author and editor" editor either.or.check }
+ 'skip$
+ if$
+ }
+ if$
+ new.block
+ format.btitle "title" output.check
+ crossref missing$
+ { format.bvolume output
+ format.chapter.pages "chapter and pages" output.check
+ new.block
+ format.number.series output
+ new.sentence
+ publisher "publisher" output.check
+ address output
+ }
+ { format.chapter.pages "chapter and pages" output.check
+ new.block
+ format.book.crossref output.nonnull
+ }
+ if$
+ format.edition output
+ format.date "year" output.check
+ new.block
+ note output
+ fin.entry
+}
+
+FUNCTION {incollection}
+{ output.bibitem
+ format.authors "author" output.check
+ new.block
+ format.title "title" output.check
+ new.block
+ crossref missing$
+ { format.in.ed.booktitle "booktitle" output.check
+ format.bvolume output
+ format.number.series output
+ format.chapter.pages output
+ new.sentence
+ publisher "publisher" output.check
+ address output
+ format.edition output
+ format.date "year" output.check
+ }
+ { format.incoll.inproc.crossref output.nonnull
+ format.chapter.pages output
+ }
+ if$
+ new.block
+ note output
+ fin.entry
+}
+
+FUNCTION {inproceedings}
+{ output.bibitem
+ format.authors "author" output.check
+ new.block
+ format.title "title" output.check
+ new.block
+ crossref missing$
+ { format.in.ed.booktitle "booktitle" output.check
+ format.bvolume output
+ format.number.series output
+ format.pages output
+ address empty$
+ { organization publisher new.sentence.checkb
+ organization output
+ publisher output
+ format.date "year" output.check
+ }
+ { address output.nonnull
+ format.date "year" output.check
+ new.sentence
+ organization output
+ publisher output
+ }
+ if$
+ }
+ { format.incoll.inproc.crossref output.nonnull
+ format.pages output
+ }
+ if$
+ new.block
+ note output
+ fin.entry
+}
+
+FUNCTION {conference} { inproceedings }
+
+FUNCTION {manual}
+{ output.bibitem
+ author empty$
+ { organization empty$
+ 'skip$
+ { organization output.nonnull
+ address output
+ }
+ if$
+ }
+ { format.authors output.nonnull }
+ if$
+ new.block
+ format.btitle "title" output.check
+ author empty$
+ { organization empty$
+ { address new.block.checka
+ address output
+ }
+ 'skip$
+ if$
+ }
+ { organization address new.block.checkb
+ organization output
+ address output
+ }
+ if$
+ format.edition output
+ format.date output
+ new.block
+ note output
+ fin.entry
+}
+
+FUNCTION {mastersthesis}
+{ output.bibitem
+ format.authors "author" output.check
+ new.block
+ format.title "title" output.check
+ new.block
+ "Master's thesis" format.thesis.type output.nonnull
+ school "school" output.check
+ address output
+ format.date "year" output.check
+ new.block
+ note output
+ fin.entry
+}
+
+FUNCTION {misc}
+{ output.bibitem
+ format.authors output
+ title howpublished new.block.checkb
+ format.title output
+ howpublished new.block.checka
+ howpublished output
+ format.date output
+ new.block
+ note output
+ fin.entry
+ empty.misc.check
+}
+
+FUNCTION {phdthesis}
+{ output.bibitem
+ format.authors "author" output.check
+ new.block
+ format.btitle "title" output.check
+ new.block
+ "PhD thesis" format.thesis.type output.nonnull
+ school "school" output.check
+ address output
+ format.date "year" output.check
+ new.block
+ note output
+ fin.entry
+}
+
+FUNCTION {proceedings}
+{ output.bibitem
+ editor empty$
+ { organization output }
+ { format.editors output.nonnull }
+ if$
+ new.block
+ format.btitle "title" output.check
+ format.bvolume output
+ format.number.series output
+ address empty$
+ { editor empty$
+ { publisher new.sentence.checka }
+ { organization publisher new.sentence.checkb
+ organization output
+ }
+ if$
+ publisher output
+ format.date "year" output.check
+ }
+ { address output.nonnull
+ format.date "year" output.check
+ new.sentence
+ editor empty$
+ 'skip$
+ { organization output }
+ if$
+ publisher output
+ }
+ if$
+ new.block
+ note output
+ fin.entry
+}
+
+FUNCTION {techreport}
+{ output.bibitem
+ format.authors "author" output.check
+ new.block
+ format.title "title" output.check
+ new.block
+ format.tr.number output.nonnull
+ institution "institution" output.check
+ address output
+ format.date "year" output.check
+ new.block
+ note output
+ fin.entry
+}
+
+FUNCTION {unpublished}
+{ output.bibitem
+ format.authors "author" output.check
+ new.block
+ format.title "title" output.check
+ new.block
+ note "note" output.check
+ format.date output
+ fin.entry
+}
+
+FUNCTION {default.type} { misc }
+
+MACRO {jan} {"Jan."}
+
+MACRO {feb} {"Feb."}
+
+MACRO {mar} {"Mar."}
+
+MACRO {apr} {"Apr."}
+
+MACRO {may} {"May"}
+
+MACRO {jun} {"June"}
+
+MACRO {jul} {"July"}
+
+MACRO {aug} {"Aug."}
+
+MACRO {sep} {"Sept."}
+
+MACRO {oct} {"Oct."}
+
+MACRO {nov} {"Nov."}
+
+MACRO {dec} {"Dec."}
+
+READ
+
+STRINGS { longest.label }
+
+INTEGERS { number.label longest.label.width }
+
+FUNCTION {initialize.longest.label}
+{ "" 'longest.label :=
+ #1 'number.label :=
+ #0 'longest.label.width :=
+}
+
+FUNCTION {longest.label.pass}
+{ number.label int.to.str$ 'label :=
+ number.label #1 + 'number.label :=
+ label width$ longest.label.width >
+ { label 'longest.label :=
+ label width$ 'longest.label.width :=
+ }
+ 'skip$
+ if$
+}
+
+EXECUTE {initialize.longest.label}
+
+ITERATE {longest.label.pass}
+
+FUNCTION {begin.bib}
+{ preamble$ empty$
+ 'skip$
+ { preamble$ write$ newline$ }
+ if$
+ "\begin{thebibliography}{" longest.label * "}" * write$ newline$
+}
+
+EXECUTE {begin.bib}
+
+EXECUTE {init.state.consts}
+
+ITERATE {call.type$}
+
+FUNCTION {end.bib}
+{ newline$
+ "\end{thebibliography}" write$ newline$
+}
+
+EXECUTE {end.bib}
diff --git a/Master/texmf-dist/doc/latex/lion-msc/4photon.bib b/Master/texmf-dist/doc/latex/lion-msc/4photon.bib
new file mode 100644
index 00000000000..30a20974386
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/lion-msc/4photon.bib
@@ -0,0 +1,327 @@
+@STRING{ADM="Adv. Mater."}
+@STRING{AO="Appl. Opt."}
+@STRING{APL="Appl. Phys. Lett."}
+@STRING{CPL="Chem. Phys. Lett."}
+@STRING{JAP="J. Appl. Phys."}
+@STRING{JJAP="Jpn. J. Appl. Phys."}
+@STRING{JCP="J. Chem. Phys."}
+@STRING{JMR="J. Mater. Res."}
+@STRING{JNCS="J. Non-Cryst. Sol."}
+@STRING{JOSA="J. Opt. Soc. Am."}
+@STRING{JOSAA="J. Opt. Soc. Am. A"}
+@STRING{JOSAB="J. Opt. Soc. Am. B"}
+@STRING{JVSTB="J. Vac. Sci. Technol. B"}
+@STRING{JVSTA="J. Vac. Sci. Technol. A"}
+@STRING{NL="Nano Lett."}
+@STRING{NAT="Nature"}
+@STRING{NMAT="Nature Materials"}
+@STRING{NPHYS="Nature Physics"}
+@STRING{NPHOT="Nature Photonics"}
+@STRING{NIMB="Nucl. Instr. Meth. B"}
+@STRING{ME="Microelectron. Eng."}
+@STRING{OC="Opt. Comm."}
+@STRING{OL="Opt. Lett."}
+@STRING{OM="Opt. Mat."}
+@STRING{OE="Opt. Expr."}
+@STRING{PR="Phys. Rev."}
+@STRING{PRA="Phys. Rev. A"}
+@STRING{PRB="Phys. Rev. B"}
+@STRING{PRD="Phys. Rev. D"}
+@STRING{PRE="Phys. Rev. E"}
+@STRING{PRL="Phys. Rev. Lett."}
+@STRING{PRSL="Proc. R. Soc. Lond. A"}
+@STRING{RSI="Rev. Sci. Instr."}
+@STRING{RMP="Rev. Mod. Phys."}
+@STRING{SCI="Science"}
+@STRING{TSF="Thin Solid Films"}
+
+@article{Braunstein:RMP2005,
+ volume = {77},
+ journal = {Rev. Mod. Phys.},
+ author = {Braunstein, Samuel L. and van Loock, Peter},
+ year = {2005},
+ title = {Quantum information with continuous variables},
+ pages = {513--577}
+}
+
+@article{Peeters2008,
+abstract = {We demonstrate how the Maker fringes that are observable in spontaneous parametric down-conversion (SPDC) give a direct visualization of the poling quality of a periodically-poled crystal. Identical Maker fringes are observed in the optical spectrum of collinear SPDC and the temperature dependence of second harmonic generation. We analyze these Maker fringes via a unified treatment of the tuning curve in crystals with small and slowly-varying deformations of the poling structure. Our theoretical model, based on a Fourier analysis of the poling deformations, distinguishes between duty-cycle variations and variations of the poling phase. The analysis indicates that the poling phase is approximately fixed, while the duty-cycle typically varies between 36\% and 64\%.},
+author = {Peeters, W H and van Exter, M P},
+journal = {Optics express},
+month = may,
+number = {10},
+pages = {7344--60},
+pmid = {18545440},
+title = {{Optical characterization of periodically-poled KTiOPO4.}},
+volume = {16},
+year = {2008}
+}
+
+@inbook{Greenberger1989,
+ AUTHOR = {D.M. Greenberger and M.A. Horne and A. Zeilinger},
+ editor = {M. Kafatos},
+ TITLE = {Bell's Theorem, Quantum Theory, and Conceptions of the Universe},
+ CHAPTER = {},
+ pages = {73-76},
+ PUBLISHER = {Kluwer Academics, Dordrecht, The Netherlands},
+ YEAR = {1989},
+}
+
+@article{Chan:PRA2009,
+ volume = {79},
+ journal = {Phys. Rev. A},
+ author = {Chan, Kam Wai Clifford and O'Sullivan, Malcolm N. and Boyd, Robert W.},
+ year = {2009},
+ title = {Two-color ghost imaging},
+ pages = {033808}
+}
+
+@article{OSullivan:PRA2010,
+ volume = {82},
+ journal = {Phys. Rev. A},
+ author = {O'Sullivan, Malcolm N. and Chan, Kam Wai Clifford and Boyd, Robert W.},
+ year = {2010},
+ title = {Comparison of the signal-to-noise characteristics of quantum versus thermal ghost imaging},
+ pages = {053803}
+}
+
+@article{Dur2000,
+author = {D\"{u}r, W. and Vidal, G and Cirac, J I},
+journal = {Physical Review A},
+pages = {062314},
+title = {{Three qubits can be entangled in two inequivalent ways}},
+volume = {62},
+year = {2000}
+}
+
+@article{Gatti:PRL2009,
+ author = {Gatti, A. and Brambilla, E. and Caspani, L. and Jedrkiewicz, O. and Lugiato, L. A.},
+ volume = {102},
+ journal = {Phys. Rev. Lett.},
+ title = {$X$ Entanglement: The Nonfactorable Spatiotemporal Structure of Biphoton Correlation},
+ year = {2009},
+ pages = {223601}
+}
+
+@article{Keller1997,
+author = {Keller, T. E. and Rubin, M. H.},
+issn = {1050-2947},
+journal = {Physical Review A},
+month = aug,
+number = {2},
+pages = {1534--1541},
+title = {{Theory of two-photon entanglement for spontaneous parametric down-conversion driven by a narrow pump pulse}},
+volume = {56},
+year = {1997}
+}
+
+
+@article{Assis2011,
+author = {de Assis, P.-L. and Carvalho, M. A. D. and Berruezo, L. P. and Ferraz, J. and Santos, I. F. and Sciarrino, F. and P\'{a}dua, S.},
+journal = {Optics Express},
+number = {4},
+pages = {2868--2871},
+title = {{Control of quantum transverse correlations on a four-photon system}},
+volume = {19},
+year = {2011}
+}
+
+@article{Ou1988,
+author = {Ou, Z. Y. and Mandel, L.},
+journal = {Physical Review Letters},
+number = {1},
+pages = {54},
+title = {{Observation of spatial quantum beating with separated photodetectors}},
+volume = {61},
+year = {1988}
+}
+
+@article{Li2009,
+author = {Li, Xiaoying and Yang, Lei and Ma, Xiaoxin and Cui, Liang and Ou, Zhe Yu and Yu, Daoyin},
+journal = {Physical Review A},
+month = mar,
+number = {3},
+pages = 033817,
+title = {{All-fiber source of frequency-entangled photon pairs}},
+volume = {79},
+year = {2009}
+}
+
+@article{Simon2000,
+author = {Simon, C and Weihs, G and Zeilinger, A},
+journal = {Physical review letters},
+month = mar,
+number = {13},
+pages = {2993--6},
+pmid = {11018994},
+title = {{Optimal quantum cloning via stimulated emission}},
+volume = {84},
+year = {2000}
+}
+
+@article{Kok2000,
+author = {Kok, Pieter and Braunstein, Samuel L.},
+journal = {Physical Review A},
+month = mar,
+number = {4},
+pages = 042304,
+title = {{Postselected versus nonpostselected quantum teleportation using parametric down-conversion}},
+volume = {61},
+year = {2000}
+}
+
+
+
+@article{DiLorenzoPires2009,
+author = {{Di Lorenzo Pires}, H. and Monken, C. and van Exter, M. P.},
+journal = {Physical Review A},
+month = aug,
+number = {2},
+pages = 022307,
+title = {{Direct measurement of transverse-mode entanglement in two-photon states}},
+volume = {80},
+year = {2009}
+}
+
+
+@article{DAngelo2004,
+author = {D'Angelo, Milena and Kim, Yoon-Ho and Kulik, Sergei and Shih, Yanhua},
+journal = {Physical Review Letters},
+month = jun,
+number = {23},
+pages = 233601,
+title = {{Identifying Entanglement Using Quantum Ghost Interference and Imaging}},
+volume = {92},
+year = {2004}
+}
+
+@article{Eisaman2011,
+author = {Eisaman, M. D. and Fan, J. and Migdall, a. and Polyakov, S. V.},
+journal = {Review of Scientific Instruments},
+number = {7},
+pages = {071101},
+title = {{Invited Review Article: Single-photon sources and detectors}},
+volume = {82},
+year = {2011}
+}
+
+@article{Hadfield2009,
+author = {Hadfield, Robert H.},
+journal = {Nature Photonics},
+month = dec,
+number = {12},
+pages = {696--705},
+publisher = {Nature Publishing Group},
+title = {{Single-photon detectors for optical quantum information applications}},
+volume = {3},
+year = {2009}
+}
+
+@article{Ou1999,
+author = {Ou, Z. Y. and Rhee, J. K. and Wang, L. J.},
+journal = {Physical Review Letters},
+month = aug,
+number = {5},
+pages = {959--962},
+title = {{Observation of Four-Photon Interference with a Beam Splitter by Pulsed Parametric Down-Conversion}},
+volume = {83},
+year = {1999}
+}
+
+
+@article{Law2004,
+author = {Law, C. K. and Eberly, J. H.},
+journal = {Physical Review Letters},
+month = mar,
+number = {12},
+pages = 127903,
+title = {{Analysis and Interpretation of High Transverse Entanglement in Optical Parametric Down Conversion}},
+volume = {92},
+year = {2004}
+}
+
+@article{Friberg1985,
+author = {Friberg, S. and Hong, C. K. and Mandel, L.},
+journal = {Physical Review Letters},
+number = {18},
+pages = {2011},
+title = {{Measurement of Time Delays in the Parametric Production of Photon Pairs}},
+volume = {54},
+year = {1985}
+}
+
+@article{O'Sullivan-hale2005,
+author = {O'Sullivan-hale, Malcolm N and Khan, Irfan Ali and Boyd, Robert W and Howell, John C},
+journal = {Physical Review Letters},
+number = {June},
+pages = {220501},
+title = {{Pixel Entanglement: Experimental Realization of Optically Entangled d = 3 and d = 6 Qudits}},
+volume = {94},
+year = {2005}
+}
+
+@article{Walborn2010,
+author = {Walborn, S.P. and Monken, C.H. and P\'{a}dua, S. and {Souto Ribeiro}, P.H.},
+journal = {Physics Reports},
+month = oct,
+number = {4-5},
+pages = {87--139},
+publisher = {Elsevier B.V.},
+title = {{Spatial correlations in parametric down-conversion}},
+volume = {495},
+year = {2010}
+}
+
+@article{Howell2004,
+author = {Howell, John C. and Bennink, Ryan S. and Bentley, Sean J. and Boyd, R. W.},
+journal = {Physical Review Letters},
+month = may,
+number = {21},
+pages = 210403,
+title = {{Realization of the Einstein-Podolsky-Rosen Paradox Using Momentum- and Position-Entangled Photons from Spontaneous Parametric Down Conversion}},
+volume = {92},
+year = {2004}
+}
+
+@article{Strekalov1995,
+author = {Strekalov, DV and Sergienko, AV and Klyshko, DN},
+journal = {Physical review letters},
+number = {18},
+pages = {3600--3603},
+title = {{Observation of Two-Photon "Ghost" Interference and Diffraction}},
+volume = {74},
+year = {1995}
+}
+
+@article{Shi2006,
+author = {Shi, B. -S. and Tomita, a.},
+journal = {Journal of Modern Optics},
+month = may,
+number = {7},
+pages = {1003--1009},
+title = {{Four photons interfering but showing the two-photon interference behaviour}},
+volume = {53},
+year = {2006}
+}
+
+@article{Marcikic2002,
+author = {Marcikic, I. and de Riedmatten, H. and Tittel, W. and Scarani, V. and Zbinden, H. and Gisin, N.},
+journal = {Physical Review A},
+month = dec,
+number = {6},
+pages = {062308},
+title = {{Time-bin entangled qubits for quantum communication created by femtosecond pulses}},
+volume = {66},
+year = {2002}
+}
+
+@article{Riedmatten2004,
+author = {Riedmatten, Hugues De and Scarani, Valerio and Marcikic, Ivan and Ac\'{\i}n, Antonio and Tittel, Wolfgang and Zbinden, Hugo and Gisin, Nicolas},
+journal = {Journal of Modern Optics},
+month = jul,
+number = {11},
+pages = {1637--1649},
+title = {{Two independent photon pairs versus four-photon entangled states in parametric down conversion}},
+volume = {51},
+year = {2004}
+}
diff --git a/Master/texmf-dist/doc/latex/lion-msc/AlexanderPRA.tex b/Master/texmf-dist/doc/latex/lion-msc/AlexanderPRA.tex
new file mode 100644
index 00000000000..955eddc6a7b
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/lion-msc/AlexanderPRA.tex
@@ -0,0 +1,111 @@
+\chapter{Spatially entangled 4-photons states from a periodically poled KTP crystal}
+
+\framebox[\textwidth]{
+\begin{minipage}[b]{.75\textwidth}
+\vskip 0.5em
+The contents of this chapter serve as an example and are based on a scientific paper published as Phys. Rev. A {\bf 85}, 043837 (2012). This article contains results from the master thesis of Alexander J.H. van der Torren. The results and data analysis of the original master theses have been reproduced, extended and improved by S. Cigdem Yorulmaz at a later stage.
+\vskip 0.5em
+\end{minipage}
+}
+
+\vskip 2em
+
+Photon pairs produced via spontaneous parametric down-conversion (SPDC) in a non-linear crystal give rise to strong nonclassical correlations. The resulting entangled photons are an important resource in quantum information, fundamental tests of quantum mechanics and have been used in experiments that demonstrate the violation of Bell's inequality, quantum teleportation and quantum communication. While most experiments focus on discrete polarization entanglement, quantum states of two particles that are entangled in continuous variables~\cite{Braunstein:RMP2005} such as frequency~\cite{Ou1988,Li2009}, time-bin~\cite{Friberg1985,Ou1999,Riedmatten2004} or photon momenta~\cite{Strekalov1995,Law2004,Howell2004,Walborn2010} are also possible, which gives access to high-dimensional entanglement that can be explored by measuring correlations between two photons.
+
+In this article, we focus on spatial entanglement using photon momenta as a continuous variable. Unlike other forms of continuous variable entanglement, the quantum correlations in spatial entanglement can be resolved with relative ease and high resolution by using a combination of lenses and apertures only. The low conversion efficiency in non-linear crystals combined with the long coherence time of a continuous wave pump and ultrashort coherence time of the photon pairs ensure that most experiments are well described by two-photon interference of individual pairs~\cite{Walborn2010}. As a consequence, spatial entanglement with more than two photons has remained elusive and spatial correlations beyond independent photon pairs have not been addressed in an experiment~\cite{Assis2011}. These multi-photon states are of interest since they provide access to non-trivial entanglement between more than two particles~\cite{Greenberger1989,Dur2000}. Furthermore, the generation rate of four photon states sets fundamental limits on the visibility achievable in two-photon interference experiments~\cite{Marcikic2002} and the maximum attainable key generation rate in quantum key distribution protocols.
+
+Here we investigate events where four spatially entangled photons are generated by SPDC. These four photons can either be two independent pairs, or they may all be in the same set of spatial and temporal modes to create a true four-photon state~\cite{Ou1999,Riedmatten2004}. The production of these four photon states is enhanced by the physical process of stimulated emission of a second photon pair into the same optical mode as the first pair. In the ideal situation of a single temporal and spatial mode, stimulated emission enhances the pair production rate by a factor of two compared to the probability to generate four photons in the same mode via two independent spontaneous processes. For a multi-mode situation, the relative importance of the stimulated emission process is given by a ``visibility'' $\chi$ that ranges from 0 to 1.
+
+The distinction between two independent pairs and four-photon states has been addressed in the time-domain using time-bin entanglement with a pulsed laser source~\cite{Ou1999,Riedmatten2004}. These experiments are restricted to a single spatial mode and therefore do not allow use of spatial degrees of freedom to explore the process of stimulated emission. The total number of modes is then given by the available temporal modes and is directly related to the frequency bandwidth of the SPDC light as compared to the frequency bandwidth of the pulsed laser source~\cite{Riedmatten2004}. To directly resolve the underlying mode structure requires a measurement of quantum correlations within a single laser pulse. Such a direct measurement of the arrival time would require detectors with high quantum efficiency and sub-picosecond timing resolution, which is well outside reach of current single-photon detector technology~\cite{Hadfield2009,Eisaman2011}. Instead, we use spatially entangled multi-photon states that allow us to resolve the fine structure of stimulated pairs emitted in a single laser pulse in a straightforward way. Using pinholes the momentum resolution in the far-field of the SPDC source may be made arbitrarily high. In an experiment, there is always a trade-off between the size of the pinhole and the collected signal, which sets the time required to measure coincidence rates to a sufficient level of accuracy.
+
+\section{Stimulated emission of spatially entangled 4-photon states}
+
+The downconversion process in the PPKTP crystal that generates photon pairs in $N$ spatial modes can be described by an interaction Hamiltonian of the SPDC process given by~\cite{Simon2000,Kok2000}:
+\begin{equation}
+H = \kappa \sum_{i}^N a^\dagger_{\vec{q_i}} a^\dagger_{\vec{-q_i}} + \mathrm{h.c.},
+\end{equation}
+where $a^\dagger_{\vec{q_i}}$ is the creation operator that creates a single photon in a spatial mode labeled by the transverse wavevector $\vec{q_i}$. The operator $a^\dagger_{\vec{q_i}} a^\dagger_{\vec{-q_i}}$ thus creates a pair of photons that is correlated in their transverse photon momenta and forms the basis for spatial entanglement. The parameter $\kappa$ describes the strength of the non-linear interactions and contains, among others, the (time-dependent) field of the pump and the effective non-linearity of the PPKTP crystal. For our purpose, where we pump the crystal with an intense pulsed laser, $\kappa$ can be assumed to be a classical quantity. The corresponding wavefunction of the state generated by SPDC can be directly obtained from the Hamiltonian:
+$$
+\ket{\Psi} = \exp(-i H \frac{t}{\hbar}) \ket{0} \approx (1-\frac{i t}{\hbar} H - \frac{t^2}{2 \hbar^2} H^2) \ket{0},
+$$
+where we limited the Taylor expansion in the last step to exclude quantum states with more than 4 photons. The linear term in the Taylor expansion creates a state $\ket{\Psi_2}$ that consists of a superposition of a single photon pair in any of the available spatial modes:
+$$
+\ket{\Psi_2} = \frac{- i t}{\hbar}H \ket{0} = \frac{- i \kappa t}{\hbar} \sum_{i=1}^N \ket{1_{\vec{q_i}};1_{\vec{-q_i}}}.
+$$
+Please note that we use a shorthand notation in which we leave out all spatial modes without a photon. The spatial modes that contain photons are numbered by the number of photons in that mode and the subscript refers to the transverse photon momentum of that mode. The quadratic term gives rise to a state $\ket{\Psi_4}$ with 4 photons that contains all double pair contributions, which can be represented using the same notation~\cite{Riedmatten2004} as
+\begin{eqnarray*} \ket{\Psi_4} & = & \frac{- \kappa^2 t^2}{2 \hbar^2} \bigg( 2 \sum_{i=1}^N \ket{2_{\vec{q_i}};2_{\vec{-q_i}}} + \\ & & \sum_{i=1}^N \sum_{j=1, i \neq j}^{N} \ket{1_{\vec{q_i}},1_{\vec{q_j}};1_{\vec{-q_i}},1_{\vec{-q_j}}} \bigg).
+\end{eqnarray*}
+The effect of stimulated emission follows directly from the creation operators and is contained in the extra factor $\sqrt{2}$ when two photon pairs are created in the same spatial mode.
+
+A measurement of a single photon in a particular spatial mode with wavevector $\vec{q_i}$ determines the wavevector of the twin photon and corresponds to a state projection: $a_{\vec{q_i}}\ket{\Psi}$. The state projection allows us to calculate the probabilities of creating a single photon pair $P_2$ as well as the probability $P_4$ to create a state with 4 photons in the same mode. For a single spatial and temporal mode, the probability $P_4$ is exactly equal to $P_2^2$ and is thus enhanced by a factor 2 compared to stimulated emission of two photon pairs in the same spatial modes. In a situation with more than one spatial mode, which is of interest here, stimulated emission enhances the probability $P_4$ by a factor $(1+\chi)$, where $\chi$ is a ``visibility'' from 0 to 1 that quantifies the extra contribution to the 4 photon states due to stimulated emission. The probability to create a 4 photon state with the photons in the same mode can then be expressed as~\cite{Riedmatten2004}:
+\begin{equation}
+P_4 = \frac{P_2^2}{2} (1+\chi).
+\end{equation}
+
+\section{Experimental investigation of 4-photon quantum correlations}
+
+\subsection{Experiment}
+
+\begin{figure}[tbp]
+\centering \includegraphics[width=120mm]{Fig1.png}
+\caption{(Color online) Setup to measure spatially entangled 4-photon states via parametric downconversion in a 2 mm PPKTP crystal. UV pump pulses from a frequency doubled Ti:Sapphire laser are focused by lens L1 ($f_1$~=~250~mm). Photons are collected by the lenses $L2$ ($f_2$~=~270~mm) and detected by the detector assemblies $D1-D3$ that use photon counting APDs to detect single photons in a particular direction defined by the apertures $A$ placed in the combined focal planes of $L2$ and $L3$ ($f_3$~=~4.5~mm). The beamsplitter, $BS$, allows to record if two photons are in the same spatial mode. To this end detector assemblies $D1$ and $D2$ are placed on computer controlled translation stages. Correlations in the coincidence events are due to 4-photon states that are created by the process of stimulated emission of photon pairs.} \label{Fig:setup}
+\end{figure}
+
+Figure~\ref{Fig:setup} depicts the setup to explore the spatial quantum correlations due to stimulated emission of pairs in a four-photon state. In order to get a non-negligible rate of double pairs we use a highly efficient, 2 mm long, periodically poled KTP (PPKTP) crystal~\cite{Peeters2008} pumped by $\sim$100 mW of 413.2 nm pulsed laser light. The pulsed laser in our setup produces 2 ps pulses and is focussed into the PPKTP crystal using a lens $L1$, with a focal length $f$ of 250~mm. The source creates non-colinear, frequency degenerate photon pairs at a wavelength of 826.4 nm that are filtered by a bandpass filter $F$ and collected by lenses $L2$ ($f$~=~270~mm). Three detector assemblies $D1-D3$ are used to collect single photons with a well-defined momentum. Each of these assemblies consists of a lens $L3$ ($f_3$~=~4.5~mm), an aperture $A$ placed in the far-field to select the photon momentum and a (multi-mode) fiber-coupled single photon counting avalanche photodiode (Perkin-Elmer SPCM-AQ4C). The mode diameter of the fiber used in the experiments is $50$~$\mu$m and lenses $L2$ and $L3$ provide a 60$\times$ magnification factor. Coincidence detection with a $\sim$1.7~ns coincidence window between the detectors $D1$ and $D3$ (or $D2$ and $D3$) results in a measurement of spatial entanglement of single pairs. The beamsplitter, $BS$, allows us to record coincidence events between detectors $D1$ and $D2$ that are due to two photons from different pairs. To record the spatial correlations both detector assemblies $D1$ and $D2$ are placed on computer controlled translation stages that allow movement in the $x$ and $y$ directions transverse to the optical beam.
+
+The essential feature of the setup is that it allows us to distinguish a genuine 4-photon state from two independent pairs by detecting coincidences between two photons in the same arm, as was introduced earlier for 4-photon states in the time-domain~\cite{Riedmatten2004}. In this setup only the 4-photon states created by stimulated emission generate strong correlations between detectors $D1$ and $D2$, while double pair states do not create any special correlations.
+
+The length of the 2~ps laser pulse is a compromise between a short laser pulse to select a single temporal mode on the one hand and a somewhat longer laser pulse to retain efficient SPDC on the other hand. For a very short laser pulse the photons are created at a well-defined time, but the SPDC process becomes inefficient due to the broad spectral content of the laser pulse. In our study, the combination of the pulse duration and the bandpass filter selects $\sim$3 temporal modes, leading to a maximum possible visibility $\chi$=0.5 for a single spatial mode. The choice of the pulse duration and the length of the crystal was motivated by the group velocity walk-off length $L_g$ = 1.5 mm, calculated for transform-limited pulses, being comparable to the crystal length. Under those conditions, the phase-matching in the crystal is only mildly affected by the pulsed laser and all frequency components of the laser pulse contribute to the efficient generation of SPDC light.
+
+% I calculated the GV walk-off length as \tau/|D|, with d=0.4/c and \tau=2 ps.
+
+\subsection{Quantum correlations at the two-photon level and number of Schmidt modes}
+
+\begin{figure}[tbp]
+\centering \includegraphics[width=120mm]{Fig2.png}
+\caption{(Color online) Measured single count rates $R_2$ (open symbols) and 2-fold coincidence rates $R_{23}$ (filled symbols) as a function of position $x_2$, demonstrating spatial correlations in the two-photon field. The pulsed laser beam was focused in the center of the crystal using a $f$~=~250~mm lens. Data are collected using a 1 nm FWHM bandpass filter and a 1.5~mm aperture in the far-field. The solid and dashed lines indicate Lorentzian and Gaussian fits to the single and coincidence rates, respectively. The inset shows a far field image of the SPDC light emitted by the PPKTP crystal at a temperature of 20~$^\circ$C. The approximate positions of detectors D2 and D3 are shown by circles on the ring.} \label{Fig:2photons}
+\end{figure}
+
+Figure~\ref{Fig:2photons} shows the measured coincidence rate between detectors $D2$ and $D3$ (solid symbols, left axis) as a function of the position $x_2$ of detector $D_2$. Detector assembly $D_3$ is positioned at a fixed position and collects photons at an angle of -50 mrad in the far-field of the source. The measured coincidences, corrected for accidental events, are compared to the measured single count rate on detector $D2$ (open symbols, right axis). The measured single count rate on detector $D_3$ is $\sim3\cdot10^{5}$~$s^{-1}$ and is constant throughout the experiment.
+
+The single count rate as a function of detector position is well described by a Lorentzian fit (solid line) centered at a position of 50$\pm$5~mrad and a width of 14.9$\pm$0.5~mrad FWHM. Please note that the uncertainty in the stated center position is due to the fact that it is difficult to determine the absolute position of lens $L2$ on the optical table. The characteristic minima of the $\mathrm{sinc}^2$ phase-matching curve commonly observed under continuous wave pumping are 'averaged' out by the multiple frequencies available in the spectrum of the picosecond pulsed laser~\cite{Keller1997}. The measured two-fold coincidence rate as a function of the position $x_2$ of the detector is well described by a Gaussian (dashed line) with a width (FWHM) of 5.1$\pm$0.1~mrad, and a center position of 50$\pm$5~mrad. The observation that the peak in coincidence rate is much narrower than the measured singles is a clear signature of two-photon correlations in a high-dimensional Hilbert space. The ratio of the width of the singles versus the coincidences is a direct measure of the Schmidt number $K_r$ of the (radial) spatial entanglement generated in the PPKTP crystal~\cite{DiLorenzoPires2009}. Based on the measured width of the coincidence and singles peak, we estimate a Schmidt number $K_{exp}$~$\approx$~2.9$\pm$0.1 for the pulsed laser. This estimate should be converted to a two-dimensional Schmidt number in order to compare this number to values given in literature for continuous wave pumping.
+
+To this end, we introduce a second azimuthal Schmidt number $K_\phi$, being the ratio of the circumference of the SPDC ring, i.e. 2$\pi \times$50~mrad, over the measured width of the coincidence peak. This results in $K_\phi$~$\approx$60$\pm$6 and a corresponding Schmidt number $K$~=~$K_r K_\phi$~$\approx$~175$\pm$20. This number should be compared to calculated values~\cite{Law2004} and experimental values obtained for a 5.0~mm crystal pumped by a continuous wave laser~\cite{DiLorenzoPires2009}. The value of $K$ from ref.~\cite{DiLorenzoPires2009} for strongly negative phase mismatch (i.e. an open SPDC ring) was scaled to our case by taking into account the differences in pump beam waist and crystal length. Based on this, we expect a two-dimensional Schmidt number of $\sim$125. This value is somewhat lower than the value stated above, which we attribute to the fact that we neglected the effect of the pulsed laser on the width of the SPDC ring. The pulsed laser contains many pump frequencies which gives a slightly broader ring and consequently causes an overestimate of the value of $K_r$.
+
+\subsection{Observation of quantum correlations of 4-photon states in the spatial degrees of freedom}
+
+To explore the contribution of stimulated emission we measure the coincidence rate $R_{21}$ between detectors $D1$ and $D2$. Coincidences can only be registered if at least four photons are generated by a single photon pulse, since only one-photon in each pair produced by SPDC can be detected. The measured coincidence rate for photons originating from the same pulse contains both stimulated and spontaneous events. To get a measure of the number of coincidences due to spontaneous emission we introduce a tunable electronic delay between detectors $D1$ and $D2$. This allows a measurement of the coincidences in the same laser pulse ($R_{21}^{0\mathrm{ns}}$) as well as the coincidence events between subsequent laser pulses by setting the electronic delay to 12~ns ($R_{21}^{12\mathrm{ns}}$). This latter coincidence rate is dominated by events where a single pair is produced in each of the laser pulses and the coincidence rate $R_{21}^{12\mathrm{ns}}$ thus represents only the coincidence rate due to two spontaneously emitted photon pairs.
+
+\begin{figure}[tbp]
+\centering \includegraphics[width=87mm]{Fig3a.png} \\
+\centering \includegraphics[width=87mm]{Fig3b.png}
+\caption{(Color) Measured joint spatial distribution of stimulated pair emission. (a) False-color plot of the measured difference in coincidence rate $(R_{21}^{0\mathrm{ns}} - R_{21}^{12\mathrm{ns}})$ as a function of the positions of $x_1$ and $x_2$ of detectors $D_1$ and $D_2$. Data are collected with a 5~nm FWHM bandpass filter and a 1.5~mm aperture size. The observed maximum coincidence rate $(R_{21}^{0\mathrm{ns}}$ is typically 25,000~s$^{-1}$. The data clearly demonstrate that stimulated pair emission occurs when the photons are emitted in the same spatial mode, i.e. when $x_1$~=~$x_2$. (b) Visibility $\chi$ of the 4-photon state as a function of position $x_2$. The different symbols (triangles, circles, squares) correspond to different positions $x_1$ (44.4, 50.0, 55.6~mrad) of detector $D_1$. Data are collected using a 1~nm FWHM bandpass filter and a 1.5 mm aperture. The solid lines through the data are Gaussian fits.}\label{Fig:4photon}
+\end{figure}
+
+The difference in these coincidence rates, normalized by the coincidence rate due to spontaneous events is equal to the ``visibility'' $\chi$, i.e. $\chi = (R_{21}^{0\mathrm{ns}} - R_{21}^{12\mathrm{ns}})/R_{21}^{12\mathrm{ns}}$ and is a good measure of the extra events due to stimulated emission of 4-photon states. The measured visibility as a function of the position of the two detectors, $\chi(x_1,x_2)$, can be interpreted as a joint spatial density of stimulated pair emission. This joint spatial distribution of stimulated pair emission is depicted in Fig~\ref{Fig:4photon}. The false colour image in Fig.~\ref{Fig:4photon}a shows the difference in coincidence rate $(R_{21}^{0\mathrm{ns}} - R_{21}^{12\mathrm{ns}})$ as a function of the position $x_1$ and $x_2$ of detectors $D1$ and $D_2$ using a 5~nm bandpass filter for the SPDC light. The image is centered around the point $x_1$~=~$x_2$~=~50~mrad and clearly shows the expected positive correlation due to stimualted emission of the 4-photon state that leads to extra coincidences whenever the two detectors detect photons in the same optical mode, i.e. when $x_1$~=~$x_2$. The width (FWHM) of the peak along the diagonal ($x_1-x_2$~=~0~mrad) is 11.5$\pm$0.3 mrad, while the width along the anti-diagonal direction ($x_1+x_2$~=~100~mrad) is 4.5$\pm$0.1 mrad.
+
+Figure~\ref{Fig:4photon}b shows the visibility $\chi(x_1,x_2)$ as a function of position $x_2$ of detector $D2$ for a fixed position of detector $D1$. The three curves correspond to $x_1$~=~44.4~mrad (triangles), 50.0~mrad (circles) and 55.6~mrad (squares). These data are taken with a 1~nm bandpass filter for the SPDC light in order to enhance the visibility at the expense of a much lower count rate. The narrow band frequency filter lowers the number of temporal modes involved, but does not affect the spatial modes. The integration time per point was increased by repeated scanning of the detector in the $x_2$ direction. Because the phase-mismatch of the PPKTP crystal that governs the SPDC process depends weakly on laser power, the long term stability of the laser becomes important. In order to correct for this effect we also monitor the single counts on the detector $D2$ as a function of position $x_2$ and exclude scans from our analysis where the SPDC ring appears shifted. The solid lines through the data are Gaussian fits to the data with a FWHM width of 8.9$\pm$0.3. The peak positions are shifted to the position of detector $D1$, such that the peak of the Gaussian appears at $x_1$~=~$x_2$. The obtained peak visibilities for the three curves are 0.13$\pm$0.01, 0.16$\pm$0.01 and 0.12$\pm$0.01. For a uniform illumination of the aperture one would expect the peak visibility to be independent of the position $x_1$. This case corresponds to a situation where the width of the SPDC ring, as given by the phase-matching function, is much larger than the shift in position $x_1$. In our experiment the slightly lower visibility for $x_1$~=~44.4 and 55.6~mrad is caused by the finite diameter of the 1.5~mm aperture that captures a non-uniform part of the SPDC ring. For larger apertures (data not shown) this decrease in visibility indeed becomes more significant.
+
+The visibility in our experiment is limited by both the number of temporal modes collected as well as by the ratio of the total number of spatial modes available over the number of spatial modes collected by the aperture. The total number of temporal modes generated is given by the frequency bandwidth of the SPDC light as compared to the frequency spread of the pulse. For a Fourier limited pulse shape the frequency bandwidth is related to the pulse duration via $\tau = (2 \ln(2) \lambda^2)/(/\pi c \Delta \lambda)$, where $\tau$ is the pulse duration and $\lambda/\Delta \lambda$ is the relative frequency spread. The 2~ps pulse corresponds to an equivalent spectral width of 0.5~nm, while the 2~mm PPKTP crystal produces SPDC light with a bandwidth of $\sim$40 nm FWHM. Consequently, the number of available temporal modes for a PPKTP crystal pumped by a 2~ps laser is pulse is potentially $\sim$80. We use '5 nm' and '1 nm' bandpass filters centered at 826.4 nm to limit the number of temporal modes. The measured FWHM bandwidth of these filters is 4.6~nm and 1.5~nm, which extends the coherence time of the SPDC light and limit the number of temporal modes to $\sim$9 and $\sim$3 respectively. Since $\chi$ is inversely proportional to the number of available temporal modes~\cite{Riedmatten2004}, this produces upper limits to $\chi$ of 0.1 and 0.3 for the two bandpass filters. We stress that shorter pump pulses do not necessarily lead to a higher flux of photons since the phase-matching in the 2~mm PPKTP crystal effectively filters the pump pulse. In our experiments we have carefully chosen the crystal length to maximize conversion efficiency without significantly stretching the pump pulse to avoid a non-factorable structure ('X-entanglement') between spatial and temporal degrees of freedom~\cite{Gatti:PRL2009}.
+
+\begin{figure}[tbp]
+\centering \includegraphics[width=87mm]{Fig4.png}
+\caption{(Color online) Visibility $\chi$ of the 4-photon state as a function of aperture size using a 1~nm FWHM bandpass filter (triangles) and a 5~nm FWHM bandpass filter (circles). These data are obtained by subtracting the measured coincidence rate at a delay of 12~ns from the measured coincidence rate at zero delay. Typical single count rates on the detector are $1.4\times10^6$ and $3\times10^5$ sec$^{-1}$ for apertures $>$ 2 mm and drop to $5\times10^5$ and $1\times10^5$ sec$^{-1}$ for a 1 mm aperture size. The solid lines represent a calculation with no free parameters (see text). For apertures larger than 2 mm, the aperture is limited by lens $L3$ and the numerical aperture of the fiber and the visibility saturates as indicated by the horizontal dashed lines. The inset shows the measured coincidence rate $R_{12}$ as a function of electronic delay for a 1~nm FWHM bandpass filter and a 1~mm aperture size ($\chi$~=~0.25), indicated by the arrow.}\label{Fig:Visibility}
+\end{figure}
+
+Figure~\ref{Fig:Visibility} shows the measured visibility as a function of aperture size for a 5~nm bandpass filter (circles) as compared to a 1~nm bandpass filter (triangles). Measurements were performed by measuring coincidence rates between detectors $D1$ and $D2$ at a fixed position $x_1$~=~$x_2$~=~50~mrad. A measurement of the coincidence rate as a function of the electronic time delay is shown in the inset for a point with a relatively high visibility of 0.25. The extra 50 counts/sec at zero delay are due to stimulated emission of photon pairs. Clearly, the visibility is low and nearly constant for apertures that are larger than 2~mm and rises as the number of available spatial modes is reduced by closing the aperture. In our experiments the visibility saturates at apertures sizes above 2 mm where the apertures size is limited by the finite numerical aperture of the multimode fiber in combination with the focal length of the fiber coupling lens $L3$. The saturation is represented by the horizontal dashed lines.
+
+The visibility $\chi$ in the experiment is proportional to the inverse of the number of spatial and temporal modes, i.e. $\chi \propto N_t^{-1} N_{sp}^{-1}$, where $N_t$ and $N_{sp}$ are the number of temporal and spatial modes respectively. Throughout the experiment $N_t$ is determined by the FWHM of the bandpass filter and can be considered constant. We use values of $N_t$ = 9 and $N_t$ = 3 for the two different bandpass filters. In order to estimate the number of spatial modes collected as a function of aperture size we consider the correlations between two point-like apertures at positions $\vec{r_1}$ and $\vec{r_2}$. The resulting visibility is given by:
+\begin{equation}
+\chi(\vec{r_1},\vec{r_2})=\exp(-\frac{|\vec{r_1}-\vec{r_2}|^2}{r_0^2}).
+\end{equation}
+The characteristic distance $r_0 = (\lambda f_2)/(\pi w_p)$, where $f_2$ = 270 mm is the focal distance of lens $L2$ that creates the far-field of the SPDC source and $w_p$ is the waist of the pump beam created by focussing the pump beam using lens $L1$. Using the measured waist of the pump beam of 80~$\mu$m we find a characteristic distance $r_0$~=~0.9 mm. The visibility in the experiment due to finite aperture size for two apertures centered at the same position can be found via integration:
+\begin{equation}
+ \chi (a) = \frac {1}{N_t \pi^2 a^4} \iint \chi(\vec{r_1},\vec{r_2}) \Theta(|\vec{r_1}|-a) \Theta(|\vec{r_2}|-a) \mathrm{d}\vec{r_1} \mathrm{d}\vec{r_2}, \label{vis}
+\end{equation}
+where the Heaviside step-functions $\Theta(|\vec{r_1}|-a)$ and $\Theta(|\vec{r_2}|-a)$ represent the sharp edges of the two apertures with equal radius $a$ in the far-field. The solid lines through the data in Fig.~\ref{Fig:Visibility} are the results of calculating the double integral represented by equation~\ref{vis} using 3 and 9 temporal modes for the two bandpass filters and the calculated value of $r_0$ based on the measured beam waist. The agreement between the data and the model with no adjustable parameters is striking for aperture sizes below 2 mm. For apertures above 2 mm the visibility saturates, as indicated by the horizontal dashed lines, at a value determined by lens $L3$ and the numerical aperture of the multimode fiber that limit the beam diameter to $\sim$2~mm.
+
+\section{Conclusion}
+
+In conclusion, we have demonstrated the existence of spatial correlations between photon pairs in a 4-photon state. These correlations are induced via stimulated pair emission. In our experiments we are able to separate the contribution from spontaneous parametric down-conversion and stimulated parametric down-conversion at the level of double pairs. The stimulated emission becomes important when a 2~mm long PPKTP crystal is pumped by a 2~ps pulsed laser at 413.2~nm wavelength to create frequency and polarization degenerate photon pairs at a wavelength of 826.4~nm. The spatial correlations of the stimulated photon pairs contains a rich structure when using a non-colinear geometry for the down-conversion process, which can be explored with relative ease using apertures in the far-field. In this way we present the first measurements of the joint spatial distribution of stimulated pair emission and discuss the acquired visibility. This technique opens new possibilities to explore the structure of higher-dimensional entanglement by making use of spatial degrees of freedom instead of the temporal degree of freedom. The possibility to distinguish between stimulated and spontaneous processes can be used to explore recent proposals for ghost imaging with thermal and quantum light sources\cite{Chan:PRA2009,Osullivan:PRA2010}.
+
diff --git a/Master/texmf-dist/doc/latex/lion-msc/Fig1.png b/Master/texmf-dist/doc/latex/lion-msc/Fig1.png
new file mode 100644
index 00000000000..2a5e9e07292
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/lion-msc/Fig1.png
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/lion-msc/Fig2.png b/Master/texmf-dist/doc/latex/lion-msc/Fig2.png
new file mode 100644
index 00000000000..9092fc7ddfc
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/lion-msc/Fig2.png
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/lion-msc/Fig3a.png b/Master/texmf-dist/doc/latex/lion-msc/Fig3a.png
new file mode 100644
index 00000000000..60978a322e4
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/lion-msc/Fig3a.png
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/lion-msc/Fig3b.png b/Master/texmf-dist/doc/latex/lion-msc/Fig3b.png
new file mode 100644
index 00000000000..5e531936ad6
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/lion-msc/Fig3b.png
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/lion-msc/Fig4.png b/Master/texmf-dist/doc/latex/lion-msc/Fig4.png
new file mode 100644
index 00000000000..bed1601489f
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/lion-msc/Fig4.png
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/lion-msc/README.md b/Master/texmf-dist/doc/latex/lion-msc/README.md
new file mode 100644
index 00000000000..5cda0c1dff6
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/lion-msc/README.md
@@ -0,0 +1,19 @@
+# lion-msc
+LaTeX class for B.Sc. and M.Sc. reports at Leiden Institute of Physics (LION).
+
+The purpose of this class is twofold: It creates a uniform layout of the
+student theses from our department. More importantly it contains several
+fields on the front-page that the user needs to fill that are used in the
+university administration (name, student number and name of supervisor)
+
+Students are free to change the layout of the text but should leave the
+title page as it is.
+
+The complete documentation is provided in lion-msc.pdf.
+
+The minimal.tex file is an empty template.
+
+
+author: Michiel de Dood <dood@physics.leidenuniv.nl>
+
+Copyright (C) 2014-17 by M.J.A. de Dood
diff --git a/Master/texmf-dist/doc/latex/lion-msc/lion-msc.layout b/Master/texmf-dist/doc/latex/lion-msc/lion-msc.layout
new file mode 100644
index 00000000000..a90238287c2
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/lion-msc/lion-msc.layout
@@ -0,0 +1,83 @@
+#% Do not delete the line below; configure depends on this
+# \DeclareLaTeXClass[lion-msc]{lion-msc}
+# Article textclass definition file. Taken from initial LyX source code
+# Author : Matthias Ettrich <ettrich@informatik.uni-tuebingen.de>
+# Transposed by Pascal André <andre@via.ecp.fr>
+# Heavily modifed and enhanced by serveral developers.
+
+Format 35
+Input stdclass.inc
+Input stdtitle.inc
+Input numreport.inc
+
+Sides 2
+
+#Insert TOC, roman numbers and clearplage
+TitleLatexName "pagenumbering{roman}\maketitle\tableofcontents\cleardoublepage\pagenumbering{arabic}"
+
+# Default textclass options. The user may need to modify this.
+ClassOptions
+ Other "single"
+End
+
+Style Author
+ Margin Dynamic
+ LatexType Command
+ LatexName author
+ Category FrontMatter
+ InTitle 1
+ ParSkip 0
+ BottomSep 0
+ TopSep 0
+ ParSep 0
+ Align Left
+ Font
+ Size normal
+ EndFont
+ LabelSep xx
+ LabelType Static
+ LabelString "Author"
+ LabelFont
+ Color Green
+ Series Bold
+ EndFont
+
+End
+
+Style Abstract
+ LatexType Command
+ LatexName abstract
+ InTitle 1
+ ItemSep 0.2
+ ParSep 0.3
+End
+
+Style StudentID
+ CopyStyle Author
+ LatexName studentid
+ LabelString "StudentID:"
+End
+
+Style Supervisor
+ CopyStyle Author
+ LatexName supervisor
+ LabelString "Supervisor:"
+End
+
+Style Corrector
+ CopyStyle Author
+ LatexName corrector
+ LabelString "2nd corrector:"
+End
+
+Style Coverpicture
+ CopyStyle Author
+ LatexName coverpicture
+ LabelString "CoverPicture (optional):"
+End
+
+
+Preamble
+\bibliographystyle{lion-msc}
+EndPreamble
+
diff --git a/Master/texmf-dist/doc/latex/lion-msc/lion-msc.pdf b/Master/texmf-dist/doc/latex/lion-msc/lion-msc.pdf
new file mode 100644
index 00000000000..8ef6e105b12
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/lion-msc/lion-msc.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/lion-msc/lion-msc.tex b/Master/texmf-dist/doc/latex/lion-msc/lion-msc.tex
new file mode 100644
index 00000000000..20417e778a5
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/lion-msc/lion-msc.tex
@@ -0,0 +1,282 @@
+\documentclass[twoside,single]{lion-msc}
+
+\title{The \texttt{lion-msc} document class}
+\author{Michiel de Dood}
+
+%\affiliation{Huygens-Kamerlingh Onnes Laboratory, Leiden University} % this is the default value
+%\affiliation{Instituut-Lorentz, Leiden University} % for theoretical physics
+
+%\affiliation{Huygens-Kamerlingh Onnes Laboratorium, Universiteit Leiden} % experimental physics in Dutch
+%\affiliation{Instituut-Lorentz, Universiteit Leiden} % theoretical physics in Dutch
+
+%\address{P.O. Box 9500, 2300 RA Leiden, The Netherlands} % default address - uncomment if need be
+
+% \newdate{date}{\day}{\month}{\year} % definition of time and date using datetime package
+%\newdate{date}{27}{08}{2010}
+%\date{\displaydate{date}}
+
+%\studentid{19750118} % check you student ID, LaTeX does not do this
+%\abstract{Here goes a wonderful abstract.} % limit your self to 1/2 page or 500 words
+%\supervisor{Jan Aarts} % Note that this should be a LION staff member!
+%\corrector{to be defined} % This could be a LION staff member or your external supervisor
+
+%\degree{Master of Science} % The default option is "Bachelor of Science", change if needed
+
+%\major{Physics and Astronomy} % The default option is "Physics", change if needed
+%\major{Physics and Mathematics}
+
+% optional cover picture - should be jpg or pdf
+\coverpicture{\includegraphics[width=13cm]{thesisstyle.jpg}}
+
+% Use this to make hyperlinks visible in the document.
+% \hypersetup{colorlinks=true}
+
+% ---------------------------------------------------------------- My defintions!
+% \renewcommand{\vec}[1] {\ensuremath{ \overrightarrow{ #1 } }}
+\renewcommand{\vec}[1] {\ensuremath{ \mathbf{ #1 } }}
+% \bra \ket \braket and \proj
+\newcommand{\bra}[1]{\ensuremath{\langle #1 \vert}}
+\newcommand{\ket}[1]{\ensuremath{\vert #1 \rangle}}
+\newcommand{\braket}[2]{\ensuremath{\langle #1 \vert #2 \rangle}}
+\newcommand{\proj}[1]{\ensuremath{\vert #1 \rangle \langle #1 \vert}}
+
+\newcommand{\kpar}{\ensuremath{k_\parallel}}
+% ----------------------------------------------------------------
+
+% \usepackage{tocloft}
+% \renewcommand{\cftchapdotsep}{\cftdotsep}
+
+\begin{document}
+
+% roman numbering in the table of contents section
+\pagenumbering{roman}
+
+\maketitle
+
+% Table of contents : it is a good idea to include this into your thesis
+\tableofcontents
+\cleardoublepage
+
+% The following list of figures and list of tables are optional. Remove the comments if needed
+%\listoffigures
+%\newpage
+
+%\listoftables
+%\newpage
+
+% in the main part of the document use standard arabic numbers. Page counter resets to 1.
+\pagenumbering{arabic}
+
+\chapter{Description of the document class \textrm{lion-msc}}
+
+This chapter describes the \textrm{lion-msc} document class. The aim of this document class is to assist staff, students and the university administration with the creation of bachelor and master theses. By using this document class we create a document that has a first page that contains all required information such as title, author, student ID, supervisor, second corrector etc.
+
+Some of the compulsory features are standardized, many other have default values. More experienced \LaTeX users can easily modify the feel and look of the document, but should try not too modify the first pages of the thesis. This is the page that should be handed in to the university administration that keeps this on file together with the grade given by the staff member of the physics department.
+
+At a later stage all bachelor and master theses will be placed in an online repository that is, in principle, publicly available. This repository will look better (more professional) if the first pages and layout of theses is similar.
+
+The use of a specialized document class is a method that is used by many scientific journals to ensure that all submitted articles contain all necessary information. Publishers only accept articles that are typeset according to certain rules. \LaTeX style files and templates are often provided to help authors to comply with the style of the journal.
+
+Currently the document class is still under active development and will be improved. If you use this style to typeset your thesis please do check frequently for updates of the files \textrm{lion-msc.cls} and the associated bibliography style file \textrm{lion-msc.bst}.
+
+\section{Getting Started}
+
+Unzip the zip file into a directory and start with the file minimal.tex. On most systems this should compile if you have the 'lion-msc.cls' file and 'minimal.tex' in the same working directory. 'lion-msc' is based on the report class and any valid option for a report can be passed onto lion-msc. In addition, lion-msc uses several additional packages. Most modern \LaTeX systems have features that allow you to automatically get missing files if your computer is connected to the internet.
+
+A minimal \LaTeX document that should compile with pdf\LaTeX is the following (I called this file 'minimal.tex')
+
+\begin{verbatim}
+\documentclass[twoside,single]{lion-msc}
+
+\title{Title}
+\author{A. Uthor}
+
+\begin{document}
+
+\maketitle
+
+\chapter{Chapter 1}
+
+Here you type the text for the first chapter of
+your thesis.
+
+\end{document}
+\end{verbatim}
+
+If problems arise at this point check if you compile \LaTeX directly to pdf. The older route that converts tex files to dvi files and then to postscript is not supported. It is very unlikely that this will be supported in the future.
+
+If problems persist check if you have all necessary files in the right location, most notably 'lion-msc.cls' and 'logo-leidenuniv.pdf'. If you placed the files in some standard location for your tex installation make sure that your installation knows about these files. A quicker, more fail-safe way around this is to place these files in the same working directory as the \LaTeX file that you are trying to compile.
+
+Once you have made these steps take a look at lion-msc.tex as it contains a more complete template that shows how to use the lion-msc documentclass.
+
+\subsection{Files in this package}
+
+The files included with this package are the following:
+
+\vskip 1em
+
+\begin{tabular}{l l}
+\hline
+\textbf{lion-msc.cls} & documentclass file \\
+\textbf{logo-leidenuniv.pdf} & PDF file with logo of Leiden University. \\
+ & This file is required by the document class \\
+\textbf{lion-msc.bst} & bibliography style file that can be used with bibtex \\
+\textbf{lion-msc.layout} & layout file used for integration with LyX environment \\
+\textbf{minimal.tex} & Minimal \LaTeX file demonstrating the use of \\
+ & lion-msc.cls \\
+\textbf{AlexanderPRA.tex} & \LaTeX file used as an example of a Master Thesis \\
+\textbf{lion-msc.tex} & This file \\
+\textbf{lion-msc.pdf} & PDF file of the compiled version of lion-msc.tex \\
+\textbf{thesisstyle.jpg} & Image used for the cover \\
+\textbf{Fig1.png} & Figure used in AlexanderPRA.tex \\
+\textbf{Fig2.png} & Figure used in AlexanderPRA.tex \\
+\textbf{Fig3a.png} & Figure used in AlexanderPRA.tex \\
+\textbf{Fig3b.png} & Figure used in AlexanderPRA.tex \\
+\textbf{Fig4.png} & Figure used in AlexanderPRA.tex \\
+\textbf{4photon.bib} & BibTeX database file for AlexanderPRA.tex \\
+\hline
+\end{tabular}
+
+\section{List of available commands and options}
+
+This section gives an overview of special commands and options that are defined through this documentclass. You can use these to change the appearance of your thesis and to include all necessary information.
+
+\subsection{lion-msc options}
+
+Lion-msc inherits and passes its options to the report class. By default the class uses [a4paper, 12pt, fleqn]. If desired this can be passed on by including valid report class options to the options of lion-msc.
+
+\begin{tabular}{l l}
+\hline
+\textbf{double} & (default) double line spacing, useful for drafts \\
+\textbf{single} & single line spacing. This looks better in the final version \\
+\hline
+\end{tabular}
+
+\subsection{Specific lion-msc commands}
+
+With the lion-msc documentclass most of the required information is entered in the preamble of the \LaTeX document (i.e. before $\backslash$begin\{document\}). This information is made visible by using the $\backslash$maketitle command. This should be the first command after $\backslash$begin\{document\}.
+
+Note that you have to fill out the required options. If you leave these empty, instructions will appear in red on the title page. Most of these commands are quite flexible. For instance you can insert newline characters ($\backslash \backslash$) in the affiliation command. This is practical if you do a project outside LION.
+
+\begin{tabular}{l l}
+\hline
+\textbf{$\backslash$author} & (required) Defines the author \\
+\textbf{$\backslash$title} & (required) Defines the title of your thesis \\
+\textbf{$\backslash$abstract} & (required) Provide your abstract here, \\
+ & making sure that it fits on the page.\\
+\textbf{$\backslash$affiliation} & Sets the affiliation to something else than \\
+ & the default value. \\
+\textbf{$\backslash$address} & Use this to change the default address if needed. \\
+\textbf{$\backslash$studentid} & (required) enter your student ID (studentnummer) \\
+\textbf{$\backslash$supervisor} & (required) provide a valid supervisor. This should \\
+ & be a staff member of the Leiden Physics Department \\
+\textbf{$\backslash$corrector} & (required) provide the name of the 2$^{nd}$ corrector. \\
+ & This could be an external supervisor. \\
+\textbf{$\backslash$degree} & (optional) Default is "Bachelor of Science"\\
+ & Use this to change the default value. \\
+\textbf{$\backslash$major} & (optional) Default is "Physics" \\
+ & Use this to change the default value. \\
+\textbf{$\backslash$coverpicture} & (optional) Insert a cover picture on the first page \\
+ & Usage: \\
+ & $\backslash$coverpicture\{$\backslash$includegraphics[width=13cm]\{picture.jpg\}\} \\
+\hline
+\end{tabular}
+
+Note that these commands are highly flexible and a bit a \LaTeX knowledge will allow you to make all kinds of smart modifications. A common, and reasonable desire is to give credit to the PhD student or postdoc that guided you during the project. You can do this by trying the following code: \\
+$\backslash$supervisor\{PhD student $\backslash \backslash$ $\backslash$hspace*\{$\backslash$fill\}Supervisor\}.\\
+Note that you should always have a staff member from Leiden as your supervisor because this person is authorized to give you the final grade.
+
+\subsection{Packages and additional styling tips}
+
+This documentclass uses a number of standard packages, such as amsmath, amssymb for extra functions and symbols to display math and the graphicx package to display graphics in the document. It uses the natbib package to deal with references to automatically sort and compress multiple references. I do not recommend making changes to this in the document preamble. In particular the interplay between natbib and the bibliography style can give very unexpected results.
+
+The default configuration also uses the hyperref package to create a pdf with hyperlinks. The links are hidden so that the text looks normal; try clicking one of the references or in the table of contents and you will see that you are automatically brought to the appropriate reference or section.
+
+The use of packages inside the documentclass can cause an error when you try to use a package within your \LaTeX document. This typically happens when both the documentclass and your own \LaTeX document use some options. There is a $\backslash$PassOptionsToPackage command that you can use before the $\backslash$documentclass to try to pass the desired option to the package.
+
+\subsubsection{Headers with fancyhdr}
+The headers and footers on each page contain some useful info. This is done using the \verb"fancyhdr" package. You can change the appearance of these by using the $\backslash$fancyhead and $\backslash$fancyfoot commands. See the \verb"fancyhdr" documentation for details. You can also open lion-msc.cls in a text editor and look for these commands. You can place your own commands before the $\backslash$begin\{document\} command in your \LaTeX file. The grey text at the bottom with date and time is there to help you and your supervisor to keep track of the version, so that we do not end up correcting an old version. It may look somewhat strange in the final version and can be removed by using\\
+$\backslash$fancyfoot[CE,CO]\{\}.
+
+\subsubsection{Table of contents styling}
+
+Some people may want to get the original dots back into the table of contents. There is an old-fashioned way of doing this without extra packages. Insert the following in the document preamble. The separation of 4.5 is the default value and can be changed to tune the spacing between dots.
+\begin{verbatim}
+\makeatletter
+\renewcommand\@dotsep{4.5}
+\makeatother
+\end{verbatim}
+An alternative is to use the \verb"tocloft" package that offers additional styling options. Insert the following to use this package. (Suggestion by Casper Remeijer)
+\begin{verbatim}
+\usepackage{tocloft}
+\renewcommand{\cftchapdotsep}{\cftdotsep}
+\end{verbatim}
+
+\subsubsection{Subfigures}
+
+It can be quite useful to have multiple figures next to each other. This can be done with the \verb"subcaption" package. (Suggestion by Casper Remeijer)
+
+\begin{verbatim}
+\usepackage[labelformat=simple,justification=centering]{subcaption}
+\renewcommand\thesubfigure{(\alph{subfigure})}
+\end{verbatim}
+
+\subsubsection{Typesetting of units}
+
+Some people rely on a package called 'siunitx' to deal with the correct typesetting of units in the SI system. The following commands could be added
+to the document preamble. (Suggestion by Casper Remeijer)
+
+\begin{verbatim}
+\usepackage{siunitx}
+\sisetup{separate-uncertainty = true, multi-part-units = single, inter-unit-product = \ensuremath { { } \cdot { } }}
+ % use \pm symbol for uncertainty values, don't repeat the unit, unit multiplication is indicated by means of a half-height dot
+\end{verbatim}
+
+\subsubsection{Indentation of paragraphs}
+
+Some people do not like the standard LaTeX indentation at the beginning of the paragraph. This can be changed using the parskip package
+
+\begin{verbatim}
+\usepackage{parskip}
+\end{verbatim}
+
+\section{Using LyX}
+
+Some people like to use LyX as an editor because of its graphical features. I do not recommend this. The LyX files are not LaTeX and
+can only be edited and maintained by coworkers if they also install and use LyX. Conversion from LaTeX to LyX is possible, the inverse
+is not always successful. This may cost you a lot of time when you need to submit an article to a journal that want to have a LaTeX document.
+
+\subsection{Installation}
+
+In order to use the lion-msc style in LyX, the latex style should be installed systemwide. On my system I have to copy the
+\emph{lion-msc.cls} and \emph{logo-leidenuniv.pdf} file to:
+
+\begin{verbatim}
+$HOME/texmf/tex/latex/lion-msc
+\end{verbatim}
+And the \emph{lion-msc.bst} file to
+\begin{verbatim}
+$HOME/texmf/bibtex/bst/lion-msc
+\end{verbatim}
+
+For more information see:
+Help $\rhd$ Customization $\rhd$ Chapt5
+
+The next thing to do is to set the document class to a local layout and choose for the
+\emph{lion-msc.layout} file:
+
+Documents $\rhd$ Settings $\rhd$ Document Class $\rhd$ Local-layout
+
+\include{AlexanderPRA}
+
+%\appendix
+%\include{appa}
+
+\section*{Acknowledgements}
+This research was made possible by financial support from the Dutch Association for Scientific Research (NWO) and the Foundation for Fundamental Research of Matter (FOM).
+
+\bibliographystyle{lion-msc}
+\bibliography{4photon}
+
+\end{document}
+
diff --git a/Master/texmf-dist/doc/latex/lion-msc/logo_leidenuniv.pdf b/Master/texmf-dist/doc/latex/lion-msc/logo_leidenuniv.pdf
new file mode 100644
index 00000000000..841e1e8158a
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/lion-msc/logo_leidenuniv.pdf
@@ -0,0 +1,636 @@
+%PDF-1.2
+%ÐÓÔÌ
+1 0 obj
+<<
+/Type /Catalog
+/Pages 3 0 R
+/Outlines 2 0 R
+/Dests 5 0 R
+/PageMode /UseNone
+>>
+endobj
+2 0 obj
+<<
+/Type /Outlines
+/Count 0
+>>
+endobj
+3 0 obj
+<<
+/Type /Pages
+/MediaBox [ 0 0 68 79 ]
+/Count 1
+/Kids [ 6 0 R ]
+>>
+endobj
+4 0 obj
+[ /PDF /Text /ImageC ]
+endobj
+5 0 obj
+<<
+
+>>
+endobj
+6 0 obj
+<<
+/Type /Page
+/Parent 3 0 R
+/Resources << /ProcSet 4 0 R >>
+/Annots [ ]
+/Contents 7 0 R
+>>
+endobj
+7 0 obj
+<<
+/Length 9 0 R
+/Filter [ /ASCII85Decode /FlateDecode ]
+>>
+stream
+GatS#\SbqNd%#MJ"`5-0g6ZF`A-apo=Y0nDTV`l*YHNg:nf0Q7Xs%%R1Kj(NeXB-AjT#&NYFkjX,Cc
+RTZ[AYA:L9[nq=CN^^H_:]o_Eu$g?3t]q!\7C[/SC4gs7(bq!@UuW99LST;SNHf$uNSbFa(X8Zar44
+gsG&p6<3gYFgmEQN!fC=[/P9/a^kfkJ<;ddMPF$)PnXE?@7O/AX)%oLNBXsa$7%P'eQ2>rdEZKfCAF
+]99/amI(.>keMYB1U8@;6ORp$7O]tOYEpJRs\!FJkEV3H"@sgK?lGMfJIsh7!IlAAGr*c*j5IXgueh
+\;DV%g\[S7`\1T5FUrk831)D!.-T.P2B`j>c&Eet86"BD("=YBq29fQ?Ku<aC.mb$=k=NUE+H;q3IG
+b$DL#Aa0TbCNr0QIHq>73UPV.QeLjCDK0e"/WrW_47XGNLUOU4c^fs)Z(3O1T6dt/Bj'Vg2&,*CdZJ
+`s?]:-PEpNDdS&a]=D`p>aIE*.b5I[([*FJf1m<N&b<^3.qm5adaQ8M^j8+\u%o)7@SAiak[[Nq3r2
+T(e:Hh3X_lP:Rg9O>8Ws.K;S[3D6r?GGTNqC?,aEO@W_j*C7fob)?7a=6H$=p8L%K)B8A`4?e4:!%O
+]jsdQ\a'<YF.FR%WkL+@Z*4\"(Whk3o=WCamo?;Gd:p219FmC9]OS@Q0qrFU!)oUB/mhoj&at:5CWO
+7tPHgb:QkDci&7bM!d9s*XJ@rFEe2"UUtlh9eN:RLR8Om)Oe[PR[#N'<'R6o)Gt<rRLF`>j<qL/U1N
+\(l.p=22=XT,#5qDD.O.7V4931J]XV0@a,&rl+\j[[A.K&e'84@X@*!Mm&e3YBfsAI%RCQfPU1C/,X
+P8T8#+.k''!^Y339[e]N3+nbFa'Ukp!GrlF1PS9mRE\Q*JUpQRm<ak^%n(MA@lZeeX[QL?:&d\81op
+[2hS;uSo=bc:=kj\O($^"lWdaRqCF;dM,jqg=h&qQT$l6d(V<(QWpg+1Yr9P*kj=V:K]1??9Fn%U!j
+ZEm*c[cDtO=EDLo:ZfZ:(H9JT\,A,@GH)0$[8M>A?F\hiYca*EAUsCcYf;q3/R9RG([!I;jlCRWN>C
+WfZ^R0#00^2s*R.N$`9R70:Lr%Q)<mT?Z?REHmWd)\](Y[2>^F-_/](G\Ol1J>)eX%`a2H0YUkPX"6
+p3FZ=Bs4Z!9[nA8<DGSbUL@gH6&k*ib`R/ts"*9<f(8l&hm3"CE^otA)<VDIBCgs!>iPF,a5*Jt1"N
+jQOEE%]q["E0mT54!Ge`S0\+bBBcM2>XD?Hj!9W3>F]P([#%WGT`5>OHpj#!8b94s=tPM_UG??0t1p
+1\7>bi.#+cS9me;$n-+RCL)s7rK=/7X`Lj@%R<_/L,E!Fs\MU6S<"o,?MH\&![3hQJ<==HqkWPOVVt
+07id_nYB]7]eu3u8hIlkOSBdjo/?S@=]-%'%%onC!m@KZnSjj6NZ1u&ic\?K$^)D$mkI^E]jhIFK=F
+T"G5')X^rJiV"oK\nbDnh(2fPCAAh>E2;Tk&JBlMKS4P.-25g``jBI5n62B'5'2GFFFRYM/n"pZqQr
+H/)TVe"`^&Y1CX9rS5'WdD1L?-n.m"CjqN<jIW-d48$VNq^ObC@V1(/[T\!7dA#f!In7j2>K0E7:M<
+CtATPi<9R4gae,=,;IP\(gqmGICk-tBeHuF;AAOK1o=3LQ3)Saohjd1>ljosN8_`U;bS[qP1i6&Y,C
+$Ef.Hk&;&N4iL!U,@;YGq?Fl'`"[HC8i98//:^ZV_a?)A$Kt_l]ug:6(`cOP[4)K`q8`g;bQ^,Y`5#
+aM3g3%&U-4gN-f6gQq*FpY*WhTZF1b+/)DATN-M<??Z@VQ?F-QH"knXaRJNMR9Mihg`HH8sE;r8uK_
+hffIW;6QjkBWc3TH"'l#F[Ya5k\i<o]&&ClcYkDcjF9\=h:[lh&17.Q!qG*`H]CcF_LP>:RTZ/O^R=
+/c+UQFopRZFRQYC(tj#4WJ<sX*YlPeY>(n9bja9.7!YCF^YIaNiSdppZ<'B?DUZ:'k\Jjgqmhp%kB)
+n=FibB[Wh*Q-mC0!iSI[`$5?f-%gc@=LA?K#l%6m5WeM2"*fr<:hHJX5a?:ja'aEEDce)q]c@ILghY
+&fB+]JmKPa6tnk5-U%<EbDo7oS[m_-7*oA0r;Rg=jR)3/Y<J;G&X&+>?P-BCH*nG>M,'X0H@X!1Yli
+tSAULZ-TkHUD)2Rkr;<8H"uq+(a2iLh*g.BS?/@<`X)&<7e^8CYE!D59ZLmj7q4SS=+s%mcgU#h,7^
+]m#EC`%1-$K<p#P%O&42p&hF<kY*ABpgHSnV>a&Zt/BB[c`i]/n-?(%-%0o<iQ93nh!u8)[`cJH+*5
+*+<Q)kG?J;;ECFm7T_8*_pi]bQI!.fK^=XW>GC3?V\^B1&%/'&Gtq&tCI_%VSkE;GOjA`I2,k*o*3G
+9KSo_,/Y.aDM4c_0=H$E@1`NT/rVI,p\G&G/Mc=YD8)\WrCkHj?pG>dr9S[UYg`7->1koAVO5+T,mB
+Vqe@,>SdRqbd!k0?DDHBe@cI/r*>f\j$.W+91tk?Ht!NK1@`bW;$+Xejl<Io8L/E,G-QTSt!;VL19n
+u*]$2#%/ZjM;RC'Y3G82O*^b*X?_]>t.VSJHC.G;9H2;F'm@hY2,`dC4WjBU754=13HhJIdl-*pR7S
+=h+-e!:A)WRCL'g"!O>pq^eXHW'h9)WLNWeY-rjYJf-dXBrTK>2,nMnHG;\_5XlA2?"tjIlmJ\]"4?
+nr&LZ-_H*k=dc)Vfj3,'imZ=f@qohZR8*)W4(kEc@f9R;St%kM_aaC9@Qja+1Y+A:Zq"i5GEI+7g1K
+u1^?'liDpaO$G\`0Fr:?18fm@eif&gCTG_5KH6RTcl%ZG.`:i;ooIJJeBTq%Bq9NbNIFXIVkRCYCBJ
+KgH8oCMs@[#FV/1;`-oNiR>H2dMR4pH-!S?DklJTJ&JVL=G.UH+%\aSIo+i>F#reS3cFtLK`!"NL#k
+)7E#dV7P^MbcQ-Y^;sA[j>b$lPWFo:7lGiErf`R-^H,R(;K4>Vb;R$\r[HlrkAT+(Zl&=qT:]0@ZS[
+NNq(*6e^ZS^'"b6ZjuUOJbP^_:$sjLChB;10<<?)lqqH(UT@3E\;j&7"q*Am_S03m@0a&m,p;hWM.E
+Mp$!3n!9CQo:f?D(-kt'D_4$<PC3c$ijY:lW*BeN%D$rOPWdJTT+R91:joFB?,L@BH(o,OC1F6alZB
+]g`<21/oe"pCOtYnX(RXEa@qRp!CSSIO'S*$*F8t7d%##d>9pVPOYfUWjg*g!!E3!\2XRh7CKlHlE4
+0h?:]RXX]r)f#@e$<Sm8@^BA1]3'6;0%E(j*H>\_SnCXp@MLFs!?=)O-TB@1ocD*%\7lWK`!2Hgm2d
+u-/u9O6ZKY*MK4h<Fm>^mW4i/n+o_W_'Bdq\C$?TERQ_rN'@3(^Gtn:0gMZG`;Y`W,o"gDP4(j\*DU
+ZKZT<kuIZq4]Qila>6prbOPqT^=XKutX#)P$J;48XnO5NHN=Wq8]]e$aG\[5FkG9k=3.o792i.<$2[
+492shQ=Q,Ge5/8#leM!r<)Z<EH)\IP`G3q\f$^9VRonnl(]B_LP5"Opn^_`X=<:eTH#+g9=,1H+e+/
+(ig7Z?+S<Y?sG0p,Ts2F\_(KOK*XIuh/aQG%JW\YI(=L5kqRlQc%Q603,`lTi7o/_b]QJ9c[nD9>S,
+hIV$A>.(1HM/N$N7o/3AA@Q@F1RoVOaRCkqoG/sEfV[s.QO7Hai?%$V0Rs@6f+Z1So6jj&q<s7;idm
+D-Z]1;@mQ]PL5-dbq++3PpK.@=+XqP#-hYt?POW`ug76tKQ6sR2WFn_5'0L=*,WVlq5-?:F=-t=M*=
+Z3.dlQ1c)VD\"cn1P'0kskSACN3ad*F)k2i1mWgXCVTD,63kD!K)5?J-OqVYP=Ibl?.TUd]/=6Tfj5
+(n)/sURg\rMQ$N%Jr[(4'1qdhMt/E`e%]&2_ftpMR>=YO'd(Dk39JoT?BcN$-?I.fI\7H.oHWOpA*_
+3Gr/dgGrpe^JMu'9kF'gd4n0G]jIYK1WWt%IfpYMYi+,-s!,sO6a]D7=.09fL>4#=%]M(n(!1=&M>*
+q*HH]9JB3IgYi63Tq&b]:Z]\SS5ohQQJC8q"ZE2RVD&L)7/BmA<Bh?q[HbT3&&b6TZ,lOD=+XN+].#
+a#@&qicDJ8J\3i<gUPr8@6C!DD^DqJI9n%*+jN5su/O^=]3!aUa$QbFaL2coUMND"R+qV0*i&fAgdh
+04@p%gc<A;,l'B3QCud4r0;1fNI-d1,C%K%&E?MO$]_aR%LgRMV#11<`B-B%#@%H)[LFaup'iSI<#U
+*p]D*=rNu9ntCJ:ECESR"oBPU)8g^@#s@`8g9:oFe.pK^VP[9^T;@op$\t>QSeHU7kh"?^B31UPM6d
+4oDkghA-$.$cd$e-o=m8#Qq9Jf<aQ**=W=\2<)]XLjj80YZ/^6P;gqAL,&MllB#Lus/B9UHnRuKg&7
+^>hu:B3>h"i+>G1NXqPF*sd4hst'%W+?@.UR%I]k:t-7%qQPE>hh!5O1:hsT1H;@XN>0mD\T*Tnf0A
+)C4&I@Z%8aH1RpNHH`o0-Zf^28lt7`.W%E"(d`KaTZk!%$c@C-7@;LtuAPa4H7b1saFdZ.rnsNG$/i
+;tN[I=SV@r:T'-E-5Xin:HC#>[7`)WV2?'M<i1\fJfBfQ?TYSq,(4S%LLDP?`RsCsuTsQ?W.uQGL\J
+m'FhqD_jjtCKadH>W#b7a#7Ql-jm0f[2AP3?,#$a(ZIrj&2uu^[kCRNL/4s7!B]7fe'O!&)[pjuedA
+!t-iO![85#sPQ*NX=G4!J9G=Cr+``Je/c;=@tc)74X$b:)[*.-?H=i8/m\VKl%P?\"F6XmIpYuqS8j
+ltC$2L4QS?RXQo(%GLob8u/TI!*V=\h0K)b\-ZT4t!/P*HB5;f+aId3]\iUHd=c8FlNPYOlu482uaT
+<<;PqLa'N3JJrA"I\%J\QcY]7Hp"g>-#1k,%\Q-%lfZ.P2Ap-Qd,*0KBF@C4?iq-,5FYD3E8mF['67
+nT5:nLqp(,^9Q2pD4=]0%!Xh3*Vq.qF]TfsZ_G8;tH!`DH'TRJ?:M$L#pZ<PY:QKD/ds'[tML9j0<M
+?W-KYb/3Aad$<AUkeJ(d.$n$;iO[Ml0QaZ);Y4cIpCcGB<N83GEXh7Z7X-9Ad\Ks-*HK2XNfT97>7+
+p0rles&(nFWUf<-BaZX_ZD"+:>*0<H]a__)u&?%0^r'R;3p7d[pf+rH1,0+eRpF0Rg+X7R0bL,=CZP
+c$!@fUK\ffmT,$;0O5C)<_A]AnJYc\W/@3]>o76LQk=&g)S'dC#P/\.n;-7n+_=Q2LUpDE4UL14=P?
+A?bFSP"GaOo0-J92>B7Z*#=^!-Frar6!')mIpLN%mkE\P8n4i&&3@F5#e.OI)NrBZNI$]8YAfKZN:,
+&b>ZfdoM=71R[m/0@$[R4YDK4*MtGh1__?dL/2*Eohu"BO;CHeM9CqG?I#!QbQo7:;)9&?A&m>p`mi
+UUUgFNh&XnU$>;mBbN^aLB+;d4V0M&o(2*_Vn,\:cB\Em%?0,&(*]7K:in>ST_HWgKa:#p@uqXiEs%
+3/=/29Yka:1g@''[M=$=iR%q^cOma_,e_+ek=oaKXU6cZEq/OfFK$Y3k^amN+3C274EV0nPbLCfC7?
+02KgJi+O57q#1T3C]M2?/+0g2k)"UfDotP#^hRVS'!eYCM^$>109!I\;!oDl#J>&T[LNqfTTt7Z\-l
+899O97ErQjlHZ-2aioD5s9snL7Om]Ga;^^nLo&[6#):?-0a/UYU<)HK(Jf36kad?s6k4Rh6+3tsn0U
+0!@4F3?2?/`d)<6%/6g^*bqOPB(qk),TiQ]JSlHT,YRR[EXS*P(CLWm,3E^'"!W4t-/".V%@SU#)pA
+pKbYd;0sXeS8:_)\T9WB[&2_l]3bhl?.8)%LI3T\o&I1UmU*&7N+i>o/1c<%f@78!U7Hta=#D1.JRh
+3fZlk.OWVU\)__\dGl[j"Z^AO=fJgp^G57Cu%%e0j.OWE^cG]*>h?Ua^Q>_t<<fgQK<LViW=0e9TlM
+<_$BQb3\+b[f9>]:=)7hsq$YpW#p"]mMEA:?<ZPm4\;*g2`L"I?ee@BEi$oT(jj8lC9tQ<N'U%XlN7
+7'DQj>nMh5V8$C=(#GP>WdN7:WY,FrQ:lE,*QXAelhfnm9qePW&O`?tm454uS+oAD&4[oUSjn?\bQ;
+[W5F%&lb9nPKG:Mbe1]=m1,XuL_"fKot7nWYF#lUT.hl*9O-ho^-gDr@7ucF2-;@jAACa(aaaL?6\@
+ma@*j1V7\r1RsXbDU?"4qi0R1E:;kMHY3aA?l$gHk&pbF5l<'9rleDH7LS];:Yfe<bIA3*:dL,fi^B
+8*0"(2#lNqT6iD%sE"Zni]0MHWC`)_en</s'S\h:*,E_D`d+^2ruOdlbSl.(l&65c+`hsBF%qA8&,j
+#am_i%J?CMHVJDU>T!4g\2M(9_fU&H6)lTo$OLo;k`&@:(r'Gf^OFPATJQp<+Q9tn-E0PG/pC'/27P
+EmIK(5IW;H9XoJq\=ZGsjd3jd$l=E[B!%h;l>oS:d3slWD=^aA5a.Do<EY@ZDL6IWO3/V-I+M8)^)S
+<f&k\)KK.$XX==c"`M;u_riJfG6-/4GnUQ&feSB/]7l-G"@(B\WW`#kR8G6JU&<J;bFK;flc,nE*S5
+oR')OS6Hm3*S]s!-2:WQ_`9HPOdnZVHK7l$79CSlrrDEe17&IHG0ggAJnNSLV0)-AUq>U/g#2^(NTg
+O9i1V#'?)\KIY7:Qt(KV0\`uPLf;\*5@+Qt(/K1EIKnk./G,4#d$=7\)@-nll]r$%D^]J%;s=3R#^X
+R"#i-kW7qZP-"UlXECjc)btu>dd+Arm<f<rpCJuT-?M/#=b2Ld/4aBe%!8b4eE1KT%<7N$c=XDTfN#
+Tm`-*">&euJ?6On(%Za7':(N_XJ^&E%Y0lPP-YaNOZ1$cEIK/<L*GX$2#`.NC:l?)K=MN*c^g!Mc[>
+*dPo0onf-;t,3>7DJ6&JD/G&C<BbInd3h,3m`g]OaZ<V`!h1@P:mq#77'\)3]]p/ot&cU;.#q`I.'l
+d4M)m/!0Tc+licAh017JIr:2kDKe9c`ouAr6LF/F;.eWj,R^+HRskh!H9>[h6X)@VN,/@-?qG7X_p_
+JHH:2-t"/]#,%*>Q)mn$:1@!Y?+KEd86lIcIH,7r9a%g<-i`^B2_Q6LTdeKJUCVS^5]%o8b.r?ZMR!
+idXWn(Q&u_sOEH'3'qg-?!&PAYD]bL<B0dih>OVC-^]/(@QO*bNCY)]4[ACT'c*6=^FD7W24ioJX6a
+`OuZjokEU8=:YZ-R!um(\$YMda[eF(iMHi+88j$0Iaf:iZJ_;@f,=bh4\0;BW+.U69*NTH!REJsC4+
+I#.X.t#djKmHbG7W;N.g@BO*])eG$T$O#K*C.`ldJY&Bs^pV4N^Td=:"u;a][EfiZi&T1VP,e%,-Z2
+r,smr-$rYtaFQ_:au\$2YrVt4:a6[o'h]LGqFU:n=,1-J/CaTabZb[M<m03'nUWJV9C?`oba;4Iq!Q
+GD>)iO.XAZXKh^t#c5d#Bdc8(g.V-Jd-M&#fe$6/IF^#r]#NCjq`YJNSo1g^Y;dCH-a:OEd]%/I'P,
+.7-+;5f1pmaE`kh6o4^Tlh%W&?[.;!rJ[2</5nOmG.HVZ[W!jBMup\Q"/e,^-:FYKT!4@HHI<Z(o<H
+H`P&PjJ;"u7HoJbJJ<c[u'RG^GPLKAT)o10\S.qD_/XlT--KLlhR48%%\N71=PZ3P_RWUgXQGp,lD.
+)dm=8p1C[Vd*ah;9+$];7TKph=,W=oZta=$8e*n+3"lg1T1*N-:Nuk3MVVOaF<MVescOa+%i\X.GsP
+p\E&a71om"C-(Uk6,qZCTbQAJT,MgnoCM>j^O)G2**_/)8UPsC/V;U@jejDmVZ5!U=$8e*n+4/&23K
+\oBp5"\dR$:d'8Wt]n,M%W<R9"cqu#H='S]3;C9mu,?U/9=7Bt_V;4(6AH3Fe+QNIKM\Y.)P+9:iN\
+?\["I@%L]=N5JI,7hD^L1N,^QI=6%A6m;iJihY276G'A[t%ZnL@=d[IKdFAG%D;DSF2H5XP4+:S%H_
+7b.`iK5H<pjbjG8<XaHrq5"[(Z'0N`6Yj_WN<.PYuYX>Fe/9eAh)gF7dcf-Hq^UccZX^[:#&PK116O
+E>r$RUWHn:_sXQAe2m.+F!g)A%Gq;83]WAR&$H%ggg=<uNk][bXd6f3\;*efC]=FqOp[pS5S;F<n+p
+UF_@TjR&e#WM0;^pOn\B:D`cb$+9og1C:hV_/,7a(c`!65KoP.p9Ji]4-6&T@l>?!h3!hm/EW<(33[
+$`6KJr'8jcAIM)ALW\d'h+1B]P(LU$]HOodoFWj0b?::[tao"+ED?KKe1qG".D^5H?Ab;Uf5*\@M8;
+g3n=8@\uss!hYkLE=G;aFTXndM!j3^ao?=d`F"hYP&q#(TB7o0H<_5GA%p:nFfJh>fA3,FXH.5<BRa
+Wms-1.=l/mM/O3*j*fE1%+#6.%AQrEln^1iaqB[B'*%X+]Pbf\p\^N'h:5KW%k)'tCd+dTg"\&Z4%"
+^R`;;Jqa3I>rM:NqhWgoQAg&2]gGa?%e+GC>[CKD'_/s0O-j@q\B8:B4l*PMja8gCi[Mbf]I3<'A=5
+,p$3pnSL'/q6=%h*bcJu>Q[4;\g%;G^_QqZ%#s<b0J[=`A:*m+@AF%";FM,=1h]2M+2n`$4hJX557"
+M)DdV.lrQeRMIT=*hXtmV0!VDRnGUt[0KO#N?7=Re3MHM/0/X4J&Eh%`FSsAde8G8Y9<8)4@$[WF>B
+T63g>7]^n$;^jT:Cp@^(O[/eOs4HDYDj;+g!.D`+omW[K;;t'q_p@EhZ3fA1Ba>)5$+&(`f>[PqQc=
+$VN"urMQ?VJ5;Q'fKJJN$IF>e4bO;]I'i=`,s0%LlDMLjV,:BCaK;X&Ud&MA6ra!fI?.B&@&"lRKQ]
+_[9EC`j;Yg9+,O0r:;d]O1AksbYSpY<%<3K?bHBFAI3*[(suO8P#.fQpAIfDV;^:'9Rt8%%`Z&AT"/
+C!D=%1!>8G:Y]AI4H'QGrgk?Gc7DNI.!qNIBjEW]PSW3Di^E.p!2;$2*\_/`/b8n^]Kuc\VI(i5be7
+S,b[*3p1^h\Jr.MI&lOPXq'0q%MKBh)kkMTV>c6@ldJN_F?m7M\/(4h>E><+]n'39`o2s^2OoPX)]Y
+)fVlFZ33bqd8pST7/M9g-1`AW6T5Yj5Q&cb#?[DPjG6<c+Dtq/7e4ElQn:@Hheq(jiZ;k2r&.ZW&kI
+.0*I"q#B1TQ=rIk;AW88&VUM7fbB?<\Z_PrAHBNJag"^/-5=mrcZts%PZC/#I^1ud%^nXg\BDjRsWJ
+!Y4ET`UQb@N3W@duu"Z9.mtHB>_/1V"2Of3p`ajQ(]tfbRZ=I8*d(6nQTlWS)L'gmBXkMob]dD3`jM
+/ReLke0CALX#KkEpFh3+;"@eN"DK/%CspHe\c=+"+u?1@k9;UoX9`B_YniMU:[%XJhoK$>QQcEa?Z)
+>D@!cCSZ/@]b(@^QtGNtk]OU@jh7fdYd;%llL]_fo[adYs6h'^*"T\.f%RS:T8-FE"/`S*l23D\dh'
+TQNu:R"-la-WCU9R31mb4&g-:P"RLN88,O<^M<a8d:*M/!>&QXL\,%CWOc7<3m9,DK=8FZC'`a"Oor
+kV31[;Cf*kV@,to)3Y)t-@rtf<o/spi!c>IuNoH]0Mo6WD-u%cuHhal]>.Qd3C4^UT\nC'TV<40LLZ
+'qISRKo!3$F2oO7\BK=?<ZU&!0OI_)bHFK3t\0LnZ5+bW+a#fJ+XZ$0n+QOF!e<Ptb-Z\'6nn9.NB9
+j.+tW>jTFka&W,%6WMp#"*%d!PJ]GE=/^04(TR0(RJI8K(F-Q6RTuIl+"3G8I$*A^*r!mp,7k.?KR`
+^LS<e'uKWUt`i@o6-?h"oH!YSI!=kdEifZ>OPo$!paa<[mM;(;"Z8o_g1\@l@mJfbTXk]ShXJjd?G]
+(@=9qGL4kF]Ga*3CJj_1%+"J:U,p@g]ps]L4e;'R(V1_f!-k^Pb+>F26]S#g"T+]:hRJ;lt>]GZ\2B
+&$rX"sCb,m_#dQ!o[_bpf8[pI&`U\dE"Een_dV^p=j&Z?&PZi;tm*"T)#EodNSnJi%Ef)q>>`-2U3E
+i@D51cHO!?&;7cYRAVA1-);OKT)\N99SGdA>N&&7[HT!'GU`Fom:mY#PiQ%/-tch/f>05+bsNc!<9Y
+_^o7aDcb&hok*:!)qNn![OPkOG$BIN[RaFAOW<rJ^#?qFJ]\+lh6r*VnN@TRD8_,$9WtYo(AcGkh9.
+JF@kl)EeDpX'.pm9Kp*s>6/=t9OZo'.FY5O]'nqC\CAIh"!0+KiQ;l`3SaYNqcF/V)u#dG>\O$aMCn
+B;Z'P2R,J,'`n1U1]qMj>+s#Um3R=7pH$48n%8>m.ne!'>Ai_h=sGfkT1i7/XHR?!im`!p!bY.$9lu
+S>Wo:fj_TskN,c&=/c[t:.XRsf*_,kTMX%5XnQY9"eYcRe.F*X&iJtVr(f58V=JX<aWP4m"K1<\VhG
+DP1\QLaZSUj_eMN^q^SC@WqWG"f6s#r%Z"@>cBA,7"C8UQ+0<%X+VLAg)+Wu20WB1;Mq4+6LuT76#h
+44BL:$&gi"SJIdmaW#$/ZkIPdjU<Zf(L).%>'@o48O;RVdY3`WiqE2f$@.;7ep;smlHu=JR^HIB<\F
+(.@1R8p:7!oL^C,V<IT-+1lB%N^Cl`kPKme[9dHX(uB`f)>'O-I*7*b=`(*!]VeinDMG<m7*lA%p$D
+^iut[H"c,4E(Peik/k"E__C%V_p-rZmgc_`?1nAi'%/q^[4!+8&;B'Wd<$JA7qAY40?bR-SC"5J&iP
+Sa2^irN3gG283:p\'ta_IasX>X!qYu@CQ;YDpb?E1lY:dsDSE4<(XEokkH4?t>R@+GVX0h8Xt6p"?S
+,(B8tjX4n+!'fr!OIRbBYG:?T^5>gj"/1?K"UoQ@h.b.NqGFI_U`*-@;uL([[_T2S'R)G"efQ$#QU(
+Z#6WLVJ6#+$6gWLH[9MZ=3FkBm#s-)ETun@UV9(g);dR-f.W/QZsW9@aktF;j^.=YUb).3$L]J$+Io
+Ud&^odIiYO>1oN#'#-8'UeSj%V02>r?kI/R!>k<0IM&$_k<B[Y4?e)0\oIu%5*$u#Tu("Id>-G@Efr
+X)-nC9Ju0_Poc34614_<b4qIenkV^mhCftJ;A&2gKSB8G'^D#9-Tn_]%V&;a0)VK,<QCM`)oq*6,MW
+/GI%ApRr8uc0iV)B"4g(KKXk\*V;/`o0$Kn9k9$ScXV,dmrB$ac9/m'+12r$)Z6Hr&5%N?nau`Q@E$
+Y>'N'W/;R&Y7L=qNMUNm1tP'fj<=6'KTG.s?Hn#TPJ;<aWo+2e/j-#\B6bTVd>0+DnHZ@+1#B5aYp#
+D%4[(>98p'T#Dds[6//#ZK9WR2=:&P59BY?!f[3H>u-&;".[@)gX'E$+<E1]R7;uc7,G,N_\JsE\70
+i8cMKtYK=I&W7.NZ1iCm"LZi'`eQ1nG9c^$Un[(ncsh,:+1pg+n;/-"65\%N^>\[a]<Em$hKIQE'K8
+F\iVTeE&7iq$)$lu\cj*;[cP"Snq$_+cu"K%E]iJFM273]6tFC]&T_5oWQ1Pu])"l83YN"$a&R5urM
+NZa2<L_mh)Tcej/NZ&r+*1Md%J^TN;(7*"qn^\=ptl_<j6D6u"nQT/Ysim7BH7#5];686duO,T"ShW
+Qm$<3[;h6eDYMWNXJ/;tcBfkAC#",M=im0$'.dD1,%u342^U"CTiHllEN$#*Eh1TG9TN_V*[NNsf.5
+YVR9#;J&Jf:7!F2?[tDXc4>+[5Z>JCVqZk5TViNE[OcW[;Et8i.X9U97F)8rSH"\%j#=UFZQ(O=`Xr
+(FM+oTNT9uT.BUfuIB3K>^P0J[2<P[@bSjm=EG*+.OHbp\.4;CX>]km,k-9N74@r:IlLZ`@q\FW6iQ
+HSsjN(u.=NVJlS3SVS2c+2a,Wa`9)-,sj_=iI?rBDgo9+Odd7*[UQANeMj*I,n`,>q24/j>E[*l_>g
+%,j2??s'uDCTI`*CW'(Ri?]it(Q5$-6hnM`Ln+YH2R$?Z\OrJ"_H'oq%FEr.;m2h.>h-WQ8YIo7hLp
+k8$o\D03S)s#)]+<mB-,9*@Busg%p`9MlI`WLX)(-;'Zb;B1Z<-sN]Z[`,G0^KdQ^66+UL]A4?RJmZ
+#4XJE6oM^LlNGIUF^L?b>qBLbT'"/]"P5D*8*DY@(CD-nEc#/68UPm&g%DGR'%ZFD>,7pX%3MXYKQ2
+%7k-@^_qRtb9,3k?D&CgHRh:kBO[TL:''\uWtpU0+I^^sdU;IMi5[:bm?YfE>8*B&JX-KCpLJji3mC
+GK<OkmEe=Z6@=9#Z#M^QBiSklp/\d^?["7O&SM6Tc0ZF3W/jp@lC9%4+uM#U%K=1Hc\lH-WN$ubkd'
+)2]EQT"\`tmRTX,H7nc[TDUbJ](;!R<c$)Cg@=7l4)rG&dGp:&!-^`FV%3dCU4+M3DG+Te#2Tnju']
+mDr/'c3N\$YE^UudZkc&W^tEqdCE7A9'W!>g6TSk)[BgV#+_mNAjV7Ebp1>OiPq9tBKKIcpfqdllWW
+lS0X/lpj$'PQTb#.^9q]JKjlh]bAN`^8CYpARYdk6A#rIiuX>DHU"7DK_p4T(-B\3Rbd4-pLan5OM-
+%?hup*.GD4+\qS%;K+gC2-*b^3V`:2U51JZJ9.&QU$?O"\6J+mX%T]3INHeSGu1*<B=q<ePF*Ql,Ee
+?g:i1?Bk&nMMU-;X&Vb;jIuQ=-4l<WJ:@L9RFE4V;/,G#3tN$h/Hh_EN^oe]KGV)VkZIgH)s]`*D];
+Ymc?UBf!]+oQ$fca%(KU3rB\1H\_[/'Ro4o4]pL3M;a:R"XOpY\C!MjSP"k#@S)tJH(3=_X"Fm4g06
+7+^P-HdRJ2FJ5&%_0F`1%YMFtr3A`Smc.H-(.)f^l8'8c19H,rXVf9eXWMWuLaf33!*4`4Nh$UifL-
+d&nrpCqu-o/B#2("_>>g6(Xsq_$;5g&JcBP\r[`,6*&I9lj%BH!'s$UJYQ@elp]@h21J.,(4KgWHZ<
+M*/)c't;o5GgI;-4rO!f<MC+.OV'HH2QX<$aS(BG0(>h>kkG,^irHol(J^3^'#fpXRB8*]phGOJ.AF
+53=IRUmd)7RtbP<3FUN3k"TB\C.<F$uW[$K;NRtVT1AYrLQ3j52u&,V$$c_dM&i(-$2pZfeonHF9DR
+j\%&Jn3Ml/H*0-P;p[rLncTN,jFhYn2K^E`<jp-3@N,Nn_'JJ3(+2TqJB8j7PZL0`,2`H64\bDfp%9
+_^+653XnEX5bk;JBBM8LLf=^B.S:b5n8lXi?-="RRkYa1?(i/$3HWZp;(%/3"bmdTVlV,h:)][k.?p
+*D8ga&73Ea8IrRo,4S]>8jG>)rLI-i$E9DY`P6lt'LCaO':%!dXZSeM/(#qNF3m5[HrJ\6mj!=b8Z9
+#'Tk>"V3F3eh227D>5RIfSK3^pVXE:`dP`[&!7X5A?_kK^qeIt_)>m'l'\-?I0N:ON(3^14`BFFD3d
+*Mp7N_:Y?s&VneCbFK9H072>P#6+cTqK,n=JQXS[9a9jVdPN[pho(F0jtu)$L2Ui%$[nU>C6/S-Cne
+""Ef?6JmE(_PX@P2;lk=;dI)V#btus_Gl%r"Nm03i(eQT,Ohb4Z5"I$OG'"oamD>&;;*Z[,-@tatDg
+SG!%/T\$Pc/`P%*92ZDc7a$Z7bf[!Dg=UXsL)iFCRgu19rr(gd+$efs51FFDofQFZO`QU5;<@&1N0o
+3/b.(WQ-/RI=D1n0]o],@,)9c`tt(uHV/r_r2+SbfQ<Sj&nUHQQQ=H]kha4II1Q#,Q?W(>Er<S<l[F
+LEWNJ;b3h>lgpZOROfM//!bp3eYp2;9+<]"q[kOS]TZ-\HQ/3Zie&Ajn`.&MR?Am34hV6T1BFEJLYn
+dBrr_SR+e#(i*dik=sI1n0V%,0V+R+QmV+hdN.CfSu/N4Ig.6;&3Y#`e_7QWI/]d(o>rOfuZc"p[h5
+G8@0[lSZ&[SXE4>GYp4="kus5t9[(Y_*Sq3D@.d*jPk*Mr(N"Z7(R.097UlDHAF)?3chtZU+?1P?5D
+G_oIdO`M\kDO*72d:Zmd2R>cbPfe_i\mKHK#FhWT%4Xeco:O&.p.j0+bT"2jm)!Bs8de?Q3kk@"1NR
+7PZo93,5beZ)ciBjS<S1)H]EEm87P7qibB"p2@Bl^_+`P7&$7kc<G`e]nbe<C0C7k4\Z%5jEh%=rVV
+&T#>7jW_8k+4,F;;c@EVIlb"T&A='_*m/OWg:&N1)_nA@?C%8pNY?G!D*I->fSo>`hLVogr]lT&?VH
+^Z?Akrg]/MV-$G-SH]J6p`-&Lr.!Ts)&:<Q62ENVQ:QMEfL[fNR'W5NLo9nl+-o+5Q6AFs)n'00o+'
+F:'ZX#cn1*e_eNH;e)pQe235C\*.Fc?P4N?Jo2E<KQ%#VLMJ9?6&0ObHSK8&]ad/>XB[Cb(D(/)?rY
+JjbnPa9P!C:Cac>fceql8LBnMdQ,_b@sgU@iC>*Pn/1N4`aH1-U(rZTZ,h]Pd:*S;#2'Cq=qh-r7P0
+2BTK^i0L:)CInk\c?.fQh.sGSB2-4oG'Q9_k_?TuH#SpB2Qj=XS42cn=URP,B`"M_Q/cYLj%*-uSI'
+%cWbtVop7-196Qm+#D9\*iSQi\=S0T0S:L1>%3m2NOmh!lcq@>6dJk!h?[`Pp;T-j9lX0`9#NmuHM:
+?E-;h6a3d,(Gg'D0m*HRFUkQkcg3^Z:OI!Y>u)_j8K?SM1'Qb>Y:039@!f/1/,rWEq*$=O?j6WBnjn
+"ig,<h-6!CB''C-e82HlY0/iYOf80h=aW<[[HG4bAfnZefK;sc!\'q0B'NAn;E2$pdXkI7%L)j%S_1
+LDXl(N8C[>6Q)rjI([NP@F[Q!>L(M#R=Fa#fS38PMto)DA5oN6"]M-HI_j"\r5^bdQXT>d!.N_/7Z]
+bG7*9->,VC^ND=&0Y^75iR!ZE+]kt27Eg]1?iR\;J$YB9_OFR??f78b2('^g0J+'[Wb,2S/3hESq2k
+IZ!bDTn>'sIoV#e]Urb7RLapSZmaZQW$jK,5gok:b&4qoMN7\F183DpUb9-+"-=#q`>Xu7=2qA]UoA
+?C$I(5Lhm34nNb+g$E)(?AV7H4t.K`RS4>fhi4+%ZA%m'3M>WB&rW<c6e^ngLm6dS3Tu(4CMYDbX$*
+/,E"@mEr"FJY7=>lm7;0Jb[l*g:ppQTf]hYQ4`Tjm&@\YW+H'181``d=+Cu145.b`&N<(/s9j]ePS=
+J95Mg5tW:hJVsK`j"u)AK!W4UR=m,ZDb,9<ZqZ&1BK4h<Yh`T1\okf57B=4aX>aEQVF8::$G:FaBMC
+&ffPgD9.j?iZI_l9:0A6`)5gC8`5&Y5VippJ&AUnK1'>a4gK^.qo8d5c!"!J@hr"@!=%"ZZ<SulgI7
+AA^lUO-Kt06DZqA\JgSM*KdCX1:/sof',.7t/'RLAYC^if1L;96I@Kfh:o*-!carkIp0qAKN7UbBmg
+=)tVi`N!ARcJ"7D\FR3DHD*^\U9#SQbPXI"!=Bb,f-pnD'.o]=+#J`?j,k'b1dN*goYeZA_o4faEK2
+MfDb]ecn(NCcOm5SOr9!e/"eUoRSBJ>\b"q,lbcr7G+TYW_;u`Or8P<B\VY9fY$7'W[ZLtM*ETD[8M
+mgXFt`&.9D1n@Uu"ht"_mP(;<gt7O.i/L+6qj&o"a<Ige`^Y<t@'fK]9*Vd3NnYMV%6FI(B)-Z?UNU
+lL=Y5b$*hqY*_c'kmLH]QP,jSoL=Oc+gl/@:'%[`gJ9Re9-'[?im3EHoN/B7"PEjApLSc*56m96B,C
+06&$,.ar\QYh8)1Q18m6AXY\(gGYr8Y)o/-AHQ4f%qn6qKj5+EXD%_Mh.e4eeGg>t+aF&`9\4)Cb:#
+amqJ9!42TRq;8p$\'leVb7fKh69F=?fjA1pHiN:Ea;+jK?:L-e'$sWS0-+0@oF.JB.Kuca^"m,`j-\
+k_uZkBi30WnCp2@X#ip_!U>i;3Gg%iBXfQiB=.Z&#UPD.CjT-$M\>4j07[^Y>bpKuCh/IOsd_]a7VG
+>Y$n=,-'?3icf4[Sfq#HtnM20Gfi'Q\,7B;ioaQ%6-RFl%&(5bnJjk;#(@i8V+T?J9XF=Z%@n^l'*>
+02YU$jq7mh*\<[0HdobBL`3tqCu@(hj=<s7TaZ@,`MLfMjj:G7n;$Ch'%t/c=GaMn0tPPqb%^/kE%R
+B.ljX[+k/<^oc/mcodVul,'-4I$.r&GpM]Y,t\M*&=`_joV?<mZ-7-:\%:.ST9)8<1e-KMJG2*=+'B
+s%aJ)(:(#7`7ll#VSeV^Z!9`N^'eXl2GW;WI]7X7sMGV3occ1>n;(3CWCTCqsf6`c4kt$LBq&!KcgY
+R7--E<gY!lNfcGD9*5-)j!"]3_=\';->0R)#W(]2Tkt2X*Q(?>J-'j1Wa:kF:T>M=!$*-oI+)JG(;5
+%5gji,_"_b$sK7C%=F%)f)\L/+_bS9Um!eK*2('CfThW(q+mP!L'*_Eestnmb]b5Q8?/l&;jQX/NE)
+-!u)3;Pff=`QEihS!k\E+$B/NrDr8d<!&IJ$(A3Gl`Dc284OLtOa9tk<#=6\\/^T^kaU[&D#ekC:d;
+Pi95qOVmo)_L,!Uq0A`Egu*IE[PVSOdJL&[9?-1*ojnU`BnXK.&<jWG+;=>Fn]HB^4a%Y<s>]C%b#>
+CCFYMW-%a)pE%u;YB76idq<oa64:?emhuF[bEW=.hV8gLD[F`;-i9a1s7B6F:T@1E@,*)lsr!H[\c(
+8'l/=u[3NLr$.C&lH1Nb!VAj'1;)_nA//GRQGlC+sBYJ35$=ftecG*&@aGUom6_S?/+O[Y$KW"#tSb
+]ZR\"o,;AZeD_M`aNamqNpV*0aQEn`a@(J"FMT3-@r%m_Y(1#>I-%-Tn7%"^->H&"^!iVY%&%%g*o_
+dl"j'RqqAhTlE%sBennWbt6eZ1/)<k]<^dgdi)bt=,<7_2U8EZ#6)ms-"s@3D#qP)GqQa'A0DhpYHA
+4g4B4W9eW\7U9V%eorYm!E>pG:(eN,s$"Kj_9_25O(1^:Ar)R=..;05;YjMsD?,2K'O\gS/ce[.4J_
+oRAm3iT!\;63m^b=/MV(25\pjpeiX4@Pq3eN9RO[]$J&r!6e(C"UN7$\s@tfTN3=mGCoa-lPmp;F<B
+Y"A;cDlN*NL4-,h0YBX8DC]Pe`hY3ISW-rT;GrTe+qZkZ^W'g5BK+5;DlV%mDVZh,5Z*-(KThh4T/X
+"_;J>Pcokj/:.1CrdAiWP#aB;q:.0g,A_;:1D%`%(On2B'-EH6grRYHl2=GN9GjY3G8%%,c(!j6Xs-
+bLA:SKSVZEPVXeN3[c]n!O;?lr)/9]\>0i#`g%\nN_Pkm/kjONEp(>6c,T0:\d0c)b=A([M9q(SFJ`
+"2[C%J&X_/(JKo*)f@n[Ui>2?US;;$:q:Km`XB,;fo!PKOtM]D8'mh/40dtb'aVbs9\pXe(Z,"6Sl(
+HP7WHUL5p,NRIfj'2Ht*OCCqZY<=LRP;j8<2#Z<iLDbBpGuN<m(>7F-tAKQ%(rEsR_kC(IFl.Ni`=i
+-Rm(J4>>^p.llHcIgRb;a%!(2?Igl+UV@IG4U9<%Pf*3fHP=U.Do!/BRVM;cI,SSnoAGQ;OPLj%&AZ
+"-EPWp92`(l!jj0A?bkr<to+bEAgED\.-F>5^p;q*cUn$<g3j?rs$Qb#.@>5C)=TI>EdZ8H&SM<u-<
+jomS>!^6:0[@r;h?"n:<%pa:DHe[Bt0L'BCQ[1Tj!3/#(hGsli1?g3*hY]p-[!Qi4DDf44e!$!;68q
+hGm?i[GkG];E%Z:OC%UIruYf^h;PPLBRe$C<[YWGRuN=X)PL_Eo#"$bVKhd-a2bE_]IM,KP3QD);K"
+&2d#2c0Rh%/cH1_tT)RV3(@qno1JkQPHi!K46t!N&*V3@s*?'$=Y\^X&qVf!uW1$5\M5U]OD3,dta?
+Hka3V6?N=V].ce,'dm6Rp<)"ReOqarr[VR$t\QMf&?>=V^T7MHHmi3MV/`[$^0M\T<;!cGX\_ut0%=
+Qn"HMqgU?o&s6mg]AGEC/2b<qgIk9Nn>8g%[\0Yk4lmfM279-f@i$R&7?D`0e(*1/a^T#dk<'2$&%:
+Z\d$D'8l!-f9X7']is=05GE&E$SGidgFNp$r@.I[kd!B8l_CmZ(ECf)4U=utbWi<N3(J9sKBhOV?dD
+V[&h!,0K(3I:e^,`o[C_eAA)l):T:P^<IjaFur)\l[$$S_nN7]sSO!N\,VsVL<0<HN[l*u,nM$1h--
+rr5h$rW-U0sZ:Uiucr\a6e;(A<S-#E!;lsNOpUH*.OFc7O<^?2oLN2J`)"=O3'RZIPmdt;8f(TbfD-
+5&)NV7Y@OTnB^eQ9cSB,IJJcMq0p,=n8CX*n]d%g%k\\.RNJ*$6^U<Y1LZ7oA*8BgJ,<=\s%C$em2T
+p8dGeMDn\&1m^jD$@dTi5NO,qJI\"0g=H9$W@o!WT$h.-.^?U'#B@;ZYNh,aU0WIoY.*$Y4h>V78Er
+br2b]T:qoeh[q#'j<O;6*C_c7`#Yl<D970:C(TP760QN':a'nENUAml<oh+DJ>,V(F=5h.GM]VBQ&N
+%?h3_K=/:7'RX1Q9epo*s[5>f!KrOTnm]S2&=f@ift"IS;R2jP5S;E'hi7):fI:Z4rq(f-5qJOHd5.
+\jJZEC;'?\m8\;G6@+j1=j'6.K4D<T6XXT^BktsF2EkYDBO<03dN4101'P^_1XOZqWFf+/QpdbiB);
+uLQbM==77]eTaXM#/deo+_B-r%127Ytc9fh,+G)D)L3@1aCC1_(4)Kd*O)t]VMt@j#E+h._Ho6PW6X
+%KOM"558EQ2EQ@!8<uK"26=O*6jq%fY/oqX`2+9]Tn]:c4BjW$Vdt3j,L%=WD$d!/E+h&\qV[Ye[;R
+J=/?XV/_co(30V`^NE%8.<'IK\fKMCbpPNOpD(;%7PQt8@s<6?.%Opl%ts&FZ;CeH`%=nM&i9R3Ag0
+2Er9D2-<D5sN*?8\O$OAg>E8"DqMgQ5I)BST+5/Oq;1TH8Ol_UVJ+K3sjU/%%U'`"Q"?3tj[+mOmK]
+b>cek6D"Fbu^j9%g)R]H_MiR>1)"K71W#C21G_ZJo8,<`+`NBU1#Aa#;BLtrpQLO4\[St#,/?>T[K7
+97`^>l3\9>-=;,OF1W">=CO&(YOiGJ`\fEQ_C$5bnN:*E!`mr.'1PR>AWF+8&Lt8Jc4CCg;A"F/lMd
+q#`UJ8D"Pi+Qf,6g0.;%9NQ#@p*.kdoD4F*R)m@afe;EqS,17c;p5iFj=f7d0H]2+r^.?AkhD*JMGC
+?1K5M.Z@>QmEsf"Nkg!.aX.h`pbK5<W!I,mE#l`Q?\l?A>"TD%HCN%>q>#I]]b6,fSa+BX9pc4a.GI
+*u,N(D,[o5sceB+*,0,tC"Whk#;6_fNh!r;'CjXR5nF>us1&7phN!%@Td'Uis\qs/K<'JWc+b?&M.9
+W'jHg0IqE1^BhVbmSGGVCTqSgaSe$5dUZ]dOL6f_B=tXqJSO;!(d?lS"Epn7]gDgb1>0Ee?P>U-QME
+/;Ou!ECYcmmg1i(.Q,'YhM_Vc=JOmu7UGQ,J[-G(%<dbaWhei+o7VhJ.L14DKD(Z^eCq1*e'rd^p6.
+p4=T@9F@9K2H)[_G,L(/o6JmIX%XU_77pB5rS>>j5^ZW<lLtDT^0>[qh,Fks7Q2/2:aGJMTfN88'P1
+?O742=ot7eBAeO:]^(aF[M!;-ZT+r;i)'XlB-iC59FD4%lN`$g]mn%?Z='+q"+?f7"!eJ?*31-"?&6
+q"N2J>'An4ChSiJ!-c,BD?D5&_mik*nTB/<F*5X13p1SPp5ei.&Z]Xk/,er45\2QdcO'jBu@c<<<fl
+t3ge'O,n0lqT7n1%aC?;6)Hg.`l^D&4[P<^H)&Y@5rF>Cdp[a]44C<=G7?9]6^i7!=5DPADEu.Z2e"
+DW%0Mj/HVIl@&J,sRAudp=^;\p##%')Nh2oB<>jYXB8M_AS<Uq[A.qLRB$J=uJs;U4EmGT&G#$Y/RY
+oQ5nLOor7PW&W6.1>/4i'I+%rf+K7+G.,gj$081(hG!@rD3Vi@0!?4EM)!Ip^JS<5`nrHqMCARC]^0
+->&Z3:i^)X"+/N#YX5O<[V0Utc5jIpGTCESr>LMm)U)q@OHa<.k8MBh9eJ%Tjl(Ad-@3h9GE+JYi0p
+XW8)cBKZ73-pLK7.+R&7Y2cD7>1mHd\),.Z4751NapAMEL<GG%R[A@"rbB^os74b&N?E[kSE)tm86:
+-47(gZM(LDW)Qf3;e`j8=n6D]hn9q]J$j3<#3+,A:+t@K.b.FV(S.d9>o>&7kNWO:#k:390o*4+"(9
+(>NA^K(De-jY/"!^bDa:e=gkS<"4GC1:"#kAejB]]3:g/BcngR,3E]\)g_lr$9@,"/YMtu0%<^2_In
+f)6cS3[&(6Moi:+a6iSX0g[;OR5McL)#Z/0JjX4jXtnABYs('rNY47tgkZcnU4!h;,W47.@VpIM%dI
+JVR[b(!,RLaYC<9_sd@;2?#n\4Eee@1P@eFWr\k'L&\1),VdI,.UCal[o;VR`,@13qMT*VqSGi+(\.
+5[4LR,We'YU;0nCk36cjrM_aj(tah'dsXW*<L3N-',Tk:XSa7hiB*C_>TDI+g^M)@V*ZT6D9MNTHCE
+^i4@B^,GLJF(`!kGe=m8jT)q;g10&6)hqOYLK)u8p#D0GKV`?diu&`ppKkRk5#,,@:lpeoIs0PEHSG
+3&^"KiL(78c?h=^VnmM`a6I4WG;;bfcN`kbuPg$,S9TTcdJoIW/O@W-+c&N'8\\JWAZ);];o79?_Y*
+S;\ii1]Om4^:UP[Q++:pX`n?<,0h$aD2UaS)4>U8iiI7+C%AT<uA6h?:4p2l?p`%5*dr?%''aR0sBZ
+(sulcYqKIlPpfn3Q7.T1XlpY!IV-ZhCc3+GbOC8Ma=h=7LVZFMWB(gK7og,:eZ,-`NUo",+b_2L=)H
+CdK#uGI[Hb_Oa#)<)50WP$]Z*pJ+Lq5(c((3th@]$O#d=\H$/NK8/XhJ80f(eCMA2F<S4B5WlXF"/,
+h/9>;[hk>F:K^H1[5bZS^<CXbK],SI/N,->o?1;qTH8Gel5a6VD_o05hcV=/?bW(oGY'i=s'K?89S%
+@3n]O="iQhQp36%ZabG>B0"1Fjc%17%PLMLkNoUM63AV./dqd,uTro50!pN4)riS067.Ft$jLS;q@;
+@>o@5p!Hl3Gk)&@9+eX=M6$R8I@T5+p>(9p-CEAY0+h`T&?U<4H<;p9mQ.pg3X=A[?XO;ioC-9[_cF
+Q8EmW0@Ns5oU<grp^h?!]][]bUOHIW#Bj.7pullt`'N9O[pE+[%".<:!S?0m?*]*OYkkZl.!9+-Lf3
+JdVYk)\K5GS9@@*aTKC$(F$I)_c(<nU>\-hgXiiFMC<#t2c)QG3afV5CtC6ic2g(nfFR)d\+'gj9eJ
+auP9A5].Dpr0gWBI\Z_M5bFJOi6Fpa`(m9641."Uba>&@310)8:O9U.oBTQnr"ftDBjVu&Sf8X>BLf
+8NM9g<TN4sLR>VHg.3uOMfrur7+H"]@3i.`U9Ns`a:8J"U5)lgarJ^,b'>3h`FOca\BD/nT:$,EF;0
+Hb)Y,VrYprlcD'qN=qUX%eY(%;SW#kWY[2L(C@m4XZ.a\`6\238IEgJ"@'C.[hQ-jQB[-STk1:IA=T
+=%oUUg/G@uWN-_;fh<SD4Rs#n&t<&q23u:^0Whe9GfL"6h51]!\OOeA^`sU9.>$$mRO*9&4X:sK$:L
+&CP-,Zui<oO\(nT,AKL^9SZ>1qS+Y/BQ+\j'66LdV'1GdFW'd+WW!4Xfd/A)gEA6J\Q?Tk:-#=bsa*
+]TQFEQ#Q;AuM<?`HZb@"^*[IS6!u:Vu%69,MP"\hf"<@gFs>BiKBn!`Z9l;eK]gD@8RG$!!>u8(%%@
+g%]UYA)T_&U^HlkBc]eC@-c:A>Nc\O7+J4sb)hm!u$#=tl7*^[QpMMH&5tC8HeX&)<Baq5VEtuf&r'
+lgQbHb*@%YI?moKAX/XAQlG-?D??U+p\Jl_,:;4*W42kPB*>$e]7>_gI/FJ5>6_Q0V55i?!@so"nrS
+X7$+Q?g_S7$f`qigC,PDX/bEOY1ol?<L?.IW7J+,hs+h/kR40j\MoZXW[e/U5<XtEF:Z*F+V/Yub<a
+S1#km;fDibK'0<r4a!I%InR&WqLOo<R"?n^-#/B)+"q+U'&o2J5`EAB<u7?EB]N+(8H.jo<>eHZho:
+BqF@TVOQTTGKAJ<Rb]B5aEG4Wd:lH.`DLC4mbN_2RI""&c9U]4T><YfRro`+WAm*q\$Pl_ff#JCV?2
+QDHrtJNNB$TSJK?%Ee4aO/<1oIn`:aa]8;KtTb*qKUB)d*O1RL:]6>XhN@;arr5j*nOq[6a^-u8RBE
+;^GPs7d)+JXGdN8JU:/r/$mMCVMKFk+j#9JV[);(OV\H54O'qr!=GX:'u')YUo3%ieZIDs?H,OhK^a
+OQD@H$</N^VJn<lrG3gH,:g>PHphHD'q?ZC"JY5.chEb1)`sSb5WH!n(g9B%oHo*lHLTM<1"<&:c/B
+Hd4%rJ7iK3p&0\bA'SX_&*e-p)Foc\5;(Jnq9@A-IA4bY_+J3EP0bLhFRQ6q-?Jh&6X$ntC5\7'Z8?
+K.(0(\eW7^8<uV^P^'>!K[;/gUAW,!DJT"X4POL8.b/%:-k,+,KR'1"jpB8B1,mIB_+>F4AVS)]F_S
+'Y<f%J!mWP6?=d[kCYX$]T"B^`rB;QePJWcRDF\pL!e6:s3gbXm^sO27PKEGNUa8GfOiCer!*A7Ke[
+"t!n>QJI8REN_[8F%[L"/[KX!WY+bS@XhF9`gL,H/$mI],OpY+P^mg:oUaGV>U"e#8B^hGd_"PjM+L
+ph^RiQ_U&BKH>+.:>JANLi9brF-lD#Sb.@lG8h7PV4SZ5]8cd@cIU]tmhSa.c!83gWf9ZS&^BI.MYB
+^WB<=n=DDc9qirApQ^MjT1&^j9<<8Q.^#r)3t(e7Z4FXhN5'5&1kcm(\IHVTNNGSYrj8_5(]@TCV>H
+A2h<rA"uZe#gSE"0.<QYHH7ap?<2QP..>,.U$13Hn9R3fUn0i_%e*$[,*kBI*OOFrG!LF_F(OM,uF;
+Dm_u*uK>GK@3Sk.NY\%2t8.J*OAnGJ<m+j']7q/h[P:`e=9]toX%IW\^+A'1qEIj0dnXt(?=,LKB<U
+dQC)sr/r?\?57ps^sS>:t$qG-FuXOL#pQUnnBj-jV"K.&$bhQGVE4P#^p0UV:,mkKl`h&O8]ng^H)e
+![I5o?AZ%.*<SWSZ(nZ*32`_p=fAZ!G'*2ggUSQKV](<;BETG(bHTRa*[/".^-go-HdG`*^16?uDS:
+K5KB,*@$V+,3gIUcc_8]E#X=@>%r#n\1e30V7988e8#74<`;b<#o[L]ShdMdHLi_R!q=WG,BQss%Xr
+q%<ZP_pTJN+DN>N9Y3bNU5Zoe6QX1$B#qW+KDe>7hl2_2K\bO\qiOHJi"f(0`bgS1J6jSi1.dC?en(
+<-T%I2%933iGqW89FDLrg;[V+J0d:gQYN@Oe'nTV&Alook-1GX!>_DBo5N_Jh9]o8m2dm1nq`kVWPK
+Cd2SfVClE8#ac>/VuJP:P;5Q*5DZ'%J/#XLVpnmY`;XCV0u$J4Vr!^gN'E6Z/U=9b=$R!L5[>boY8d
+jL'7n%79Ke`KMHI3\s`\*5s&o;WFVkBemYn?T6[2d)57Fr^6q9EO<o=CY8E<235W)ZO+T5!_Z:arPt
+un!)9e^n&@Yo"/[Y81:l7=rNbAIY:]l_mfdEq@58)V_gp-n[G$S!m=s)b4([kXHn!0f)Aer?18)[F/
+uG^DUDSh,Y`)e&k9/(d)&M@5koFj_l2k5B>4Nq%[j]VoHlq)"Crk;n'7&.5jFs?teZ7q.Ju;f1>>iI
+taGqQ>he@Y1P2&2Ll7Oe?-IkbU]pVZt0FFDn/`Heq)N[Pb+]j8]8T*7l@RFmmO2aqdC-:7>QGZH0*=
+CXnB2lrn[[Xt#-!#cl@Cg/."b"n?+O?])bIXVBIH4OR''0Ck/&'Sf`L%44Pq#d_i^`Y'n:A9\]7#ed
+qciUC[sho)NdeU%frY,k.M418(r(dk<]S(YO]9K)m^qie4rYG:D?<nJ^ejNl6<#gEZr!dEqo:___rU
+Z3S>ksErL6s=8>MH=;PrWDVar&K%+hcYp?#8rW4'(KSLmp?!dHH)^2Lodj\/^\&I3M4OhmDi;U;7YX
+&0UIa8T1H4:32LU5NQAD*07IR2'PZKXs[L-+>DhpLA;d+gkcc-#STH7Rb!./M=_,Ygp0qFdh0qq*@P
+?6TTX1AhS.j!Gl*?3+9qQ"*KGd4/ai+_=D8rMR#7]pH_SEqO\i<eVE3sgat@>r&oi'ijh=]$`sCgL#
+`pqmI[FmZ\h\dGNVA#mkLtko:qPNk?U_W3CFi[K=jYZRXj3T/J>kk=W>=d)Wau]*8BH<q#5.@&p8ft
+\S!"SfON8G)_R&2XJFWh=%eRZ,o'M]W%Qmk^sYGdEr,cY[?.6>*-Kk\/^sC;5V*,/W[!#/D512@#sG
+PWQnCC+CR>b*;(),:)h-aAdHjNg]SA%lPlpr@69Hc?-%ZAdZYeOia<burIje'CXPGMYLH!7N*&$aAg
+>#rKH:k4Yh4.6'2&V'Lk8qLs3oaL#):u.4KuZ>]?T,3B^%jB^c/BSMLqu@8nNQl':0m4W]FTY2Q[Gj
+EONrAe824D$k,9RA-raMB2R'3W3n/%68Z""bNG])(ZIh%:G:;%Mdr>#,heQI8IHJ5$%V3[:VZc3cYs
+edZj#Wc>nu>"STi\&NH>mNQ+&T44r<O/n?jAK2"2[['6CN&&m9atjH.h<7CCQ'lqpbD3\q#28[#3)5
+&ZL3O_X0r_)q/2r\uabuA3,!Ym#$lJeK@Y6qAsdH,i7*@[a>8<4=2GaOUFgX38J`bSqJUAb5D:8>!D
+;ZFBMi'>!?hgdjf1%dK.^!P%C%)Rd<(EFH9bsokQaEk.Gd'iOU/MoOu(g<i?AUXT1^F&.pB+Nn.LEU
+GsWQl4h@P3Bcr.=+<"keP&@34gHr=9M9p['f`q/$c%l.3t4<*i07f+S]5t(QboQY1T_dTG5fJCc]R%
+Xf9^[lqP.TAVYnXa[LqZZW\9Xg1g8!,9qniBdU(cl;umOCip'ANad7(f=uI_O\Qd*^"/2*HM'B>e"!
+WYtT)&J@<5MmEUQkA#,&iVf5!S*E&ANk]>SIqtKdZsT"TgY9cLYXDlbi/N$/77@a-UkRFOO*L5SoA5
+-#AC2j-td=17R!q48D3tKIG)<&-uRr7R>q6Ymk5B1pub]!:aI1KX-aFXQr!5q<@]>NDV!6p@Q:-e\j
+H.<8_8WfnJH!C&t;b-$#]U2L#A1\H(O-,fU/*BecsM=(DRl`?<L<4RaX`:/7HlIXoUha=SYp^BB]m*
+`lH#L/DjfF#RJc?2!21p?tU'`,*tn:@F#VJUC"*QS(1qL_sYnDt!WdY81Z!-/0./$=,`_IG"#;.2S0
+9?#iigTK'Y%H[pFN>R];PKe'aC?Gl*UK>neS8bJ8Kf>?f''1+mbC^R\f8Th'!!d.:MLRENq6hHP5XB
+`*4'*U+E-(@%(p\r=<lt(D8"G!&5*fMi-H,eqtb-!C&>ZKtO>f"9/[[^:;]j%oc^73fFK*YR4:3U4b
+4SM20<2!"A@=^\9QK5\0&na9D,9o8f&;Pck87pWj*e(ft+S,a)W.0E%:CHuYH8F=AEa-G[T'UE[bS!
+IT.S/ta`uX;uT;.WOALPd4.H+!\D8EaGbPmQSp5^"jC4m3.A@7T`Qp!Ut%,WbA?J)I!H!KPB!5e:s;
+_9b[Z%ogAn'LW&!dj"AkUdr`#["4CF0eO4+;RpW"Ff[uZqgHEms'J$$:Q[:b#=6[W=D[K?!_JOS4'K
+AmlQ70XCIlGP`V@8BMSLXL(t<\)-<LS5Uej`q-ur0?nQ'1keV$8g"gg$D5Uk\%e%`IX78.=q5`l(0\
+tTPIIu@^g<FWZ-Iu"<5f9WUE-r_Y_Br70am!!Z0a$>e3<I!R+a!=\&nbkDbh5%9*g:qX6o![r(06bU
+eE.Xdk?M*NJuDBI)=9g'fY<\_-V]?*KkoT5H%hZbpbHbSS[VCSOI<C6nkI0&kD8q:QSm&e]h8fTcr-
+E'cY[aA]?IHAD.jMJX-)l6$fna6jBiX1)Ms`jE$%8*Jtl(CR`:fhYQ45NPu;P?nE\%bg?J"%49]Bhj
+<ntdW^@``.0\%'N""2C6)m9Oi</A-SuWp9isO1Gs+8mp>lJ8PWS2(ZHh4(s;afM7S\&(tjcH-r+B]O
+n%-NWsU@584)5r%Zn)Ee8Gee\=98ViS%SWP,#m6[/2aOZ%m:XR=AV7OZ[o3o<>bMG#D@mfsM#A=D'J
+p1gBb!1+2D[lKo64SX>=UK?me555fI\?-YaX8"R<?R^*a`W-T!'+hXIeR"K\cd`X-klQ\0VK<`Ong5
+=tZAkbaL^8K@-DT),$BF'6CX<^6.Lf8F[YV1b4Tg.'Zp(]2t9>Tp8A<nE"N`s(3?%`ZU*<H'JC+^nj
+PTa%k:*V+.M.7A3j>I)oF2^g!r[:"8l`)B1N1F2r:Mp?IkcnLG-j_5+l7ELGTrU,?P,/qsUV``46,]
+\9B,fLs&MWL9p\NqDY<?fbUHh`@L<0[gg'e32`bb.c^qD@1f.NZGd%?iaGHa32OG,E7)h"_?n'^%)$
+a_8&CF5gKs>AQK\^B4#Z,3-;pZ&5"QO<m+i**0STu'BkP`,ak;EC5gT6AV@=NA/>JQNe96^DG^5^mr
+5&_@Y,@jU`<N+%kpK\oMIF')BoM&:aD_IFM_8uX+Hj?4d,*hETk,j1\\6#bbm1'Y+(csRB;:BZujFo
+,R0MY("mTdlD''!_02/N2D_CATJk$Z&neg_:a=f<`B^?ad>nV3Mg/=L<[1%IYsjPE(m"_ZgH4`MF@o
+h-*;1`K.`e28Pj1)L_9[HnGp<eF(H<bJm#(j5EnLRtFMX+AR,<Y24WV@X'nDNCT`kfI$l'.j03$irM
+G1*<G\WP$F7h8#CCkot[mI$n@^n\Rp[@[)H^e_`QDe_p/.`'%]XeNf&i@OjZH$0><j+ufPQ5N+,MX2
+djgL.W&Z:4b3b8]29B#]_,`Yh&[1KZ"h7Ho24.b6%Ea;u]S)I,=U16,4<-85'jcVVUCh64=[L5]29O
+uQYl8(h;;1gZo:X'=Aa^-IV@`&palNS^U0N:3E&SHS8gY\\'FjLSaHd^tjh1R1Kh?QgdDFbW^*D\jo
+-F#W7'brdeKLEdQa"=rogYksIL_jr]_grF6T3e**'"-=?[<of&a1$qI''5rYo%LUR'XqIO%Xmp4.%J
+Jb'2=lSe;($_1nfVM(k2sWP73Dq-Qo/I5Fgr;CNV[3j5M,Os2$qB$O_c?iQ<'&@C."n$b3j$+PrBP:
+8T/sn#h.?%.M[+$Z\@3Z6X$3`##G2/I1:#>\Q7Q*cs;Q<R/Zr!1YB:Pj&aK]FJCDE/7:G3m,B)S@8K
+T/F\!66@c/GWN-S:d8#`cW3HPRWf+;=03!^rVRb;X)5^SJgs31Q5NA[dfI%ZqL%H!e>j4Zn';\UXUg
+b`2UG5J$7F6@KOk9Xm[qpR1?huN2ItP\c_/!TJaVRN-+=Dg)0AFf![UVhK&8\C<0!N3DJU&_aK=bh9
+M"PjB"'k2<H\fmp1@=@hjS9%W97t)MpM[$!iksHR.ClqIr`bJ^TP@Id8ib8CT$es>5TrpW(a9=hYYK
+9.4rp,elki1NB`N<Ss0taj_N1uY.[YEOl3*9-*UDG/6u1BKhE(*a=`MWH\k%t]E])SQiGg_P/A?Hbd
+gH+?+(k_('G6(9GUYqc:<2LmBFud&f$@NpUhOOT+YBi<4K&f?5Ck<ab(J:3Z6?1VrN<[D0POlZ':TB
+Ae[sgO<=6AOo;!j;f8Lusc$>P'a@fjuq,KhBO%R7l'rQKMC2EI[`&:]-<VV"?=k\5_UiTGfL1lq_V)
+kBQ\+PA7N5DPjZ1;ZM'\-4f=`>'A]BZ%aZb.b%>):!l"b[NR<(.P7%p!Lc#Xn'306?\uh$*8ogmekQ
+c(s&6_>mUDhW_PQ<"SppO,cUcAL:DUUcb3!V`iKYA.A-a^p"3X_S(fV8VPcpr7@26_3_LiU[o,UUp+
+.h2/4dSl&H%M"f:`C%&$QPK;sRs.de4aF$Joj1)2_YgOZ!+L%tFjS'&KK'\'N.oTC"Z1c-9f`45"V:
+qI'taX.@WFCLW0Y.lo6_Um<]`n_^i%@)2P<u:Hi?$?hLEBjEuqu*h7qWGKjL?bPf[7IISLA[hc,BpO
+Xs(Xi;ED;A6$nqA5FoKk)<64BtTZX$3+TTRa\1&<c8$*&RX#e"+(o:af3?"]WcHE\[-ull$2=tML]m
+cYYIs>JM*IV`sVD@6Cc*Y$)P[olEc.#7H'5?R>U\7?`=AJ7FnK`M;i#O7i.M.ofds<kPT2\JFF(+g3
+j]87Lr[d6'oTrJ9X'>oiBV8mW61Gq;d.IZ5.,(s1_A+Id6H2`p#E@E+Nqi<WWh<"n/KlI;q\P+E72!
+&k\A]kDpip_=AYFuWqM&C2`N!du+SEd19F2:DlEc^!e?d?dl(tFP=@m2?AEV>'\A*Mj>`'Hjhd4'/d
+<gD>H"h7iN9^sNC%?^Ba?1[T;K2X;*fg:[-Eqb`WUpUOk`a[Fg($)ZT^=!l&ss*VedXMg*BabPBRU4
+E.s"S@i0ods#+#`)DMjdl=sso`IrVF/i^aI^HN#4#qiG61[C#<,e9-N_3M(5u>]8#aWo<oB6$i=d4*
+%>!r_bo.r5!K.DBN<Xh,@(t]6b1EiH]XSXJk.A`__blBl'Mn&QQNJ_0hA.g`L`59SiQU0k'K_gf(4i
+]/sAKiT0NrP\l1aFA:Lt;uSMVEP9([r#bLi]-Wc'hH*7(CLua5N;pTboKQc4mp?K)VS6)LMbK3#orT
+K:n>=CON=<43?>Z&7DY[TW0.fWHZkH7"rru57\k".Eg6K/dqjqK^JP*q00P,Rd*j"#Eg9?E`m:nC;<
+\T#9e#F'G?s@.$<(lQq4`HY2]j--H*+hWLE->cYqt!i^O\=P#:Yo1.gNg^5o79a6_*r\;'5X%hM`E.
+hki6CYNF\OSX[Sucj%FRGSdOY41Pqf%,U+`4]2GeiWP,6[U,rWQqCY##(1-TATefcZX57CI,5Ac#?I
+d/>*L0#bU3ll*N?;Cu!mohI_/]hJiGrE$.;;;:./4$:F!4F_ZZfo>*abS]J>S\f:uWjlhJ9+9;Sp7?
+[Vh#g[CBg*ASN@uf;mlOe8V1_Y]l$iB644aoTTJ'*(X3Fc.V>8kTrUGr:k/4;>=:MF+4s[LE7lqS6!
+oXbu-,=mmko8?(n'^(3YVG#3@#=jN!%c"r5.hIj#?8+j')Q\%FC>+7BZ'2BCNdpoa5oL._%-cY\@g(
+XEd5i:aOes*U5akE;P"@g:f)fHqcj"6Eh#jh%-k>):_dGM"7L\t9QicQG=1rl&tZ*<pT6$R@@2rF70
+Nd^ArtPbpiNDYg0)1nOV)1PXY,/uO,S9]P6gEl6pu_1'LN#M2Cs(bJkD\jLYp0@Wo'l<:l4QUMqlqZ
+k#Q!;?r:jm*N+EkfP3/GS<Q@K-2p)=V(j+$*5,ms^@>U[7H@&g8]8Rd[s1VObL!>*ZeTH6%td^5)/a
+jOrhmG^difLgMacS@J!+c'dl8hm7'bjnJb.(k&JsH<pfRfKF/.J[P6b*i:p0VYs<\n_J/dRh:+7CL,
+'"jcde:O4'2A`ii`+L[]Zr_CrNSUHIq:5J:7YW,bJ^W/Q;r-o[ne>*S6J7VmumalK>dXr7AHNII",;
+e2.tTldCI)7E'P0dR!3Rn/5_Xi2VSF5>=aAJiXQWE>B$Jl8:_27!bhiZcYNEAB=F#dk3#Yi!Kc,#P%
+TOo0]Yp3+K(G=5P&mK]Db[[\b4C8PFm<>(i*S4qlLpUbf6G^g#,>hfc3$C73G)=?6&D!_(Yh+W35Q0
+:]"FY$XY*CSX@"^>'H>7S=IJ2^%&I`q5<EqN?b@)H(d1BiE^3ZUN5_&0HFr4j,:3k4&VbmBK]]f$++
+p@ZRe&_&E,W:+M\;DX<;66X>C\h:Ml("+Tu-H<kmDF%thI.K16Al#le:fLPO^;p/;j!?or)U.kVSFr
+ha"O1(S&Q$0f;6GVl/+[Y/j:^H-Fen_Fg#Umnfea:/SI#9LMKPC`F;\u*2)M-jfs^s,EHOeqmA[@'L
+-9fj3lk-/U?ck'e?0U:Wr36M5_Fc?b.>8%.<KTiDsIb/e_utAg`Co3Gn!uT,[SN.7A;>SJ9(ASqCQJ
+GD_8iq.53/_RL#BTGIi&mVB1/Qa0X`?`iB@:d[Lg;8T;"g,erCQdAg8-aT.%"9/p*@D6FApJjtKkfl
+0cQ0VlWT+a[:DQ.e.K%2*4SCRjNQ2S*.ZO`3jBV_Bq`JB<le3jPLQHR?q1;R#";au*oXCN\o@$aCZQ
+2<CRMUir7"q;LV&2E%QURHf@]du)k7J.g>D$Wm_T8.J`/VUqbc8Gt'j;4?GM(W`S-E2?*bmTEdOZ=o
+_i8&(@7X*=cXQ'@D)49@a$A3j$rd%0r`X%M&cFi@sZ1/H=[3tJ!>B)&\uF,=(B4g9FA?d@lbk$sJ\F
+R%C!YgCOU@LW)s^Pe\bJurA0!B$EZV,e5<lA`Q\<8S&^>>u.WiEO*3eX[EV=FkBZ\h/6B#qVLdgF:t
+al%WM@$:q;EJJVp%[ORk8'G1A5jc]blDo=+Q/U7bQHa6_eZ(Z,d#^f8P8<8=j6ma=4R$fH9nl9qMJj
+K*41o(Q0A\M8Sjf7;VCDM((!V!]c!^AR'SC9Qico6QKe'6.E85QUhf\*jZHr@;Z)3H&!9R.SU:n-.&
+'"LHb<gm)a_T:q<3-73uUj8^O&k4kC&OgJX"4p_!#8ELgTY.7f/6_VK7AUU@*!O<"H'h'#ZJl(2?HG
+iDJoXoDl,4"Pg2[LLA6&fs/#(UqEP^W>>:F%3-!3+?n/2dX1Y*km@EidB`gq:<HJW'P-KeseIG;'NJ
+^ibt6X8RY#dT42CB5mOJ;RRqaqq)ZCUhr+NFFA`$e`.dE(sZV\a/Srf.7e%\tWj;T]!_cr!Ac"+ia[
+M7)??7@%s3.NRW0$(\tail;A>m'\E':KpK6@`QB\UY6@"k5?bdU(1'+GS$Ed`L%*V`R6/be2b]:V``
+9(Er#dI-ffAFQfcuXHML^>gCt%1\6_gBJn++@RAZL#kI5Vg\1FE7BXGi]Mf\EY>]G?i)S)#<uiC4aA
+V_O#bE%/1;&uPN+c7D8?FTOL3EM.QQ3bWceS`oapJr]i+i+NRo,.<.E$-h![obtli,r7Y9hc(i\k9@
+@6f">G\`S6rjNBK]0CjLnH14F@6[9o76X)+]?lSFJkHuIEd'.^/'.rsfd^ZouOc>]jY.51;D[F%?Y%
+ZpApO*>RIZaMIq_,-NUS\b@AD'pA\mt1beB"r#h[Dhe]7+Y0:0*D+&Z<L$hK"]l\o"DEceXUD#:*ji
+QrL:&L7ArN`E(>e8o\r5GSMp6UNiolS&tG6&dTfYW-r]*!eTd4g9>A0I3;f/]Xqhn?PE:MW^PdiaMm
+jQ3$'M2U@3&E#>MiKbUt/TqRpJ2ffp,cI*3MB0PFAe!UKOKp=N+X\3AIO2:qVr)atE&:G59btZ)qu.
+>0BNY$W`MQ;\Rl,?+s3)fNJtQCW0FoQmbp:)e?=<n_3k/WQ?;lGcdK.r#g562V1<s.=%=P=i"N&BY\
+GX4M7=G8UNjGa_m*%!O4\bMog>8n*1aAEFZMMT&eaRK7*nH?Q3`*NCafe5r):f+_^gqX1-paDEZ<N>
+in&Mpj=O`L:XH[^hf#NpW,%J#nZkjO^DT2!aqVF!>H(SdZWQDd!,5r^(6[TBO38ka%4V.*LM&.eh,d
+A+9\-(p@=ugYKWNQ/!;ki.8!Nt,2D\oF3ZUP]k`jD@Jr4SDa(JlHDiOOQK80gY4qeDn04#RXcm*EKc
+ZZY%u8512iUucrR?Cgmed<+T%.2GatWJk"')hX#"G7!O$^I_]^2O/^0h+g:'!&1@nA11"7i/s;ZkSF
+\Rr*#e`6K3ZOl)\O?B&[^o:f@K=k.Z`J#5'L0Y=[ZqpmuK9p"i\j\R0)0Ju>436Q]>!fCX(F#F"OqV
+Ph^09!m%r2L_V["#A^d9Lg=AHhnX%K\I4T2srTZg`rC"6-;=)4UGBhlj*?8&0@+fn@O4j5tr]!t2GZ
+"\(GE(+fIIBY2s$@QS+;P.r!dB0m4)C1^t@U`+\P=Nftg?p5FJkJNrZg5hjX%-kVhf<%F`(Nb'Y!c&
+?:X-`;3uGm^"Ze:*E&H5\_D$ojBV&]N-84dN/sD/E46V\r_DHr"\pU`cJ'V#,hnnMAs5j[WD_9V%/m
+J]J]IXlVL@($Uhc7HX/YYhbHO]FO!9c%`>&WBi6:]q9`YeN$MF]1A5^DgbjePS#AKUqVb@N+ORo0D6
+bAa]tpr,^):A?m/DAptfOcl9WPgK:Ih3HY"cau56q80"Gl[Hqk8IrB0,sVCn(G=T-:$a9R3DBS#K?%
+=NW'BDWF"Z.+EhuCuE`[,D=93:fiM.`F%o(GF7bMO@X"74ka,n(c<<FpM2K+^WDNtc5d\NL#%Wq#Kd
+=I)3.c;p\URYGNHaeCJn+B'9<m.Z^$=((^rUaiFIJW(?q+H1hWik5D(^</kPEf:eFnT]kVKq]%e29i
+.SSDLD6itZ)l0WY]l"??uDip9bN'j9@j\h8uU'sJUJ,tNckH41Q54e$pD$X/jE]=9]IFtFbQ\(`5l?
+GCP,ZPIprZ*E4ib514]je:G$<"TUgD4g!!HFBA[ToRefeRS/?,"F5PKOO1?kJX^ZQ8bC[f(qPB1ou\
++R#L;8F,/13E?Y?q_.d8=,U0UG!LJn]X0eK%R49(=uXTFM?lPrhq!E1+0b-#UJ\oc,'KGW"W+*[XWh
+cGMi]tsKrDP2Z%Rb?UrK2=Z=tBp1aFXm1G=7(4i]-Dc2aqC<Eg"S$ZOor0LE^jf`gn"E)WB*,?0mP,
+#HNAoe,hAP^D)KEo9l5h*osXV7/lk;OB:1:jqgGK5(_T?capgiRKjB&(<Vh0X`.k6Fgdnf.6t'm;0[
+*\lJTSE?S\B6Jjuf7Tkc+lR]1\@<F6,oS[PCqV;^sFiemsg>.<T]t_8Hl?%1Aj]r[39VDr,;_-glBn
+$1,+M@h83Z1k7%8IXP5NV\mRoEHMq6t;!oQU3+c'-:Ko'Mp]jm+-u)V@/,<slVp8'jW/f+&nP-9LTA
+2'@eHFQR0pkFIoAV=e.L&?$WHH3oaJUYBBp+GrLK\h+-*=DmXj"qrRiOQOtZXr,Fp=Inr,UtR04F&d
+[IYJ48&Vf=\JW0\n@7's'VJ3_C)Nf4/dJ5Ckhd?CnhlZ+C:1b[BV'3:bp0k$p#MZ,oe&SfM4^iD!_(
+ju9IQBNq_dm/Hr(A4o@MMu\19m-U'H6j!/:cV/OHM,jf7;qbWYO?phrl56Y6V#WmGKIp:WhA`!9I6^
+?;.&Dmm)'!e>QpRM7IhXdST/!k0+YEn!k\X2Kk,B;eQ=,`*Q2SHWoXl]j'.8ECR/JC:.!3;MpNuAm6
+l5(c*4nKZkr'?J5VZ^)2rn?H28,0qNbmKcF+l":)=2soA393=emRmH"0S44'\NsfRul8OjKo>Vr[-X
+#M=]mU]*$a-B`;Cac6J_#+>Zh/E'[^lY_:3Un0S:S3\L=F6M?eq4TEp3(a:dWVj?s0RY0][Sc#n7KV
+Cn#/UrArn.,B3JrPr8=Wlo,gLc27$g3>g0bj8#WHBp,Ue\JC_7,QP$m!c<B8=$jC!87/ILN!/sMfG&
+&#r2?U=Cff%Q&j$q&QcFe"mo/$0eBMO@ak]rWes4RK(Ud%!Y:P^=o3RFk0SM!L)I(Y8'PLC(,c2%7p
+h47(S>9*;tr;N,XoU7c3,.'FjU?$2t]Kr`0iiFQ%#MH'E5^[LtBhf7VUTa`B6P31'Kf?&9TS'(!ZR`
+EQ$E%%/oQm0As;&.=3*%Y^Z`%m`Y*;aUs$8:#Ze\EJt]`)8HB9"N'cm*8<:=8V<A$I]-QntO@>77Y&
+YKh4h&0s'<XFI2VGf_NSN!411]CIh9lEg]RSl7Vn2pfqE&M(U:nUAju8=04Jp-d&/`tU2NkB0PSl$:
+e\C>a)^$g>ncAW(=#J%=d8'"*SQHR/d:+C>u%VNQQuk"]W+/?b3.(7WJ&/Z^i.d;M.(27ScQ0R]]p3
+<6%Idm<H[=Migq^uTkC;NJN1BX6?/$h'M+FhiV)K?[s2`gh[:.(:%7M&2Y%_>'05.585a`\M++biR:
+ScM?RG65i=*](XNV5+qqG&<=_fTp]u.kAC=>b\(:c8;008l'*3e7g!3bgF:jZ"isY9LqaT$bX1pu>>
+<uRRkgY]a=3Z0JAK?tHQt0IWM<-'no\D_hdlhBpu6X362#I1-JN%>#c/>(`X3/.&;,uQ*I=n.39^mb
+=[*DejWC''.C"#\Q$Dln(d`iBDgt:ApAi*ZCp7cG1aKh<d<dfoR,Yd+N^,.!P7L_Nlpe@%)-5si1>R
+RB*cm,;*o$1_e4Bo8MdViIVNau+5K$,((_lW3$jK"QFrX)GSpELJ\N*<nD4:?E3Sn)`=R;'>*rfcL9
+0I_X2;Q>SGu'?'K3tou[$hjM]Gbu7Pt??"q!<7nM\UOrY<u3K,*WPPfa[k`'tV!eR,k<Xl3*sE:?^U
+NW9^:[3o:[04_p0RWpk-kmmah1$Nag.Vm#(C]`;mG>f-^@D1U"cKegi[K2O65=8KOj?O$56Z;M`Td:
+C:D.j<S-J.h^`4U-L2hGeCX*]CDOa*qeP24hW:_nmN;HX5G4;jCO!#2s't>_rj('Z_!jrR`biTT:0_
+C$V.K_<l>oktr8'XOS^N4^-t$Qu$l@?'jZ49'b\7,=mT3i<Y$n+-78';fn*6:;KTm6nB!/a<,NO#l^
+m]2-XA+Z+&Ef(/$DOaoOB8#1Aipe6.P\H441p2$h<7.k#@"fH:1RQ2p$tadL`$OU^B2D/'=,i"WKTU
+W]r30s64qZM[<FR81C))S[Mn6?6Hg@u1#bc\U@837J9`JHBD.#\mQacY2jFBVpDh0LgAScnf3gm=%:
+<ctl[\L$9OR`jCbmIunIk\l0.]G^Xl0G%V1L83efQW1,5R*6H2+'RIJ.8Z,rK<Y['>4t9WJ`bM]8dE
+Rn=c$&2>5$Lp+NS$^KU50'6BpTN:'g.=L>n,@oZ04WKK3:!HkC-[_If6"&U;"olm/%\3Nu5oK$Wq;H
+\`UajB3fo:.oPO?@@1f8;OSucgW7n7IbLtis7jS%%]$mic<[!lSl,+snt0Ol-Hh\5qXXuibU#\tF'O
+<u':B@!0l,.pMfqkFTh<7;YVlq2;MLJ-</U`eVsYlBL%8Y@bZORTOm<qoG()D@.sqn?,oqt<6JCU:N
+J:@/5W9E8N"1rLe%(R)0UjI5qak:e,toD<WFJ)nfegQF2]lR_e25:2nA&P&K,V:T,]!ZAW_^%QaEnj
+C1+EX,?qu(_gF9:a1:_)>B8`7"YY[`Wa[p<D(l)m>Ylu3\c":.!;nlUV6bJgKG(PNk!2Di@Vh%h*VM
+%[n(t180NPRKb&?\<V4JGg&^mj.f,WD#SG4:-RT\b0:guXR_r?3&$&RGnJ&D:5@erVbU%>T!N-nWKt
+#;)Y<j>;Dd4<#!ul26"G2sQ&JB5CD1-=]kG)^RS<%gde8`<$]N[aq-cD!u.*O9C10)EfR;;uL>2;G?
+,1fq=*Bl"'7blXu&(8ns@#)Z`7*ThI0Z&L,N(RE8Ftbt!$?4$osOL(kWOiIQ!!]"aB@1ZW8['kZV7D
+s)n0&`WjW$H,0Tg=2\'RE@L-)U979*EM>6PCuUq8'?i^IeUt!0_\(sOH6?&[u#eB+PNO-'l[L.3a$a
+/6^Cr%\'/i!*^P4M>VIWe*.uFB$LK:l]:Y*%j\&*.9AN=(-N/5:E%8#b`/6JBSXGnRGZgT=OAN<'!@
+\`G95$C;2(!_G0PR^H@u?D**S*3Q:$IdX@$ljMO]?HD-lGt=#St8KfTCRdUTH@.$r84m\9b5i0aK.)
+d,Q63'2sMYUaqdNaPGj!*J@_ib$l<jOaoM(n$:uSK[Wh%7YK;$0K:RE]ioDX8XQYeff51_*lqarR5q
+HI3<?07%qd;sHfX'ME?1!r<gDG"!Y^PA2>5\>@W=j=,-f6,PN$(8V8.slPgpIE__t?3CFU1KgD\046
+&CFnKGL$XLh^fDmh\5GHX'qAdZdQ?)NdX@!<u76kSjU4G-3Ac=.O>!TbUC=;'n0d)ETWr_DEAjH-iB
+.nOlC.r!Y3ES0gLAO*>8[7%E^l25)J=X&oXQ$4j3JmHJF3A?7Du>)64N@34gtKYiX[Ve&FlYLXe="!
+IX5=CTLHHEA@i\lah\Q8S$\Kh8k);.2V[+\(t*fb$CfL3*],S(q;b'-2LqY[7F@REo4G/jBGo)MfT\
+>?[[d#UHgj,]AZnl2Z3EJkEXE(!ntWMp9?82*I7Y,l.e8q\k-/O$;F[VBoGLftD'hGKk':i#TiB&>K
+-AonrjOSbeQ?PK2NfB4"Gq<tmNBdcqmJDD`,?gbu54eK2J-]N'H\I=:MBXBaH3H>aLGs2#TYRDEehS
+A=Z,J(g3%4\(l`cMS"*0VZ5AIbP?s+BTVs6/>%RYu8'uOFHq)M+qpC^'<XZ$`(fNN)J/g-5cA''bl_
+Y.NgfBVM&A^\uq7]p@^XG:FUa4iM+uJ"'&2:9/1-^HikEM[SQkL;UKa9Qpe+A0/A9EI1i`L>-CAs7*
+#!kTb'N:-k+U6(!m^1q$6QNUqf%C$^9!K[Ab31,32$=gB!5?i/?h?%VXZd%RmtRZfZE*me2U0QZ'3/
+e*'VX?=+6*LJ97\G&l?pR>E^jC5;!8cgb,AI0:Xee^"0Q&IQbTF4)pEbX7s+35Oj#lW-gu@pQ$CRtR
+J&8TT@=4t4XJ4H8cO@'$M0gh7S/ltg:6+aoW;>;*/8]^7n761?j;>JWXN4>Xd#VGaPYQ0+;_Yj9j4)
+nHKb/VV7.!+%0F"C&%lfR+fr/LN=GoA%=(=CZ3a&hHP)pMVO91bp*kH4%\EmU%sEA58XTSukf;r4+r
++b$_NkWV>oL&\94Uo'Z%GXL$E5XiX1ZAd5W\W:bI_Aj2C#F&PBomI=$b+):CgSMu0=^TMq<^9cGQH/
+*hBqWpFkgq,5cT?mN9K?irS-tM$a6dP`5kmWE=M`mp[U*FAX6Z^VJ)7ppGP_REY9OQOF=9h^#rbdGs
+m2(,2C'oD57s#CrI:S4"d-#16MEif_1V25F111$2b&7u)'bL)A9U.1pWrLrO];(6I7m^WSZ"9>826!
+B,:!)',2M<8hLrEY##T7,TbC-uO^qNe5i;E?;^KUl"F1D3V'0L*5((Kde%Xp;SgNsl<q$7jH:BH0A*
+D27,_Ts$A`0thU"QVod[BTsu8)$BG,acFl`.L`2b0q[m1nPg&nc78B(0K6klO8-[&T8_uTK`&b[>LT
+#'mI5Xp$KA8cISR&cO2h^efs'$2#5F<-oQA/2ECDgm^.VLaQ9;iR%q;kG3EEY7r@d"-A'm0on%,Bd&
+5;8V^d<-HVX3Hl[/OaO_ifbjcXm5/Ho6X@C-_U7G.5QkDs&GSTI[Ck#g/sDkt!,MKm\g1gp[YA'tjU
+.9p?q?eqOI@Fo1i;@cX,ejdA@pl>7u[%l=<L?4G"Mm(8KX_n<RRXl_[oC9!]rYk#j6aD#[["h$DE!P
+P^jQ(Wg*Hn9O2+3A]1u,pNMlks`rHgFn%Wd$-a4#oui-po.@$m.I3i@^1h1Y'f5Aj)fhn?6;X2/giq
+IX@Qbs>FsF'_?tp9lKab.#8']Kb"giLc\uS-cbh.Y7+K1Vm:n"N&74mWrIA5&\r'[%WFL.u?@bYKN:
+Q2fE(_c,`;3daYAMi3*`M2=9pI'krXHOYS?l-',HK'-]0:4*2'-;-V41dD\<;j+g&;'@0"OqsSSUE^
+I`DSuZH&iJF=Y^<Z?>9M2!"8,^W+Qh9\ODC5NWbZbnf`f7:@ijcbuJ*0QZ0:2rTB55lA]%Zmq=CE`/
+PTMhr`gP]`jU#3FHO*nlhZOJ3?=Zg^AY$PYRK*'a=*qn@TD$gtf+Ho3F3L9F\*uUgA:+1(%acbC>""
+iFVElrq7J9+g;<b(rorY@$SU[p2:0'QS`,Zda.oV->^;Od=,Ij0Lb)*M1AZcCB)ot.2)\\C&Hjl%cR
+/HktC$/_ZgL\*tqOW/)>"XlMs7Vk3LGHdpblloeaaV-7X9Ij5i_a'*$NTV"LqE&5?+:.>SXYQb;@*3
+`NubXWW$CdtWFDdrAtu$jn<a@69NWE.]i[=tP"T',R+M5=Lbdfl+8\8#m29`K8q5\n0&sP!f2k1Vh[
+(9p2t!7k0$gqRnpQPp&!%';Esn<&\+9lCkZUbI^1[=TM:q],i#^4X//G*O4LbpJa*HP04%AqQqduXL
+3/U"t$PMJ\TsHZkau8kS-G$D9^(C1^oCMU-5,3*CB^a3]*1H;r7Z#4(DM/0G:F@%Qo3W#h41%?^M),
+&M*(c$f-j[2="Z0B7,U#<1Jh3msWD6Q*h"D-2:$Ku2=L7j[ql,t4onr^h!P./<r@dZKm&6?XDL(!c;
+;-e8e.k@-jU!9,]uW^iR_qTYn9<098WWL_Ve4PBrR%#9pY@nl7E)Ib;rOGFJK>>J!(U=thV+q=\3"U
+9]!^9+Mh9:#,\h##Y`sk>T!ONs%`:8-mU@)/(Q2K.#jlYc[$s&Xnj828b5jDl;2'=\S\f8p'#ob$FN
+d-+?j,t?Ki6n?8j^q%*;]nu,dmLcb:01r2XReTR.*.[oZNl]L8/UjDQS]Gl/VTI\5]_#Mjj(hh'O@3
+oZOo(1?lO,-GE\;.-H-:Ao14krd9$PEj<JRhV!%/`iln9#fY%H4t*1>F;puBUUHl)Gj.mZ%JFXuI?b
+,\asEW&Q_F7i"hp5*PJI#\A8%hQE<8&j]=mn4C]l[j]uVl:HMac/\6]uaC_U1!LWLSlIfJEAd%>I]9
+suRb6e9D;_uTT+FRWX5Q8rMcDG5S?Xh1Ot0Bh(/$o"loq#h,b>O1"h).m/1HY1uLD6?]DF>3J<2C=>
+hCf.]K:H\a(q?ZD/[?/[[fTSt@23ZVi@R&1X"P.%PO6]W:^IrpK\MhXo0TfFfdGAkGlh8F6['7R?pj
+i-n"%3<GFUQJ3(Tr!SWD;mUE9rS\driSma:P<f]@8,nDit_C3]-11nG[Dq%3c)Z[[14aOOY6;BH^eJ
+neJP!]>5m&HEG-#S&##96UeaGn%@qM<(6f<gJsuH:rG7oO0lQ.Vm!e8;/NI=CM35kMBP:g(8!AUOf]
+t">fk))k+OTBI-?11)1&ugpr@0=s7U!GQ@AtSR6Ne<V.N/]Jsm/V+.&\0i$S0`/ht9W&dnDkjufitM
+e<RL`jlb/U\<\Gake]n0#A9"J`LkUiE/O/m_q9rXjDX2Rs3/)Fp7u7R4G\'*0CQo3)$/i>3ObCjRKc
+mbRmgUOP;Z+YBgKA]D_#>lo4faAMm6<`dM`/n=&gp8R?U<WIe7>K0c^cUaFCA7O/&R0""dRY]OYunk
+^IuL+GOJ;#&HJFg_W0XF5MBr)mSqUc1(*nAHg(bZZ#2(cB0Ji#?/1esiTH;R8eO/:-T%c!LkJ3LB6E
+]a(=""-<F6]sM`a`LQH=O^3":.TFKu%?3o:'W-pV5sC&<`kDi>8oT;UiZ.BlOSb@7eqmI-$Y;r$4A0
+Lh<AI\pf6Wm#j_TZZ=>*@A'1GNCmSjWIa0<_fd[\IJk"%VU:.L`[)jWq.8h(I#*QaD@a44,q9mHEFA
+*Yq$K)!74JqiJ-UD@kqN`N=S6D#=TUaq:N]3Ks]g[uJe?LuQ2BZ;bm3*@ErDGZP("X0*h@$bm@olr*
+?D_!fn)hJ^6Kc.QVdk<pJ/`[[)F]Lt#OPUFpj]>-)FF6@5Y3)%`B2CG9p:Q%a6Q7,&Ucl-IRsa,,"Z
+&.\D_K_>D,418Bh-m[K\[im(0fI6;&2AZY$<Dl?/6O767^BalMqUZVM!WIpr0`#3mt<LpM7iYBkHj_
+NNmZFkB0+M\naXSVL`4l4aVjmD':6Hi5sZ"D'fF]6WmH`eX4hj&A<86as3p,lJ^*'VJG3.KpCUD]P;
+^35;WJGpP'Z\Lj]['NgGQK1J27TH5>M&]iO=s0dOpUPb!GX0Ls.4=B/->mG*q^qDH\ZeqOBG[D8SAK
+>qEJN`spgcMm7>3YF8f*m<XR[cEk%DNr3[3F?,7/HgnB1u9@e\H]8)lcZ%LE_JIbKn^l4Z!UiZ0<.S
+pChj4\8[__?PS$EuH2KZR`qMS?d*kS:Zl2a1k4,bToI#YY[\[QJcF>tKH"r?6IJ6"$cqgQhj:tJik)
+heEEpB;d!"IH1R=BLhh3]`J!??2Hb8Q:+]LG_OZf6LLqfe7^%WSp>-IhWhCig%8X2QpU-'8I<]YHp^
+ib?,9TiEP#VBB;!jqD[8>:>l]DPr\h2(ZDiS`l*noaXok/sdGhfL0l1U>%bVD5nq1@?[AjEnSZI9IF
+)e1S=DO+U;aG0d:)>h$f(mlc\<#[oI8@YPBJTVg8-gdrW2s#qQY-U5pVceQuT(?,MB.;+'c\]:Hura
+lh!Ja%((QMp^iF*UQON%UWQa)M2`3Y2emoB/DObp#ee685Z)1Veq=,Vk$Zjq!b6#5<FSVgsn%+g$dP
+16,Q5VX7J5&3>8$%7m22Xmqk^KqWQjurH?k02[rhl_iT'<oQ[r<_50.?9:jdK#BkHQkl.8PR>Zs*MA
+_9IrXNGOk<n@\F$CHU1/X,"4PBeWW0XWBBKt\'IXQKH_$(R+b><;?$sp`gPHQX#lge,M+kY6pV+hYM
+/=-$,4]$hfJurR-\VE0tQG59Zn>^&"ibRl]W0jR]!:t,DRok&gZA:P**U`s*U\0OMn9:)KK&0pAf7/
+3oHif*a=<2K:P)MF^KEtA/7N@2[G48sb7$_Dn,OoC>D0^..M?t)@0Q_MH&;"uQ[EgWn4?B=hI0*M_K
+t4^(l-\VM4B=R07Ytmh\>/B$[T+CjCVcj$<`Y%SV9#3l(=B"\WpdNU8F,@j#YhI2q[#JY8$Mg[gi;c
+'ZsK=ga7Is_<hPOeM]A>RmPNQ&:<2CUcsA#HBA/+Y]C8`U?e`t=,6_HXg;biG7%?;0Ysp#,^=<nI]H
+?=k'?SSD1ICPA7\cA:O?<nuZU(MGJqWfAI]f/ad!%]mbhq!lNB6.LLhR`q?L&ghE'/?[^ib8cncCG=
+01#E-%A>5.G*KR2BQ67O'b0P_]@+ZAMD]0a4k5QU1LAl0O@FqhFoS2O&)`>f_[6_Ijk9rk1'^5*;3o
+l>eD"mOK2TrdJAVpd_9EbuG(Ws0lM?Rmq0h!a(0\X.C<QYC[S=JDZZO@.Z[mknI?GU\%0)(k-0V15p
+Qs-]f_8cZ9IQ9)h#rJ_"<d%mMPBli]sLWS\NbtYqb9bSJhS]mgo#OLY#i]<fAJ`3^V1\F/MnjV$Zur
+>3V:C9!U($gamD*m+L?h2ri?sLBWWdJab%d"H$<Ttj)\kr8'R/,[q_g'.[0=uX`,1FfkOsR[&l4[i<
+iPS$,K$s=+TO&W*]%94Z4V_N7n]q>t^t,N#\.coUTe5$!TWp<iQ>L&Y>ikM]InQMVXpM,`1"O4ef,4
+*4Ra>h9_3'AT5p+I+kcRrM!$%&?^I;jp##J+T(s+#l'P@M"Fo8XX[<5Yu^Lb2ilg%Km2Dd+?bHm'Ae
+a/GNDFa@8S8KPQ7aJc.>2ZDY0,&2sdD/RUn6,Y@\9T-e4hNPd-i%,CAIU</IE"XBolf'05K>@,<o<9
+kqIF$$skfpN#,N.@qWrE!/T=@GM".ST4iN->T[6IQ-[;[%IoVTp@dK$[uDh*`INjkYrjQ)?XuBbM-;
+kg8]psW[fCS21;f<s87S])`nHS)OuI6Wl?V\H^eD7Uej'R&RAuo;R-]kRF(gL'*@;W&-opO&4b*+X(
+7O)WWP.pC2Duc8b35Ab^ft`-nV3n$IB;:mqLP!'b&eO'Y>S'3C&'mcK.#R]Q(iRN$AC,"cNEL4dFud
+]_M(p#g%n1AY-Ctos8LQ_P]4&B6Q_F;F2oTFj:$G7j%B!iN-W-gg@eY"#0J8hRo>i6d40e*1(6Sj>g
+i)0mHGa0+I?4)/9B(!Ve?WU/IZIjN!s.b[_GmL[gVf]O)b!5'!1_=-fM^CF_FNW#P&D]n/M32[<$k6
+[rgGWk-=u.6HM_k"UFC)R.X*&%i",E8,K362Jm'!)Vtb8$,:c_h^EG2u*YR.08N!"7Uq-AMU)WU`%-
+Yr<uF]K(G$^S,8X^h`LO`Mq?#rgH.l2QT44C#[6?R>6Zs6R-mUB\/em5K+klOaa9iOHj)IE/]!sRVi
+jBpJac\*$fp'VZK;\DJ^U*Wq:ftH0E1/1,Hmd?5#6:Yq8]fZTmpP*a>`V%Tg>K6RVG5"hLm<6l)iR(
+`rt;U)u#k8TGG!qm^]G-[J96IH^B0PBQ3VScKFk`S+u5%A*Is"`Dcm;1j4Y-^";jmb_TZB5<Kq]'o[
+),S\!/4Q?Nk):6V.30fMH(CPX"P2ogm1D?f\0_o!A)a5LfS7@DGf<m\RoH-@3tSW:T[\mdDND"i7/6
+Sj`,[bSg>euM50eAP8IB"7!pVainV"+*D[]=Fr2;N,e%E'*]=""oj0iJA\i>ui%nI6,jZ$IZL>"'k<
+`Ci6kg*G^fs:QNT/C6uROClXQUfCd'<591f_\:Q5SHOEkA<URg>Cm:?7cqZ[nWq1!r@Y435UR$@h$\
+dG"rRt[a;*Ze6XcQ%jBB:J)68a[;\`e*?^>_'*Rl65RH?o.sjI(s9Xol(F_2_B1JDV8B'D-C6//KMS
+I$h?TBHRFu8'EDMgUo`9&Ho>@!>FTniM:#n*!?34GS)gnMhslec^7SViYi-]=#U)VCki9:VsdU#2/E
+2^`JUu=o'd4e<2$4#=cn*?*YgW3c:NWM0U>f'DDO%G??cUGTTsm?:h'M2JG%amY)'@7(&c9bVL6+f1
+!+h(6VEpu;94rTK_LehjR61\[6^V#-"[P"'?:\E6N`]n8f2cM2GWgT8%X9Z9J%Ti$0pSfOn:[B!W,>
+&2%u+9#-!()kB2u,&W'<pP/ee*Y6qR',^Wf[W]%.1%MlZgYAKHJgPn?'[2B!XEnqhZ&80nEN_SdYf'
+aY@(YU'P:CgZ*STq#tfdJ'!d6^dN?QBj_<d_NZmAf7c]4kBGQ@S,B4,$GT\[0#E5c+D9TR(e?YL>Xi
+<0OD+JQ9c[Kl/+Kan6c^F0r^$dK?"rU]!)`THk9nHs7aS1CqFT,f-]G=H8l\`AV!h\Lj5u`VuJN%1H
+"bLsU_Shf?rC"BCEC3=@^0:e]I>/?^RLm(*JNlCL27E+7S.!IHXiM/jl!23=ji+V"?X1C'.Xl,#lOF
+fhndrid981DM4]_!)9*]P,38s(9"Iffr'9;$8;7#K\?QIGSt9.]G>o5M*5b(&!0.T(i:c):no[r55<
+GO8`K5FVG>[JHKXo2ALk6G@L\$S\Tc66>;9k%MKjB`I9FHhj!Yn5@5JtFcej<Y2iL)4u2+\K<B\bqT
+Tr&;DkdZCf(r<qXR`t])hoX1hd-[aP2bue>Su\!VfT><-IB=YuK@'?XFk>j@rN7Q9O`A#h.Zme?U/;
+S\^G!<>`t>'2&7Za7=mHdURUX$4!&9R^[51f'CN.%s'9989ub>)p(WlKr;iBCO:W\=Y>UhX.>E30ua
+t3,s8^p#df/.==5DN5!59u#VhIM.PMsU154eaod\fm$8i3*4-'Cpj_Ot-.P@Z9NP#dA0RH,GBI1N#/
+V/^4%ROfai<ViqZ\1%E0ph&-K>jG?gN2fi]Q4pj5(S9ZQlh-G)]73THqjnaW4rQK,k=k(UjOBhH`0R
+WA>&:>;[5))3\1"q#$uHq"0Wq%S=f5u:q9MhCJt--Zs0_0A=u%@hoJ&5:UD&Y-ts%XDZL:]os3m0!Z
+EKLr7#Xui+Gt;aSt)skKj2*oD\hlmnRK~>
+endstream
+endobj
+8 0 obj
+<<
+/CreationDate (Mon Dec 3 16:05:40 2001)
+/Producer (PStill 1.52 by F.Siegert frank@this.net)
+/Title (_LogoULsolo_eps_)
+>>
+endobj
+9 0 obj
+43801
+endobj
+xref
+0 10
+0000000000 65535 f
+0000000015 00000 n
+0000000112 00000 n
+0000000158 00000 n
+0000000241 00000 n
+0000000280 00000 n
+0000000302 00000 n
+0000000410 00000 n
+0000044303 00000 n
+0000044443 00000 n
+trailer
+<<
+/Size 10
+/Root 1 0 R
+/Info 8 0 R
+>>
+startxref
+44464
+%%EOF
diff --git a/Master/texmf-dist/doc/latex/lion-msc/minimal.pdf b/Master/texmf-dist/doc/latex/lion-msc/minimal.pdf
new file mode 100644
index 00000000000..aaed7b758a4
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/lion-msc/minimal.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/lion-msc/minimal.tex b/Master/texmf-dist/doc/latex/lion-msc/minimal.tex
new file mode 100644
index 00000000000..1757b6e058e
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/lion-msc/minimal.tex
@@ -0,0 +1,14 @@
+\documentclass[twoside,single]{lion-msc}
+
+\title{Title}
+\author{A. Uthor}
+
+\begin{document}
+
+\maketitle
+
+\chapter{Chapter 1}
+
+Here you type the text for the first chapter of your thesis.
+
+\end{document}
diff --git a/Master/texmf-dist/doc/latex/lion-msc/thesisstyle.jpg b/Master/texmf-dist/doc/latex/lion-msc/thesisstyle.jpg
new file mode 100644
index 00000000000..56916671c69
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/lion-msc/thesisstyle.jpg
Binary files differ
diff --git a/Master/texmf-dist/tex/latex/lion-msc/lion-msc.cls b/Master/texmf-dist/tex/latex/lion-msc/lion-msc.cls
new file mode 100644
index 00000000000..78315a1fa48
--- /dev/null
+++ b/Master/texmf-dist/tex/latex/lion-msc/lion-msc.cls
@@ -0,0 +1,398 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% %
+% lion-msc.cls %
+% %
+% A LaTeX document class for preparing a bachelor/master thesis according to %
+% the specifications of the Leiden Institute of Physics (LION), %
+% Leiden University, The Netherlands %
+% %
+% Original version written by: Michiel de Dood %
+% Leiden Institute of Physics %
+% Leiden University %
+% Niels Bohrweg 2 %
+% 2333 CA, Leiden, The Netherlands %
+% %
+% Please report errors to: Michiel de Dood %
+% e-mail: dood@physics.leidenuniv.nl %
+% telephone: +31-(0)71.527.5929 %
+% %
+% Permission to copy all or part of this work is granted, provided %
+% that the copies are not made or distributed for resale. %
+%
+% This file may be distributed and/or modified under the
+% conditions of the LaTeX Project Public License, either version 1.3
+% 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.3 or later is part of all distributions of LaTeX
+% version 2003/06/01 or later.
+%
+% This work has the LPPL maintenance status "author-maintained".
+% %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+% Considerations:
+% 1. use the ifpdf package to make class a bit more robust?
+% 2. add metadata to pdf?
+% see http://www.howtotex.com/tips-tricks/adding-pdf-metadata-in-latex/
+% \usepackage{ifpdf}
+% \ifpdf
+% \pdfinfo{
+% /Author (Author Name)
+% /Title (Adding PDF metadata in LaTeX)
+% /Keywords (PDF;LaTeX;howtoTeX.com) }
+% \fi
+% 4. potential problem with double line spacing option on title pages.
+
+\typeout{}
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesClass{lion-msc}[2017/03/14 v0.26]
+\typeout{}
+\typeout{Leiden Institute of Physics thesis class - version 0.26}
+\typeout{}
+\typeout{Copyright (c) 2014 Michiel de Dood}
+\typeout{Please send questions, comments, additions, complaints to:}
+\typeout{dood@physics.leidenuniv.nl}
+\typeout{}
+
+% The following are default options that are passed on to the documentclass
+
+% == start : draft and final options
+% Option [double] (default) - sets a double line spacing for easy commenting
+% Option [single] - single line spacing for final report
+
+\def\mystretch{1.5} % This is the default option, sets double line spacing
+ % if nothing is specified \mystretch is still defined
+\DeclareOption{double}{} % When [double] is specified do nothing
+\DeclareOption{single}{ % This option creates the final version
+ \typeout{single linespacing}
+ \def\mystretch{1}}
+
+% Note that the linespacing is set after the \Loadclass command!
+% == ** continued after \Loadclass
+
+% A Master or Bachelor thesis is very similar to a report. The report class
+% is a basic class that should be compatible with many options
+
+\typeout{loading report class}
+
+% Suspicious code. I cannot overule any of these values that are intended to
+% be the default option. In particular the 12pt option...
+
+\PassOptionsToClass{a4paper}{report}
+\PassOptionsToClass{fleqn}{report}
+\PassOptionsToClass{openright}{report}
+
+% 14-03-2017 Michiel de Dood
+% PassOptionsToClass or ExecuteOptions forces the 12 pt font size onto the
+% user. This is unintended behavior, but the report class uses 10 pt font
+% as a default, which is fairly small font
+% http://tex.stackexchange.com/questions/40893/how-to-set-default-font-size-in-latex-cls-file
+
+\def\@@ptsize{12pt}
+\DeclareOption{10pt}{\def\@@ptsize{10pt}}
+\DeclareOption{11pt}{\def\@@ptsize{11pt}}
+\DeclareOption{12pt}{\def\@@ptsize{12pt}}
+
+\DeclareOption*{\PassOptionsToClass{\CurrentOption}{report}}
+\ProcessOptions\relax
+\LoadClass[\@@ptsize]{report}
+
+% == continue : draft and final options
+\def\baselinestretch{\mystretch} % This sets the line spacing
+% == end : double and single options
+
+% A number of packages are provided with the class to minimize potential
+% issues with the use of commands. This is equivalent to \usepackage in the
+% tex file.
+
+% Use the natbib package to take care of citations. Place citations between
+% square brackets, comma separated, and sort and combine multiple references.
+% This should resemble a citation used by the APS.
+
+% 10-01-2014 adding the numbers option to natbib seems to avoid the following:
+% 'natbib error bibliography not compatible with author-year citations'
+% thanks to http://tex.stackexchange.com/questions/54480
+\RequirePackage[square,comma,sort&compress,numbers]{natbib}
+
+% 10-04-2014 added input encoding. Thanks to Merlijn van Deen
+% This allows to use non-ascii input character, e.g. � instead of \"o
+% 14-03-2017 added latin9 as option to ensure compatibility with LyX for unknown
+% reasons. Thanks to Vasco Tenner
+\RequirePackage[utf8,latin9]{inputenc}
+
+% Font selection
+% \RequirePackage{mathptmx}
+\RequirePackage{mathpazo} % Just to make it look less like a Word document
+
+% Special AMS symbols for displaying math
+\RequirePackage{amsmath}
+\RequirePackage{amssymb}
+
+% insertion of graphics
+\RequirePackage[pdftex]{graphicx}
+
+% styling of captions using the captions package
+% 28/03/2014 removed the small (0.5cm) margin for the figure captions
+% 22/05/2014 added hypcap option as suggested by Casper Remeijer
+% 08/07/2013 corrected sl,small override - Tobias de Jong and David Kok
+\RequirePackage[margin=0cm,font={small,sl},labelfont={bf,sl},tableposition=top,singlelinecheck=false,hypcap]{caption}
+
+% Use US english (default) hyphenation rules and provide dutch as an option
+\RequirePackage[dutch,USenglish]{babel}
+
+% For standard formatting of dates I use the datetime package
+% It is important to load this package AFTER the babel package
+\RequirePackage[us,nodayofweek]{datetime}
+
+% The calc package allows to specify lengths etc. as an arithmetic expression
+\RequirePackage{calc}
+
+% Colored text
+\RequirePackage{xcolor}
+ % used to be color package, but this gives conflicts with user packages
+ % reported by Casper Remeijer June 9, 2016
+
+\definecolor{mygrey}{gray}{0.5}
+\definecolor{lionblue}{RGB}{0,43,127} % The official color, thanks to Ferry Besamusca
+
+% Consistent section styling
+% \RequirePackage{sectsty}
+% \allsectionsfont{\sffamily} % changed 26/03/2014 avoid mixing of fonts
+
+% Chapter styling
+\RequirePackage[Lenny]{fncychap} % consider titlesec as alternative
+\ChRuleWidth{1pt}
+
+% Enable fancy headers
+\RequirePackage{fancyhdr}
+
+% Formatting tools for the title
+\RequirePackage{titling}
+
+% 09/07/2014 Redefine the \cleardoublepage command to get completely empty pages
+\def\cleardoublepage{\clearpage\if@twoside \ifodd\c@page\else
+ \hbox{}
+ \thispagestyle{empty}
+ \newpage
+ \if@twocolumn\hbox{}\newpage\fi\fi\fi}
+
+
+% == start : define several variables to be placed on the titlepage
+\gdef\@studentid{\color{red}use $\backslash$\texttt{studentid\{\ldots\}} to define}
+\gdef\@abstract{\color{red}Please use $\backslash$\texttt{abstract\{\ldots\}} to define an abstract in the document preamble.}
+\gdef\@supervisor{\color{red}use $\backslash$\texttt{supervisor\{\ldots\}} to define}
+\gdef\@corrector{\color{red}use $\backslash$\texttt{corrector\{\ldots\}} to define}
+\gdef\@affiliation{\color{black}Huygens-Kamerlingh Onnes Laboratory, Leiden University}
+\gdef\@address{\color{black}P.O. Box 9500, 2300 RA Leiden, The Netherlands}
+\gdef\@degree{\color{black}Bachelor of Science}
+\gdef\@major{\color{black}Physics}
+
+\def\studentid#1{\gdef\@studentid{#1}}
+\def\abstract#1{\gdef\@abstract{#1}}
+\def\supervisor#1{\gdef\@supervisor{#1}}
+\def\corrector#1{\gdef\@corrector{#1}}
+\gdef\affiliation#1{\gdef\@affiliation{#1}}
+\gdef\address#1{\gdef\@address{#1}}
+\gdef\degree#1{\gdef\@degree{#1}} % 22/05/2014 corrected mix-up of degree and major: Error spotted by Leandros Talman
+\gdef\major#1{\gdef\@major{#1}}
+
+\gdef\theauthor{\@author}
+
+% Optional cover picture
+\def\coverpicture#1{\gdef\@coverpicture{#1}\cover@picturetrue}
+% New if construct: Default condition:
+\newif\ifcover@picture \cover@picturefalse
+
+
+% == start : title page using titling package
+
+% shift the title up a little compared to the standard definition
+\setlength{\droptitle}{-4cm}
+
+\pretitle{ % this is inserted before the title.
+ \pagestyle{empty}
+ \begin{center}
+ \color{lionblue}
+ \vskip 1em
+ \includegraphics[width=2.5cm]{logo_leidenuniv.pdf}
+ \color{lionblue}
+ \noindent\rule{\textwidth}{0.4mm}
+ \vskip 0.5em
+ \huge
+}
+
+\posttitle{
+ \noindent\rule{\textwidth}{0.4mm}
+ \vfill
+ \ifcover@picture
+ \@coverpicture
+ \fi
+ \vfill
+ \vskip 1em
+ \end{center}
+
+ \begin{center}
+ \begin{minipage}[b]{.75\textwidth}
+ \color{black}
+ \begin{center}
+ \normalsize
+ \textsc{Thesis} \\ \vskip 0.5em
+ submitted in partial fulfillment of the \\
+ requirements for the degree of \\ \vskip 0.5em
+ \textsc{\@degree} \\
+ in \\
+ \textsc{\@major} \\ \vskip 0.5em
+ \normalsize
+ Author : \hfill {\@author} \\
+ Student ID : \hfill {\@studentid} \\
+ Supervisor : \hfill {\@supervisor} \\
+ 2$^{nd}$ corrector : \hfill {\@corrector}
+ \par
+ \vskip 1em
+ Leiden, The Netherlands, \@date
+ \end{center}
+ \end{minipage}
+ \end{center}
+ \cleardoublepage
+}
+
+\preauthor{
+ \thispagestyle{empty}
+ \begin{center}
+ \Huge \@title \\
+ \vskip 1 em
+ \color{black}
+ \large \bf
+}
+
+\postauthor{
+ \end{center}
+ \begin{center}
+ \normalsize \@affiliation \\ \@address
+ \lineskip 0.5em
+ \par
+ \end{center}
+}
+
+\predate{
+ \begin{center}
+ \normalsize
+}
+
+\postdate{
+ \end{center}
+ \begin{center}
+ \vskip 1 em
+ \color{black} \large \textbf{Abstract}
+ \end{center}
+ \vskip 1em
+ \normalsize \@abstract
+ \vfill
+}
+
+% Changed the alignment of the abstract. The centering is plain ugly
+% Following comments of Casper Remeijer
+\postdate{
+ \end{center}
+ \begin{center}
+ \vskip 1 em
+ \color{black} \large \textbf{Abstract} \\
+ \vskip 1em
+ \normalsize \@abstract
+ \end{center}
+ \vfill
+}
+% == end : title page using titling package
+
+% == start : pagesize commands
+% note: a4 = 297x210 mm, letter = 280x216 mm
+
+% \setlength{\textwidth}{160mm} % used to be 160
+% \setlength{\textheight}{240mm} % used to be 240
+
+% Now we need to set margins and headers to center the page on the paper.
+% This can be done with a little help of the calc package.
+
+% \setlength{\oddsidemargin}{(\paperwidth-\textwidth)/2-1in}
+% \setlength{\evensidemargin}{(\paperwidth-\textwidth)/2-1in}
+
+% \setlength{\topmargin}{(\paperheight-\textheight-\headheight-\headsep-\footskip)/2-1in}
+% == end : pagesize commands
+
+% == start : Bibliography name changed to References
+
+%% Small caps References as labels for page headers
+%% added \itemsep command to adjust vertical space between references
+%% IMPORTANT NOTE: The references consist of one big list with many \bibitems...
+%% VERY IMPORTANT: \def\bibname should be within the thebibliography environment.
+%% It seems to be defined elsewhere as well (BibTeX?)
+%\newdimen\bibindent
+%\setlength\bibindent{1.5em}
+%\renewenvironment{thebibliography}[1]
+% {\def\bibname{References}
+% \chapter*{\bibname
+% \@mkboth{\textsc\bibname}{\textsc\bibname}}%
+% \list{\@biblabel{\@arabic\c@enumiv}}%
+% {\itemsep 0em
+% \settowidth\labelwidth{\@biblabel{#1}}%
+% \leftmargin\labelwidth
+% \advance\leftmargin\labelsep
+% \@openbib@code
+% \usecounter{enumiv}%
+% \let\p@enumiv\@empty
+% \renewcommand\theenumiv{\@arabic\c@enumiv}}%
+% \sloppy
+% \clubpenalty4000
+% \@clubpenalty \clubpenalty
+% \widowpenalty4000%
+% \sfcode`\.\@m}
+% {\def\@noitemerr
+% {\@latex@warning{Empty `thebibliography' environment}}%
+% \endlist}
+%% == end : Bibliography name changed to References
+
+% == start : appearance of footnotes
+\renewcommand{\thefootnote}{\fnsymbol{footnote}}
+% == end : appearance of footnotes
+
+% == start : remove dots in TOC.
+\renewcommand{\@dotsep}{10000} %% Default value is 4.5
+% == end : remove dots in TOC
+
+% == start : definition of headers
+% 28/03/2014 - removed font change in the headers and footers.
+
+
+\pagestyle{fancy} % 10/04/2014 I moved this up into the creation of the title.
+ % 09/07/2014 and I placed it back because it doesn't work!
+
+\renewcommand{\chaptermark}[1]{\markboth{\small \textit{#1}}{}}
+\renewcommand{\sectionmark}[1]{\markright{\small \textit{\thesection{} #1}}}
+
+%\renewcommand{\sectionmark}[1]{}
+
+\fancyhf{}
+\fancyfoot[CE,CO]{\vskip 5mm \scriptsize{\color{mygrey}Version of \@date -- Created \today~-~\currenttime}}
+\fancyfoot[RO,LE]{\thepage}
+\fancyhead[RO,LE]{\thepage}
+\fancyhead[LO]{\rightmark}
+\fancyhead[RE]{\leftmark}
+\renewcommand{\headrulewidth}{1pt}
+\renewcommand{\footrulewidth}{1pt}
+\addtolength{\headheight}{2.5pt}
+\fancypagestyle{plain}{%
+ \fancyhead{}
+ \renewcommand{\footrulewidth}{0pt}
+ \renewcommand{\headrulewidth}{0pt}
+}
+% == end : definition of headers
+
+% Make references etc. available as hyperlinks.
+% 10-01-2014 [hidelinks] option with thanks to Vasco Tenner
+% 11-10-2014 Move this all the way to the end so that appendices work. Thanks to Thomas Ruytenberg
+% 13-03-2016 Suggestion by Max Snijders to add pdfusetitle to the options of hyperref
+% This adds metadata to the PDF File
+\RequirePackage[pdfusetitle,hidelinks]{hyperref}