[GRASS-SVN] r73723 - in grass-promo/grassposter: . 2018_AGU_Software_Citation 2018_AGU_Software_Citation/code 2018_AGU_Software_Citation/images 2018_AGU_Software_Citation/logos

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Nov 29 07:08:36 PST 2018


Author: wenzeslaus
Date: 2018-11-29 07:08:36 -0800 (Thu, 29 Nov 2018)
New Revision: 73723

Added:
   grass-promo/grassposter/2018_AGU_Software_Citation/
   grass-promo/grassposter/2018_AGU_Software_Citation/Makefile
   grass-promo/grassposter/2018_AGU_Software_Citation/README.txt
   grass-promo/grassposter/2018_AGU_Software_Citation/code/
   grass-promo/grassposter/2018_AGU_Software_Citation/code/cff.tex
   grass-promo/grassposter/2018_AGU_Software_Citation/images/
   grass-promo/grassposter/2018_AGU_Software_Citation/images/module_author.png
   grass-promo/grassposter/2018_AGU_Software_Citation/images/module_references.png
   grass-promo/grassposter/2018_AGU_Software_Citation/images/screenshot_bibtex_chicago.png
   grass-promo/grassposter/2018_AGU_Software_Citation/logos/
   grass-promo/grassposter/2018_AGU_Software_Citation/logos/cga.pdf
   grass-promo/grassposter/2018_AGU_Software_Citation/logos/diw_berlin.jpg
   grass-promo/grassposter/2018_AGU_Software_Citation/logos/grass.pdf
   grass-promo/grassposter/2018_AGU_Software_Citation/logos/mundialis.pdf
   grass-promo/grassposter/2018_AGU_Software_Citation/logos/ncstate.pdf
   grass-promo/grassposter/2018_AGU_Software_Citation/poster.bib
   grass-promo/grassposter/2018_AGU_Software_Citation/poster.tex
Log:
poster: Software Citation with Fine Granularity: The g.citation Module for GRASS GIS

Added: grass-promo/grassposter/2018_AGU_Software_Citation/Makefile
===================================================================
--- grass-promo/grassposter/2018_AGU_Software_Citation/Makefile	                        (rev 0)
+++ grass-promo/grassposter/2018_AGU_Software_Citation/Makefile	2018-11-29 15:08:36 UTC (rev 73723)
@@ -0,0 +1,38 @@
+FILE=poster
+
+TEXDIR = code
+TEXFILES = $(shell ls $(TEXDIR)/*.tex)
+TEXPDF = $(patsubst %.tex, %.pdf, $(TEXFILES))
+
+all: $(FILE).pdf
+
+$(FILE).pdf: *.tex Makefile poster.bib
+	make pdf
+	make pdf
+	@while grep ''Rerun to get' to get' $(FILE).log >/dev/null 2>&1 ; do \
+		make pdf; \
+	done
+
+pdf:
+	# using - to ignore error from the first latex
+	# the error is caused by something related to hyperref and
+	# second compilation gets through (this is an workaround)
+	-pdflatex -interaction=nonstopmode $(FILE).tex
+	pdflatex -interaction=nonstopmode $(FILE).tex
+
+fig: $(TEXPDF)
+
+$(TEXPDF): %.pdf: %.tex
+	pdflatex -interaction=nonstopmode -shell-escape -output-directory=$(TEXDIR) $<
+
+clean:
+	rm -f *~ *.aux *.log *.out *.toc *.bbl *.blg *-blx.bib *.ps *.pyg
+	rm -f $(TEXPDF) $(TEXDIR)/*.aux $(TEXDIR)/*.log
+
+distclean:
+	make clean
+	rm -f $(FILE).pdf
+
+rasterized:
+	gs -sDEVICE=png16m -r400 -o poster.png poster.pdf
+	convert poster.png -rotate 90 poster_rasterized.pdf

Added: grass-promo/grassposter/2018_AGU_Software_Citation/README.txt
===================================================================
--- grass-promo/grassposter/2018_AGU_Software_Citation/README.txt	                        (rev 0)
+++ grass-promo/grassposter/2018_AGU_Software_Citation/README.txt	2018-11-29 15:08:36 UTC (rev 73723)
@@ -0,0 +1,38 @@
+# Poster instructions
+
+## Dependencies
+
+This poster requires pdflatex been installed.
+In addition, some styles are needed.
+
+Fedora:
+
+    dnf install texlive texlive-a0poster texlive-wrapfig \
+        texlive-standalone texlive-tikzposter texlive-xstring
+
+Debian/Ubuntu:
+
+    sudo apt-get install texlive-latex-extra texlive-pictures pgf
+
+## Rasterization
+
+To create a rasterized version (some plotters have trouble with the PDF)
+use
+
+    make rasterize
+
+You can use this file to create a small PNG of the poster. It is best
+rescaled in Gimp using Sinc (Lanczos3) method.
+
+To create a minimum size image which will be still readable (although
+not necessarily nice) use:
+
+    # renders fonts with low quality
+    gs -sDEVICE=png16m -dDownScaleFactor=2 -r50 \
+        -o poster.png poster.pdf
+    # optimizes compression
+    optipng -o9 poster.png
+    # simplify colors (destroys some colors, esp. gradients)
+    pngnq -n 128 -s 3 poster.png
+    # overwrite the original file
+    mv poster-nq8.png poster.png

Added: grass-promo/grassposter/2018_AGU_Software_Citation/code/cff.tex
===================================================================
--- grass-promo/grassposter/2018_AGU_Software_Citation/code/cff.tex	                        (rev 0)
+++ grass-promo/grassposter/2018_AGU_Software_Citation/code/cff.tex	2018-11-29 15:08:36 UTC (rev 73723)
@@ -0,0 +1,22 @@
+\documentclass[preview]{standalone}
+\begin{document}
+
+% grass --tmp-location XY --exec g.citation v.select format=cff
+
+\begin{verbatim}
+cff-version: 1.0.3
+message: "If you use this software, please cite it as below."
+authors:
+  - family-names: Blazek
+    given-names: Radim
+  - family-names: Landa
+    given-names: Martin
+  - family-names: Garzon-Lopez
+    given-names: Carol X.
+title: "GRASS GIS: v.select module"
+version: 7.7.svn
+date-released: 2018-11-24
+license: GPL-2.0-or-later
+\end{verbatim}
+
+\end{document}

Added: grass-promo/grassposter/2018_AGU_Software_Citation/images/module_author.png
===================================================================
(Binary files differ)

Index: grass-promo/grassposter/2018_AGU_Software_Citation/images/module_author.png
===================================================================
--- grass-promo/grassposter/2018_AGU_Software_Citation/images/module_author.png	2018-11-29 15:02:24 UTC (rev 73722)
+++ grass-promo/grassposter/2018_AGU_Software_Citation/images/module_author.png	2018-11-29 15:08:36 UTC (rev 73723)

Property changes on: grass-promo/grassposter/2018_AGU_Software_Citation/images/module_author.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: grass-promo/grassposter/2018_AGU_Software_Citation/images/module_references.png
===================================================================
(Binary files differ)

Index: grass-promo/grassposter/2018_AGU_Software_Citation/images/module_references.png
===================================================================
--- grass-promo/grassposter/2018_AGU_Software_Citation/images/module_references.png	2018-11-29 15:02:24 UTC (rev 73722)
+++ grass-promo/grassposter/2018_AGU_Software_Citation/images/module_references.png	2018-11-29 15:08:36 UTC (rev 73723)

Property changes on: grass-promo/grassposter/2018_AGU_Software_Citation/images/module_references.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: grass-promo/grassposter/2018_AGU_Software_Citation/images/screenshot_bibtex_chicago.png
===================================================================
(Binary files differ)

Index: grass-promo/grassposter/2018_AGU_Software_Citation/images/screenshot_bibtex_chicago.png
===================================================================
--- grass-promo/grassposter/2018_AGU_Software_Citation/images/screenshot_bibtex_chicago.png	2018-11-29 15:02:24 UTC (rev 73722)
+++ grass-promo/grassposter/2018_AGU_Software_Citation/images/screenshot_bibtex_chicago.png	2018-11-29 15:08:36 UTC (rev 73723)

Property changes on: grass-promo/grassposter/2018_AGU_Software_Citation/images/screenshot_bibtex_chicago.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: grass-promo/grassposter/2018_AGU_Software_Citation/logos/cga.pdf
===================================================================
(Binary files differ)

Index: grass-promo/grassposter/2018_AGU_Software_Citation/logos/cga.pdf
===================================================================
--- grass-promo/grassposter/2018_AGU_Software_Citation/logos/cga.pdf	2018-11-29 15:02:24 UTC (rev 73722)
+++ grass-promo/grassposter/2018_AGU_Software_Citation/logos/cga.pdf	2018-11-29 15:08:36 UTC (rev 73723)

Property changes on: grass-promo/grassposter/2018_AGU_Software_Citation/logos/cga.pdf
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: grass-promo/grassposter/2018_AGU_Software_Citation/logos/diw_berlin.jpg
===================================================================
(Binary files differ)

Index: grass-promo/grassposter/2018_AGU_Software_Citation/logos/diw_berlin.jpg
===================================================================
--- grass-promo/grassposter/2018_AGU_Software_Citation/logos/diw_berlin.jpg	2018-11-29 15:02:24 UTC (rev 73722)
+++ grass-promo/grassposter/2018_AGU_Software_Citation/logos/diw_berlin.jpg	2018-11-29 15:08:36 UTC (rev 73723)

Property changes on: grass-promo/grassposter/2018_AGU_Software_Citation/logos/diw_berlin.jpg
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: grass-promo/grassposter/2018_AGU_Software_Citation/logos/grass.pdf
===================================================================
(Binary files differ)

Index: grass-promo/grassposter/2018_AGU_Software_Citation/logos/grass.pdf
===================================================================
--- grass-promo/grassposter/2018_AGU_Software_Citation/logos/grass.pdf	2018-11-29 15:02:24 UTC (rev 73722)
+++ grass-promo/grassposter/2018_AGU_Software_Citation/logos/grass.pdf	2018-11-29 15:08:36 UTC (rev 73723)

Property changes on: grass-promo/grassposter/2018_AGU_Software_Citation/logos/grass.pdf
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: grass-promo/grassposter/2018_AGU_Software_Citation/logos/mundialis.pdf
===================================================================
--- grass-promo/grassposter/2018_AGU_Software_Citation/logos/mundialis.pdf	                        (rev 0)
+++ grass-promo/grassposter/2018_AGU_Software_Citation/logos/mundialis.pdf	2018-11-29 15:08:36 UTC (rev 73723)
@@ -0,0 +1,1544 @@
+%PDF-1.4
+%µí®û
+3 0 obj
+<< /Length 4 0 R
+   /Filter /FlateDecode
+>>
+stream
+xœÑ±
+ADÑ|«ppë±}ù5°% "„V$”Hä|4ÑÏÞlÃf›Í­öýC?*×­ìzoË¥ÛíiË«l´ñ¿[a·Áî»3ì¼ÓÐi(
+“†TÅ)‹S§0NeDeDeDeDeDeDeDeDeDeDe‚Ê•	*T&¨LP™ 2Ae‚Ê•I*“T&©LR™¤2Ie’Ê$•I*“T¦¨LQ™¢2EeŠÊ•)*ST¦~2£½@Ø0
+endstream
+endobj
+4 0 obj
+   187
+endobj
+2 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+   /XObject << /x5 5 0 R /x6 6 0 R /x7 7 0 R /x8 8 0 R /x9 9 0 R /x10 10 0 R /x11 11 0 R /x12 12 0 R /x13 13 0 R /x14 14 0 R /x15 15 0 R /x16 16 0 R /x17 17 0 R /x18 18 0 R /x19 19 0 R /x20 20 0 R /x21 21 0 R /x22 22 0 R /x23 23 0 R /x24 24 0 R /x25 25 0 R /x26 26 0 R /x27 27 0 R /x28 28 0 R /x29 29 0 R /x30 30 0 R /x31 31 0 R /x32 32 0 R /x33 33 0 R /x34 34 0 R /x35 35 0 R /x36 36 0 R /x37 37 0 R /x38 38 0 R /x39 39 0 R /x40 40 0 R /x41 41 0 R /x42 42 0 R /x43 43 0 R /x44 44 0 R /x45 45 0 R /x46 46 0 R /x47 47 0 R /x48 48 0 R /x49 49 0 R /x50 50 0 R /x51 51 0 R /x52 52 0 R /x53 53 0 R /x54 54 0 R /x55 55 0 R /x56 56 0 R /x57 57 0 R /x58 58 0 R >>
+>>
+endobj
+59 0 obj
+<< /Type /Page
+   /Parent 1 0 R
+   /MediaBox [ 0 0 212.536484 134.75325 ]
+   /Contents 3 0 R
+   /Group <<
+      /Type /Group
+      /S /Transparency
+      /I true
+      /CS /DeviceRGB
+   >>
+   /Resources 2 0 R
+>>
+endobj
+5 0 obj
+<< /Length 61 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 83 128 94 135 ]
+   /Resources 60 0 R
+>>
+stream
+xœEKAD÷}
+N€|»áÁL¢]¨÷O„™ÄaÕEóŠâ=iv- d]â^c^Óáó€Ëàñ©8]€ÕáÉ8wñ„HÌìC¶€X­ÓÄDaß%É‚m at 8*5K˜QãEM`IôrE
+-¨É°5o–ÿÆs·O? ²ÑÛ÷Ê[ÁTì\׍l¾ã,…Œöï¬3à<jÔì}\ǹ51
+endstream
+endobj
+61 0 obj
+   163
+endobj
+60 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+6 0 obj
+<< /Length 63 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 85 122 95 128 ]
+   /Resources 62 0 R
+>>
+stream
+xœeOA1¼ó
+^€Ð(Ïð	f÷²Ôÿ'RM5»rbfîÀÄ6Ê‘IªÕlšˆ›âcÅÓ…q}B4j(ÅI´à
+£’„&¡Ô†JIÔˆ=!S±yí¸`W2·I nƒé?A7žnoØä¶|Æ1ÆTljá`žë‡øíï¼ýí»× õW8üÕ6õ
+endstream
+endobj
+63 0 obj
+   141
+endobj
+62 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+7 0 obj
+<< /Length 65 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 96 128 105 135 ]
+   /Resources 64 0 R
+>>
+stream
+xœMË
+1DïTAll Œ”­”½lIú—‚Y­”o†Ïð¦1Z¨ “ÙT[ESãøÙñö`Ü¿ ÜSœ(}à…³%¬èÀ[–’4Á0šî‰¢cLÞŠ¸àV
+/ŸÓ÷BÉé¤'ù"§’ÝÂBü§¥„;œ#–)2›øµQ“•ØüºYK:™Ë™‰g±v¯È
+øÿÞ†O¸ÃŠú6ª
+endstream
+endobj
+65 0 obj
+   160
+endobj
+64 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+8 0 obj
+<< /Length 67 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 102 122 113 128 ]
+   /Resources 66 0 R
+>>
+stream
+xœ]KÃ0D÷œ‚Pc£G¨,5›tÑöþRDM”°b†Ïƒ7©hY"X)Ì}$ˆâü™øöPž¾˜ Œa!pãwÇ¥bT RêY4C›´V†6‰T¹'‹´[ó°’øÒ¼™”æÛNm«ÖVwj¿vÐeEúSNÜó%óvj”»¾âtp/ßv~ҝ~µ2::
+endstream
+endobj
+67 0 obj
+   149
+endobj
+66 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+9 0 obj
+<< /Length 69 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 119 122 129 128 ]
+   /Resources 68 0 R
+>>
+stream
+xœUOÁ
+!û3E&H „ŒÑ*¤Þçúh»¿Ô §»ÂÇvû©ô§@ÈI£ˆ“̬Eà³ÁíA°}GEËY"¼œUŒ,Ž‚5™«CFÒ)źŽ¨©Bs–Њ…s´ìÏÃŽçB6¬dçŶü§VûÜ?äuqͰϐª—¥W‘ŽkÉÏp?Ík8³
+endstream
+endobj
+69 0 obj
+   141
+endobj
+68 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+10 0 obj
+<< /Length 71 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 121 128 132 135 ]
+   /Resources 70 0 R
+>>
+stream
+xœMOKn1Û眀òcôÕHÍ¼Åkï/=¼J͆ز±yBòýYC欏1‡Oø9áã‹àü,Z:Ö	`a$‹FW£¤UȐÝ
+†m­à
+…íU×Æ$1à(Ê0-‹"\Î…#k…,œT¼$ŠZO]¼ʨ;äÍ\íÊã6)÷4’{é’–Zæ_nÇ:fÞMÖŒ»†G7Ÿ.þŸyÀ÷ø/St85
+endstream
+endobj
+71 0 obj
+   168
+endobj
+70 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+11 0 obj
+<< /Length 73 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 66 108 74 115 ]
+   /Resources 72 0 R
+>>
+stream
+xœ]PK!Ý÷=Am)´p`&q6¸PïŸX†‰ÎÈŠ÷Èûñ&¶q™D=•—,âVðµâåƸ¾Á•8)Šd**ø@òÚ‚HTKCq+™Y#ÎŽÂu{\ÐŒ8Œw°F«N×[²Ý.¡yT¨ß¸eyɧ¾)LAÞôêíhwÈús£~*\
+æžòÛsØyþ}@Ç;\áS>i
+endstream
+endobj
+73 0 obj
+   161
+endobj
+72 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+12 0 obj
+<< /Length 75 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 79 108 91 115 ]
+   /Resources 74 0 R
+>>
+stream
+xœ]OAÂ0»÷~AHÚ¦IŸÁÐ$vàÿÙÊÐFQmÅvüLLÜÖg`’bY5>UÄšâ5ãrcÌïÔƒË"•´ðN±D&¯nÁk@&µ€Jv;¹vLp¦æig–•)º)TVÈyØeXé¿´éDduÚöË.ØÌÊ0«¶§âÏ÷,ãÞþ½76ßøŠcÙH›ð×~Á=]Óƒj=¯
+endstream
+endobj
+75 0 obj
+   162
+endobj
+74 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+13 0 obj
+<< /Length 77 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 85 122 95 131 ]
+   /Resources 76 0 R
+>>
+stream
+xœ=IÃ0E÷>' €ÍtŒ¡ŠÔlÒEÛûKÅIoðûðލl>Bî.ªõÌn
+Ÿn‚õÛr f wÂ
+/HFv9yƒHtq`IǨ¬vV
+‹Y¥Á2¦,E1Få+°$ßÑ|¢ ÷¨ò$“KØætek—#;rê¿Ô®Ãòœ7ý%”o®#é;Ʊj78.kç)<Û½ý r^6Ó
+endstream
+endobj
+77 0 obj
+   165
+endobj
+76 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+14 0 obj
+<< /Length 79 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 91 116 103 126 ]
+   /Resources 78 0 R
+>>
+stream
+xœ]KÂ0D÷9…O`<‰?ñ18ªD7eÜ_"i)²qÞdlOžEX|ž a´¨fã¢@¸Ñk¥ËMh}ˆ°‰ªq·¤¥ñ¨'o”ÊÍê”5+eåÀ|¯ìN‰o7¸FZ¦Ò½­O»bìi{` 3ºN{çDÿ	Í@"Zö–Àð
+X5‰êƒ+[³sç˜1=íÈÔbg	="{úÿäB÷r-ø<8Ï
+endstream
+endobj
+79 0 obj
+   170
+endobj
+78 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+15 0 obj
+<< /Length 81 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 100 108 114 115 ]
+   /Resources 80 0 R
+>>
+stream
+xœ]A1E÷œ‚ ”Rê1<‚™ÄÙÔ…zÿD¦ÑÎL»á—†ÿ_y—í82‰z2‘E¼¾W¼Ü׈(/(’ÉTð*‘»÷Ze{²¼ÝyÔÂ	…+U»âJ)×
+£ÕB%²HC,¤švS–,#v9w’C7™‡fÓž{$™Øڏ^á€?/Pó?·›œWÒð7ø«ïAu
+endstream
+endobj
+81 0 obj
+   154
+endobj
+80 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+16 0 obj
+<< /Length 83 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 102 122 113 131 ]
+   /Resources 82 0 R
+>>
+stream
+xœUÁmC1CïžB°¢lYÖ¡ø@sim÷"à#‰/6LŠúm
+û„(ØÃÜë1Ș.wùøT¹ÿ7j¢ÛvE.ùªCiø.0ÀáBK,¥
+QzÁ²ŸZsµºÉq¢™ÛâX;K;|lË€î»",mˆ¾NG"s^¤í¹T̘O	÷—Pö:¶~tÍg³Jà<›]Õß–=ä«ÝÚXA9å
+endstream
+endobj
+83 0 obj
+   166
+endobj
+82 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+17 0 obj
+<< /Length 85 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 112 116 124 126 ]
+   /Resources 84 0 R
+>>
+stream
+xœ]M1…÷='@ åïÁLâlt¡Þ?‘V31vï…ïAl>Bî.ªÕf7…ç§Áþj̉”,Š¡	w`(ä‡s+§£õé–¥C&#å÷¥9¢•Á(î°-DÌ`Æû°ê4G¹ª¢‡VµBÇ$Š
+:œ6÷V¾˜,È2—þ†öQº#»ü®­.Õ?—iM
+a—uYžÿßÝàÚÎí
+'b:²
+endstream
+endobj
+85 0 obj
+   170
+endobj
+84 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+18 0 obj
+<< /Length 87 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 119 122 129 131 ]
+   /Resources 86 0 R
+>>
+stream
+xœ]M1…÷='À¥À1<Âdg£õþ‰´ãÄ6ð¾¼á^*Ö>Ê "‰±jÈºÂcƒÓRa{bA&’Šáp¢@ë|€ëÞˆ³Kßun%vä°]×(	IÖœëph&³1šdk	‡ŒoìÓî¨á)ãh¢föÊcŸ•†ÑèçdGm2Â3—†2ß7øûs…K9—eð92
+endstream
+endobj
+87 0 obj
+   161
+endobj
+86 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+19 0 obj
+<< /Length 89 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 141 108 149 115 ]
+   /Resources 88 0 R
+>>
+stream
+xœUÁ
+Ã0Eïž‚	(`0dŒŽPEj.é¡íþRIœF±/ø?™ÏÇïBHm;„\]Ìò¢ÌÞ>ÜË·°:2W`V´Êð‚˜GÁЬÈ$©©óÔÊÀ6ÁœÀ°Š–­‰¹EZÐZëžù‚•·–sê<ñ²›\›¬›údú‚ÉÖÐåÈ®}·h—Ý.Û‹ïã¬ð,÷òA6
+endstream
+endobj
+89 0 obj
+   164
+endobj
+88 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+20 0 obj
+<< /Length 91 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 69 100 79 113 ]
+   /Resources 90 0 R
+>>
+stream
+xœEOKB1Üs
+N€@˧Çðæ%ºÑ…zÿDh¢vCg203O`bïÈ$#Ô¬>S$ÜðuÃÓ…ñö†Z‰"J9ƒÜÿÄCiº!$jLÙœ”¼ÐEDÁ žðhfÉ,ÆH–´¾‡°RŒF³ì…ûŠ•:J•óG”S¹ÀÖ»bű}MµöËÕÖ×®÷“lØŽS1
+U½•Óqwƒ_—¯p†ȱ6ý
+endstream
+endobj
+91 0 obj
+   167
+endobj
+90 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+21 0 obj
+<< /Length 93 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 66 108 75 120 ]
+   /Resources 92 0 R
+>>
+stream
+xœ]KÂ0÷9…O`ì8þäU¢›² î/a·¢Hd•9Ï/ÏFHVǁÅ»j^³›Âk…ˍ`}7È1€y¢›ÁœQçOlà„}zŠÀ.`Ö9É*Ì32ªpƒÌpJŠŽ1¢H¢P}GÊL¡³¦'ÒðSìÛxj;^„U=òrÀ©Ëw_ìÂO±•8êfA–Vì:Žú¬ð÷ßîíÚ>QÊ; 
+endstream
+endobj
+93 0 obj
+   170
+endobj
+92 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+22 0 obj
+<< /Length 95 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 79 108 91 120 ]
+   /Resources 94 0 R
+>>
+stream
+xœ]KnC1Eç^Å]Œù,£K¨"5“dtÿRÍ{j™q®žƒi--0E¸EjÁ«ðºáò͸ýŽ,Kˆ…;H#u}w¤R±ï Ie!…d΍N¢‚(JM£5W$k7è~išÞÔ6ÒèiNÊí±»æžÿî{QahÁÐsŠÉ´ñý]Qe>œÞh1[Iø¸ïŠŸñ5þ rü7°
+endstream
+endobj
+95 0 obj
+   169
+endobj
+94 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+23 0 obj
+<< /Length 97 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 88 100 102 113 ]
+   /Resources 96 0 R
+>>
+stream
+xœ]O;B1Û{ŠœÀäÓ¾$ÇàèI°À Ü_"ítªÇvžÁÛ|N1×1êÓE|ôºÑéÂt{·KQ„)=(ªö#î”R@ œ	›žFP.);¸[£}2ÙG1}êÓ½ ÂË3s9Jž_QYèíXèÛ˜Ëò;’¤ÚÊ7±¦b«f«’Sf]ØW_môwÝN×vn(å73
+endstream
+endobj
+97 0 obj
+   167
+endobj
+96 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+24 0 obj
+<< /Length 99 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 100 108 114 120 ]
+   /Resources 98 0 R
+>>
+stream
+xœ]K‚1„÷='@†háŒ‰nt¡Þ?‘ÖÇoìª|03´·",>O0j¨Y^nt?Óî t~ »Þ	ît%Hc‘\’(:Igd
+6hÖÎ2’K7”­‚Žk¤Ö9¢ÜáËÂ,¥g-²®Üú”vî6¦";.ú!eæ"sZ}‰–X9"6STöðßØIzû’Ëšu]»½—MS…mùû€#Ê¾<8k=æ
+endstream
+endobj
+99 0 obj
+   173
+endobj
+98 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+25 0 obj
+<< /Length 101 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 113 100 127 113 ]
+   /Resources 100 0 R
+>>
+stream
+xœ]OI0¼÷¼ Ù¡Ïð	ÆD/zPÿŸHkbŒ½L™axBŠõYSÜ»0æ‡ç'‚ëk°š+0–
+ܻ
+äø·®ef##•4290æ¢yòè>‘Lá¼'Ô¬™V’n‡ŠFL[Þ-#š¾¦E±êËŒµRcòG ý%ިې«Û@þÝز¬LS·g¤ŒšiÂÿg¸ŒãxS÷8õ
+endstream
+endobj
+101 0 obj
+   167
+endobj
+100 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+26 0 obj
+<< /Length 103 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 135 100 145 113 ]
+   /Resources 102 0 R
+>>
+stream
+xœ]A0ï}/XÒBŸáŒ‰^ô þ?‘rP㩝Í.ÆC—	1ܧùþ¨9EÏ+NL×W0‰(¢+ÝIúÄŒ¯r+ÅÂRIoÌbÑE‘“‚¥%;Ø:Ë±›…TÒÙ…
+Ÿš¸`;ÉŒXcÌ üQÚnM©Zw¨ú~s¤,)^<K­ÃCj­à,5…joµ·è ÿ[ÏtiÇö%9­
+endstream
+endobj
+103 0 obj
+   166
+endobj
+102 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+27 0 obj
+<< /Length 105 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 140 108 149 120 ]
+   /Resources 104 0 R
+>>
+stream
+xœ]OKB1Ü÷œ ;
+=†G0&ºÑ…zÿDÚ÷4ÆU™¡óáQ*›ÉPPe÷®>Q¯6èy¥Ã©ÒõU Â£v{ït'h~kúen‹ééòUpõHÜh7‰’„²5Й¦­õi+U†Kâl5¡M¡ÆZOA°B?LY±Á¨»Æs¥Î»§ÆÂ+þ'Õ8†mÅš¯T•­ù¼éïÚ3]ʱ¼¢l:<
+endstream
+endobj
+105 0 obj
+   167
+endobj
+104 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+28 0 obj
+<< /Length 107 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 67 83 78 97 ]
+   /Resources 106 0 R
+>>
+stream
+xœU;1DûœbN`²Ž¿Çàh%¶Y
+àþNUò4¿äÙ:©rʆNî&>/,Þ5ñ:p¹uïæR!Ò(ëxÀ’2âÇçdæÊ•:Â8’iÄ€9™	²OjØg<JA嬢T%”¢oð2@
+×-k†üø„+ÙækZ¤Á”ÇÚ$	wb¯h–Ät=CdV͍øûÍÞpo×öÁ¹4Ž
+endstream
+endobj
+107 0 obj
+   161
+endobj
+106 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+29 0 obj
+<< /Length 109 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 62 92 69 106 ]
+   /Resources 108 0 R
+>>
+stream
+xœU¹C1DsUÁ
+fI‰âQ†K0¬o°vÿ€ÉÿáÀŠæ
+¯Ñÿ`°õsbÈò¹w	qÛô¼ÓÏ•éþæHKސú#SD‰ñhƒ½xai-pmfDãĪHÍA·66¥!C[{¥b¹“®”:­;
+³«'?šsEw+Û 
+YèàI°ZxžéÙÀªâ‘BŽrå=36~ý©SýŽËxi¯5å
+endstream
+endobj
+109 0 obj
+   165
+endobj
+108 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+30 0 obj
+<< /Length 111 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 87 83 102 97 ]
+   /Resources 110 0 R
+>>
+stream
+xœUOAA»Ï+úfà>Á˜èEêÿÙY÷ 'š¶´¼ÏmLÒ]Íj">
+ï;NÆýÓÒÉ| '¥;žH.|À"ɸh#–‰5¤R÷DøŽ˜zô†ë¢—hÈXÎP„Qˆn¢ˆNáVÊJCü@ÍÌ%îÚ \•UÖ©…”û/©ì‹ç½H½µ¹­2e*þ>ÚjÝÚ¹}ðO5Š
+endstream
+endobj
+111 0 obj
+   161
+endobj
+110 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+31 0 obj
+<< /Length 113 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 99 92 115 106 ]
+   /Resources 112 0 R
+>>
+stream
+xœ]OI1»÷yAHÒ4Ë3x‰¹Àø¿D:0#D/¶â:vl>Bî.cQf·ÏN‚õÕ˜	-˜rá½XÇîyLnÅEü£ˆ:õ
+C2q˜5ÈÀÔ„eLK0̈ÍÏ”ú]ÜQ˜!Ul~¯Ñe´JdÆìz8¸‚«Ê¾Õý'oêG¡i^ŽÆW.pmçöb8÷
+endstream
+endobj
+113 0 obj
+   162
+endobj
+112 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+32 0 obj
+<< /Length 115 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 113 83 128 97 ]
+   /Resources 114 0 R
+>>
+stream
+xœ]Kn0D÷>Åœ€ò1Ž‘#T‘šMºh{©ØM©^™æ_ƒ‰c¿&±¥îý™"+ß7¼½3n?Ct’°¢‚j-|¢HTžÂ½… ö&Ui—“‚¥d1rÅ(&KÃõø^ȤiùæD:¥ÅóvrùîV;Ô‡pG/äÄ'!=NƒœçáÉìr‘›ã5nû[èu°ÓÕ‰ç]ñ1.ãw47¦
+endstream
+endobj
+115 0 obj
+   170
+endobj
+114 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+33 0 obj
+<< /Length 117 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 125 92 138 106 ]
+   /Resources 116 0 R
+>>
+stream
+xœUÍmC1ƒïžB°úµ¬1:B ¹¤‡6û‘ßC€Æ'óEQ¿ƒÁs¿$†XjD\$gÐߝ¾.L÷çs¨	¤„~HtÁzêMMS«‰Á8ZODykÆâæȃj¡¼èz8Ö4ªó:"5•ÃjË‚&•Âun·,å
+£É„„»Šå>j¢Ò¹Ôÿ­k{fž…ÜÏ@?ûºï¸Ï#¯tßãúì8ò
+endstream
+endobj
+117 0 obj
+   171
+endobj
+116 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+34 0 obj
+<< /Length 119 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 137 83 148 97 ]
+   /Resources 118 0 R
+>>
+stream
+xœ]Ë
+1Dï©Â'þ—A	h%ö²€þ%œ¬¹Äo<c'ÏFH6agªUHïn
+¯.7‚ýݺZ¤aºÃ:'FêW8–гC
+fEQµ²H¡£Ð€–„Ûi	(’+M⊱ü‰æÁ®Ó^ûEúW8Z)ŠÃy%H
+™Îyd…Žµï·n¶«šï©k†Eµ\Üàï{ÜÛµ} ±7þ
+endstream
+endobj
+119 0 obj
+   167
+endobj
+118 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+35 0 obj
+<< /Length 121 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 145 92 153 106 ]
+   /Resources 120 0 R
+>>
+stream
+xœ]Ë
+1Dï©Âÿ—A	h%ö²€þ%œ]@ˆ\&oÛ“{#¤˜§!k÷ºs‡Ç
+§Áúll‰LŽœ7`Ôô¯³íŽhŠÊRè˜RJ„ãÍÁ½ALKXöcƒìH\³­£‘@ZÉÄQÑ
+Mb>wFíþ1Ú¶;1fƒvÞ)Ga”	²ñ϶*›qlÖéX3ãÚhðÿÅ®íÜ^v8s
+endstream
+endobj
+121 0 obj
+   165
+endobj
+120 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+36 0 obj
+<< /Length 123 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 62 75 70 89 ]
+   /Resources 122 0 R
+>>
+stream
+xœMÁ
+BADï[ »,[†%ÿå{PûO„¯&žà…MØl¬ÙIØÓ«ÓÅ=7:]„¶WXá‘EéNPî˜?Þ	ƒŒ<sS’/¥PŽœYj;/®e¶‘ca“¡NîYcS#7é¥
+6ŒïÅv¨§µÂHW­ZAX,ßKó‘2shòCT%éÿ£Jukçö§5F
+endstream
+endobj
+123 0 obj
+   162
+endobj
+122 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+37 0 obj
+<< /Length 125 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 76 75 89 89 ]
+   /Resources 124 0 R
+>>
+stream
+xœMK0D÷='@(ßÃ#ÝèB½"4jdÕGfxBò® B–˜fõPæpƒç'‚ëk¤bÚ„L¸C$&û—oÍLÒQuAΐ‚EŽÎɸDœûÛW‰Ë: òâÝãèž”O&qIk!ùoÍ!¹Õ6doâžÚîYîö1êá@ß1T!
+Í‘‹þêP—qo¶„5V
+endstream
+endobj
+125 0 obj
+   160
+endobj
+124 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+38 0 obj
+<< /Length 127 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 88 68 102 81 ]
+   /Resources 126 0 R
+>>
+stream
+xœMOË
+B1»wŠLòm’1!ñ.p ö—H<‰\ËŽí>!Í5„¬!î½sL‡×§Áö˜ä­æ	(Âò8ð}a.‡HQÈÚŸpLÈDW†P¬’×E‡„ ¤C1j‡F[õM	zÁLT³–Vb¸¸sªiÛÅΘÃdY)UCÆ)õ‹êóÅ[Äj¥Ë­ìÛ’ýÿiõºóø .÷5¢
+endstream
+endobj
+127 0 obj
+   165
+endobj
+126 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+39 0 obj
+<< /Length 129 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 99 75 115 89 ]
+   /Resources 128 0 R
+>>
+stream
+xœ]KÃ0D÷>' `0ŸcôU¤f“.ÚÞ_*±’,º³g˜áñn„côTBwSß]FÂg…Ûƒ`ý6fÂè
+(&ð&ÁÎã¶:rOC•¨/¡eù‚a™h"Ђ1Ea™¾›ARØL÷Hp¯9Ÿí{‹â}¼ö[1ÂÖJáâõ+Á2Î>VT.Þk_ù¢qòìéä¶Áßy<Û½ý 5Ö7`
+endstream
+endobj
+129 0 obj
+   165
+endobj
+128 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+40 0 obj
+<< /Length 131 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 113 68 127 81 ]
+   /Resources 130 0 R
+>>
+stream
+xœ]OË
+B1»w
+OšO›fF at Oâ]à ì/‘<è©vÛy´N}Östbu#?Æìsà¹ãtéØ_EÉ™±RÎw0OZ±¾Ä-‰A>¾Hº'4K˜lhB¥h®!Ø"\áBšƒÚÎLxÚ
+>`X`.R³’‹ÔþßpÒ®I1
+]e'k$œu~q2ÈŒ«Îb9äVéYV´áï¼
+×vnoPÊ7S
+endstream
+endobj
+131 0 obj
+   168
+endobj
+130 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+41 0 obj
+<< /Length 133 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 135 68 145 81 ]
+   /Resources 132 0 R
+>>
+stream
+xœ]K
+AD÷}Šœ æÛIŽádÀÙŒõþ`z@Wéz$UÕÏAè.e„Ób=Ä‚¼àµÃåF°¿›bò„$¤`-d/8$’D"g¶œh5!¼]£¥£²Å*í$Þë‚J~ª4ƒh;ÓSVÂLÔ†½l„\þt!Fs=¨ãºå\v݁ÍP¦ü„5àªÕ&WZK]]…}Àßï6¸ëø ú‚7
+endstream
+endobj
+133 0 obj
+   169
+endobj
+132 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+42 0 obj
+<< /Length 135 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 145 75 152 89 ]
+   /Resources 134 0 R
+>>
+stream
+xœ5KB!Eç¬â® RJ?,Ã%è@Ýb‹>&p֩[G'ªù˜ÌnŠ÷§KÇýÓX™F0"HLðO§?6™Kq’B(Ä’4ÅÁ´d6\÷Dy 2=]
+}ÜɦnŒ®ðºxZÃŽA¥­rn[ÑX;-[ÛϪ­ë?¯ôɱûdÛBí¿®Uö·[;–¹âÖÎíª7Y
+endstream
+endobj
+135 0 obj
+   164
+endobj
+134 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+43 0 obj
+<< /Length 137 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 76 55 86 66 ]
+   /Resources 136 0 R
+>>
+stream
+xœU;!D{N1'pÀøÇ1r„ÕJÙfS$¹¿C¶	OÏãW©TmG¥ÖUó"­¹)Þn[Åñ)‘±|1¥:ð„[b»ðœØÃatȤÑÖȸÁ¤ÃRÃFehP° ½£Ôgg6 JŠ¡Kqñ9™5V:¸ „"{O•LHÃ5'¿ö]%Ñr%ùÄß.;å^¾µ3Ô
+endstream
+endobj
+137 0 obj
+   159
+endobj
+136 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+44 0 obj
+<< /Length 139 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 80 61 91 73 ]
+   /Resources 138 0 R
+>>
+stream
+xœU;1ûœâÀÄIü;G at HÐ,p	{a\y"ûyòlºV:ñ´!’Íb6¼î8]:îïæJ6aƒp&Ž8xƒwŠ%°N¢Z¤¾ N3Ó’Dª¤Á
+×Zö`¨/‡Ïz‡NâÁp)(“©Ù s>xC¤nfÖ´h+\1ö¨<˜äÆ¿Kßeå¹{Ì´2
+±Ýqþ>Ô®¸µsû ]4ì
+endstream
+endobj
+139 0 obj
+   163
+endobj
+138 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+45 0 obj
+<< /Length 141 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 100 61 114 73 ]
+   /Resources 140 0 R
+>>
+stream
+xœ=KÂ0D÷9…O`<Ž?é18ªD7° î/áÚ¬òlgüjÂûKFOu¯Nï.7¡íÓ a沈ÂéIÎzUPŽ0ÊÌ"°
+ŠÁ=z‘p¨SÇ‚FëìGõËh.“,ìóBcì㘪š.wɃË`YFû	F±²ežëPÙ »©¯l†3NÉÍûõwZ;NYéޮ푶6‘
+endstream
+endobj
+141 0 obj
+   163
+endobj
+140 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+46 0 obj
+<< /Length 143 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 112 55 123 66 ]
+   /Resources 142 0 R
+>>
+stream
+xœ5Í
+B1ƒï"˜$ÍO;# 'ÁÀþiõ¸õsíÚ}7†»Nbd†å:¨%û¤Ïƒ.7¦Ç·‰
+úH
+Oz‘ˆÃ­Ÿü,6XÖ}GH/ìàP
+AØ(T0CR[	VòQËß½0!’—쎾í®ùVßDz[êßë–¿^3+TxþëV¼;çÄvçì{«žá‘íüËA÷vm?:/6b
+endstream
+endobj
+143 0 obj
+   164
+endobj
+142 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+47 0 obj
+<< /Length 145 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 123 61 134 73 ]
+   /Resources 144 0 R
+>>
+stream
+xœEAB1D÷='ÀeÚÃ#˜Ÿø7ºPïŸHùþØUßf†W©\±^§Êb]ÝãÓD:œÞ;]n•öOSžƒº²ŠÓ“D;Û_x„ –àÊÞzPc7'6C ±!€1¥Ð–
+Ác©å¸´@cq$6†zNO–é§i9Ð’¡¬zK¿ð[îí—·Bp›ÙÇ=QýhÐq\9Ùè^®åòá7
+endstream
+endobj
+145 0 obj
+   165
+endobj
+144 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+48 0 obj
+<< /Length 147 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 102 50 112 59 ]
+   /Resources 146 0 R
+>>
+stream
+xœMÁ
+BADï[ŒÀ²”a	ÆD/zPûOd¿úãG†™áÑîš&ĈkPö¤ç•'¦ë«	'æò‰ƒî$lèöã[qGH’\‹©ƒÜ1ûØ°—±[ey£ó&×%ï°¹›)¸g‘CBÉi¹‰’ò[T˜ðWÜjðnT2¿Aë´ÝìSD×aÕ‹½åÿS«Ö¥Û?¬5{
+endstream
+endobj
+147 0 obj
+   156
+endobj
+146 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+49 0 obj
+<< /Length 149 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 118 50 128 59 ]
+   /Resources 148 0 R
+>>
+stream
+xœUMB1„÷='@ RŽáÌK|›çB½"mü‰]u&ÃÇp/ÂÒçsÖê䧩z=v:]„ögQsöJì½ÓÔ*[|#
+Kœ[ô”	‘”à!AªÁ
+£‚ÆÈ
+Û×Aå–à)×xRlÊÁ¡áh1ÓIWÃÇ8¨ÌxÈÈ ¸Á.j‚~벿f_ÐÕvŒBÿçmt-çò+€7d
+endstream
+endobj
+149 0 obj
+   165
+endobj
+148 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+50 0 obj
+<< /Length 151 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 0 0 38 27 ]
+   /Resources 150 0 R
+>>
+stream
+xœ]VKŽ%7Ûûu‚KòG>FŽ< 3‹Î"Éý’íÒ‹~Å*(Š’ýW©oü›O}ŦöŽ‡&2Gþþùüø½>?ÿ)6_ñöÈ;ÍŸ?ŸûÌ š4‚ª@]žÏcã]ª€Ò•`¶Q€j3¢^6[Ýr¤vtP±Žiƒ 
+A¯ü2ñýCX‘ôòX{{0íÅÿ|þi瓾³ZÎ"Pïß
+÷,g7¥óð@s~ssµÃCšŸÐ¸XË°GbÛ>Ž&  ¼Õ:€J~.ìøÑçëâñÚÂJ€Ýú#¸v"s#š=çªaSÇX'ª	ˆduEÀ²‚AùðGá…ÏETEÍÔ¡¢5')àêƒx6šà_C&¯ûܐƒ¸éÁÚ_S >ðéá–)Ÿr±ˆ±gQ}]ƒ}k „$dhiœƒC¦¯oH		Ô·¸ Sg¹Ž*;- ­ÉN€¸ßd‚ⲶM¾ËÓ…þ¿áÖ¤y 4¦ÑV ?j¿–û5ŽšŽr¦ÍÈÎ]æ÷cp¡õ7— <Aù“< B/;. 6äÆh¨‚D2)Õé¶Ãmºža7"µc6€êzÍ&-äÚfš"Ûl…0¶N·Å`tc61l¼ C¿½&¨L_Ûk…PAu»I$ªázM(X¿_éøv¼¶^IsQ=žDû6[:x[mDήÓ6ÜF;ˆâ
+VEÙ²Ž˜+w’µ¶“ÿ¶ÓÔ³e{ô€ä
+õ´(‰‚9V€tÇ[è_mŽ…Ä|73ÝKé+Ú¯¯N_K[íÆæ15óhícõË«þ§(*³qlۏ"Ľžª[‘zTYéÌñW>ªs/¬Xˆ¸~S ÏË©,Âäk3€weë *è–Ð=ˆ¡šÑc6ç•Áâb÷iÔ„4S¡¹B‚•d+ÝØ^ïz¦µWaø»b‹¢Ü›5xW6¤¯ÎM±DfuÚápÅOd=µ5~×vHAH5 at 9"~ÎG
+¹iÃeì—\ß¡\g+u¬µÐP¹:£&ò­qtFíÀ„q„2;(j²¥`ûÀ±“g+êŸ4€Ð
+Jö'öÛèíQ+}f¸ƒUÄ渃úÏ_+Úãšd;„]­“LƒÂ-›®gd=›®-½<Ê8Ò¦¯ÙÈFÇŽajáëðåzH1+¡EâdÙÇ
+òµ#Þ(øÒӈ˟,T\
+È’ü	í<e±P˜g_
+ÑBK†®[ÂB¸½”
+ãnuŒË”KaE^@<ìÄC/n'±Q§\q™5d£qűùÞònTCf ò(¡ïT#ŽjÞZÐöxkqð›¶{QÁÞæE#¬úy~ýÿ^÷Gù­ü¸Gé	
+endstream
+endobj
+151 0 obj
+   1035
+endobj
+150 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+51 0 obj
+<< /Length 153 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 43 0 66 27 ]
+   /Resources 152 0 R
+>>
+stream
+xœ]UK®!Üs
+N at 0Ø€‘#D#åe‘,’Ü_J•é§Ìf¨nãO¹ìþj©ƒ¿™k‘>›*2‡å?ùË·š?þ¦ae5ÍRf_ùW~Cƒ`.PQ‚áÐðè°: X#Pë	¨j'jpV‹[ß–UàB*Cˆç*<÷) ÓívP,åÑ‘Ñp!¨÷ÃVTí¾’âsî[£}òˆdGK7\=–‘læ“b-f~Ó'K·°ZzÐÁ¢S¶®—ðêr¹º€<¾.Td*ùg¶U–¯Ü#€Íb«‘-÷–m”¦ƒ!|â¢iqV`07pИ%
+¬•êz ìåZ¦¬ÎóZ]YÂLVÓ
+–:¢J‰êÌ­4tAÑ5ÐÚ‹,¥ZÓ&|!A-¦µÃ8+=ìz³eÑãStôg^ äÛÓ6åƒ72AÃÛò@S‰HÒqćqw‚WàY!-æ +À‘ =Dî”1Ha%ðßP+D2´Aä+²‚t5ãâqñ7”ˆZ9¶s;>o'üŸ‹‰<“¿í˜¶hr{GEGl¼3ò²“?ézCO1ѽ¥§RߥlÐèjrY’Ú.ƒ"¿éuˆPD?ߣ‚$ˆÇ1<w¥Ú“ŒzF„˜]Ìd
+2‚nfDö…!8Oç™3y¶ }p¢ Ù0%h„ÌIß\@áæ!øõ¼³=Ç»º+`Ò06dºÃ6Á@u‰Œ+€CÏáal÷ê^=F:¡F¨²>Ñíá?š1‰¸dŽê̯wF1äØU§ÉÜ"]® ¸nÔu`‘ƒOl*¯oÕa£™¡¶·ì°ðBßçuçÒ¼7!}]ŸüjìŸU¹hž”ö ?[é·žØï$øÔʍ>>1Áí?{ºÊ;_†ÃâƒÈñ+ÿøÿCò=}Mÿ Žù>Ì
+endstream
+endobj
+153 0 obj
+   700
+endobj
+152 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+52 0 obj
+<< /Length 155 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 72 0 95 27 ]
+   /Resources 154 0 R
+>>
+stream
+xœ]•MŽ1…÷>EÀ±>FŽµ”d1Y$¹¿”þéQfÑ㯋²Ï@ÿ.­6?{Zíl4Ò»éxþüx¾|kϏ¿eJ5O¯Æþüz.ÕÆZºÄZ)÷ç8Ôñ‰5‹Pêpԁ\=OvŒxä­ÇºMØðˆ£ªšØG	‚dNDBMó
+ˆÄûcžg­2íןÕç¸[E±Ù:Ôin!îÕÝ®H Jß	 DçÎ
+ÀÊ+í²"	›/Ošm³.„‘¯‹£6óçã²VŠp¢Á,7± ñ.þ;àìéAcô "–§ÏTP¬uÅn3ht}¨e¨-OQ#üš 5©R))„Û^±\[lvªÃs§¡x5²LÛ?A9˜Q†¯]B°Èj¸.ä¶*çpúôñÆð0 Év·2ntKhÓö½ ´Û¾1‹Kzß&°·sÓ/ÍN€x¼+Ä4-XՐ¦»®ldÈ©9àÚˆQüv_C½ë{GNo÷i¼wL!\»ø[$¡Vý4
+Èú©9€v~çMYþË€ŒSr`eY‘Á±ðæãÊ)ö‰µ Òc=†ÉzQMƒ­qImLÞ)„··‘)’çNE
+/•cAYS ¹$¡ª&Ç=ŽÅ@MB¯ÛÒµ)MvñûT+·¹ß,)1wŽ`Kãι¸Wò«	CöI1j`1ò)n}g4µò±±]£@ó:x ì}•Ã”7“¥ÌIœ¶yžJN+ôOã4m€²»84hŒ“l>C_µecHÊyàír2Ib¸5W§Gnã Ãr;AhÌQê=DD÷‚|	T—5›ÌC1ó1¸CpövɩΫãÉÖÄWæìqº?ËÉC¸*\Ñëùùÿ¯Ê÷òµüFC
+endstream
+endobj
+155 0 obj
+   692
+endobj
+154 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+53 0 obj
+<< /Length 157 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 99 0 124 38 ]
+   /Resources 156 0 R
+>>
+stream
+xœm•K’1D÷>…O`,É?ƒ#Á°`Àý#È”ín°^¹ÊN¥Sê_©–:øoæZĦöŽÿ4‘9zþý‘¿|«ùãOµÒT³”i+æ7÷6ƒl:ÈÖ&ui_ùÙ\É¢’+N‘Re€´¬¶p&¾x‡QËjÖ0—€¤¸RÓü¤x°ßu‰Süp¾Œ¿S=Á"vWÅËçÃD²êwc¬®â}ÞcAcŽ£Ðbi«*üØ¥$b]…¢>™Åù͵¼xø6‰Ô®hîÍ‚[1ù'–G
+ß&K‡Ù=+ˆ§´ã¦míŠM묝áôɲµÁëʲÛ!¼\qÌz¯ŽØ·–ŽCj/Ò¸­Âš]­¸P£c?©
+‚¯ f[g‹m!’:¶å*}ôŒàq"¶&y™!\½eÙîØ~Ò#{‘ÅÕ=/†4gð©`+˜UÇ>¨/Ô±ÊT;:ªAeÝ᎕“é3Dw¸‰ˆùè)^Gˆ mì`+màë¾}†!T¤…Û¼*šuì°W$cÎDf¡"ÑNy3‚Âû{}hÁ2$Ó¹ýŠ×/v"¤x¢sÆ­/mT×ЌĚP‡6D£>¯6Øe'4|ìÓ=`ë‘chÝÛ‰'mÆÖIÔÕ‰-H„]‰ì­Ÿ÷'ö5ìÓ,ZAÔ‰X	d²‰cݦ±®¸hºÄè±;Ûw»žÍ÷:ã½îÇĉÇ{ótƆàZîé@ºtµÙÚoí¼u4Ø-.²oéœWã_kb¼É˺3û®±o¤óOþ‘®÷°ÈÐLŸq{|uvG¦X‡Ÿ«h<%×Åççäƒ)ˆ&£bì6ÄYç	’_|"jz×Ñåí‡Ï—h 2¸•sgMâxŽ9b˜æ{0!×C1öô݆±§Zæ~Dš‡±S n„ðg—R4q ¨±qÄ]´Ò»Ÿ×ñ€ÓÝ»·‹q.û=àâáœÕvÛN9.æÖÊæX/eÃ,õHd׌èÖ¶;tp¹n[85FÈzölì\ã†ø˜0–i8n¸¡M»•qê]Ô¢"$ï»­1“Æën0´á:²ÑG¥Œˆ‰ºaÀi|_8ö`ç5Îø	Œ¡¯Èú|iè1ÇV(càøwí«8ñóøøo ¿§¯é/'ù„æ
+endstream
+endobj
+157 0 obj
+   866
+endobj
+156 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+54 0 obj
+<< /Length 159 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 129 0 138 37 ]
+   /Resources 158 0 R
+>>
+stream
+xœ]SKn\1Ûû>kI–?Çè‚’.šE“û¥d?½‡Ìf†¶,‘ç_ª¥vûŒ\É`UühD£kþúÈ¿ÞjþøN¸)¤=‹”Ê#æ8 Ò×ìeNÉR˘êPZ3Ècä´ÌJ)ó*8 ie¬aH©Jž´r*ïã¾^ptvˆòäíÕÊq1‰}ºL‡
+ƍé†\暧ÜZa–ýšÑMµ¹»Û­–Þ›“Áô924ÑÜÔ–j6˨›ð
+_.m6#w¨s÷×m;³­ûÜõpn‘OÇWøÚŠÔ€é2~×wKý|`í}£
+‹°Â=Ë(<é¼”¥	¤ìÉ®k§¹:a÷Kå,lTÅìÑKÆtRͪàÐK³Š=ÖP~u#nåFVǧé¾å‚˜íWɍµvwS*"=fRpAEë¦ÈëâЁíß"¢‡HyÕðéW
+ï.4Î&#³Šÿç¿Q–Í ÅõìY€˜üº¨î‡
+xz»qÆ™À©k6°t„vî¥
+…5g?Fºd'ˆHk°·ðý@_Ð}·w/Ï.½÷®cöB0Û9y°Þ1:ªÒIÙ­Ú"x[²ãŽí솟áwBýŸô3îïéwú
+¨å¯
+endstream
+endobj
+159 0 obj
+   474
+endobj
+158 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+55 0 obj
+<< /Length 161 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 141 0 164 27 ]
+   /Resources 160 0 R
+>>
+stream
+xœm•KŽí6Dç^…W ˆ”¨Ï2²„yô$Ù?ª¢íÛÒ“ÛG¢%~ŠÔ_G-uðožµX›ºÙqþýóüíG=þsØhÅÂO+cœ¿Îv[¢:Hî
+äe­	ªkœ—xšáÔÝãö¶€«wQ
+š+dŒw§Ž²bÎݱ
+TKÛ‘tÐ8võÝÕϧ±pÐç\`óçR@éÐyX̲Åã/xÎ'ÀÀw /Ç’ØJÀôøÂÂ(³õn¤#¢ŒngFdÑ‹Àà1¿E瀟-¬,£ÞrˆTiÜ7«t³u8ìCee6YBT0Ád÷Ž 70š‰®8nv7”¸p—uüvÄ2ªp/ƒ‹ù¥3ŽnÈé>G‰ýÂT^¯—wq$˜§°¸Æº™06Î2•1ï7džca	UˆV˜yºŽ˜@ŒïR¤UQ ˜­,´¾˜¬R—­ü:°¬×»
+eP©Kl™hVƒNÜx©tc*÷ZùzVN›PÂüï–È\­üö€¿[qä‘­WfmBfÃÑgCâ˜&
+WxXhSKŽ!|÷Ó!˜Ñt½	¾ÃkÊ48t\“|éŒK*7^˜Qí¯½è4 Z /ß“äy:’Ù)dôsˆ\t>k…Sàî~×&ÍÍC"dÛ!ð‰Ø´lÖK•Uˆ»´1…聃œòîÅ£?˜ö/Ï>±•ÖVC8»v{»E»ë¸K‘OÕeJ&
+iÖå;{G¿Ó÷™§;ªÅÐ"Í‘L…Êtߢ­YÏãë¼¹¾#}¼>®„úÜ&y©îëÚ·žtÖµ½çuˆ
+8ƒ¥y§æÛžŽ_Ùâ:*BW×xæC ×<Pþ•u3¨,ñ¢²xˆ,ô•³&´ ]ð±b, d³D-öÝrs·ƒ+¡á™ÓÀ‡*OQ¦ù­HzÄøl\`ÏÁXç=Á—÷t-§=E¤@ô4hðv­|G‚ioÙ²xflQ±ž
+‡ôN‰äE9 ÊìA=o쌔µ>ˆ‰“£(Ž|¾Î?w6`uü¥àìå¯lÐÝŸæ‚£\E¦Rù›¹KöT'‘sÉé;»øú[ï¤ñIè*úï óE$Ý%ËÄär"ï1¦XkßïÇm>0áëLDŸçÐó¤k¡"T$n/XnTDÏ1è|BFþŸ·+[÷^ÓŒt‡sm©mÏX¬P
+T°k`.;ށ<õÀ^ÿW†?Žß²—
+endstream
+endobj
+161 0 obj
+   956
+endobj
+160 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+56 0 obj
+<< /Length 163 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 169 0 177 38 ]
+   /Resources 162 0 R
+>>
+stream
+xœe“AnD!†÷žÂX<FÐ¼¤ÓE»h{ÿ¤ ʼ¤³z"üü2ß©–:ìǹ ÆÞõ£ðèùç‘_Þj~ü&ÅB„
+“ä¯üä>Æ"dVjÐÛ
+äkqµ¬“b/"–\-dÍg§•Ü	)‹J2ªÍN¥‚R+§wI+¹¬vÌЕ¨í[˘°¨"o²\,Ä3N¡H¿™6òÂ+WÅFÛºëº$³Gn‚Õ·Ñ|­4f™">ì"ÑiÂ
+e~e„tLR‹ÓIÖ ©sæÏ{€¢˜b'ˆ^Š¦ö:R’ED§9J'Ž„X}:“ØM
+ B˜`8û¶(bÛ$³P´\r
+±…ý¯xHçíâº¿í­¼?}´÷½q¾6.>í|[«˜Î—.f÷|š³Wö˜çûœÂÛ½ßÛû+üû¼§×ô›½Ÿ¼
+endstream
+endobj
+163 0 obj
+   332
+endobj
+162 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+57 0 obj
+<< /Length 165 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 182 0 191 37 ]
+   /Resources 164 0 R
+>>
+stream
+xœ]“A²!Eç®ÂA\F–ð««ò3È$ÙU m»+oô"p¯ôïÒ iüFm€<HÄÿtÄ¡Rÿ|Öo­~þ-8=¯Ye†F£~Õ@Ð9+Ú„ÁŽ
+†I"N	¤1êå*•<o8ÐnA‚ꨀ‡"»{UyŽùÆ¡”ˆV²¸d6êêí#vÌÁØ´܁ˆ×Õ¡^K »eij#Pµg:ÃèT9Œ¹†ôl¤@Üo¼RÕh\ž˹órOSg·•ï‚ºf󉏥¸,·ç+_Ð
+H_/Õ¤.î­ë[ÍXâŒ÷]ê®#ìØâ´Î9¨¹Ñ
+¦ð~-‘él:’ˆb?,Ær‘Öfqr«f‹ã’¦X¤°¨M‘+»ð:•PVÎUõ6_…{úr÷e/Lg&ñ}&fànåòñ•¸Åºƒúö‚üÚã”S{\L*Ûäë“d_ï íu‹bŽ<ñôrôÎW-÷(Ð=÷Ä¡zt8šûr™È·¤ÐËñ(Øt;ÛáÿzÁÚÿ¯ûyÊ“°ï\ÏÇ}—_o¿úŸÅ8ÓåÞ”÷øk¯Ž¼ÜºGüZÊÛœ{ew¹Ïå±ví÷¶þª?ËÿŸÀò½üª²ê»
+endstream
+endobj
+165 0 obj
+   473
+endobj
+164 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+58 0 obj
+<< /Length 167 0 R
+   /Filter /FlateDecode
+   /Type /XObject
+   /Subtype /Form
+   /BBox [ 194 0 213 27 ]
+   /Resources 166 0 R
+>>
+stream
+xœUVK²ä6Ûû>"R?ê9Bª«2«,’Ü¿* (»_f1ý`Ó4‚ ÿ¾j©“ÿÖ]‹µåcàn¶æ¸ÿùuÿöG½ý{¹y½ÝQZï÷_÷ƒW©6…|¯{”èdeõÍïp«v·6/ÀZÆî·—½Úíu—x	ƒk”µÖmeÖ
+´Êª
+¨nÄÔYúd}kÄ¥àQÜ›
+æm¼am 﨩zéí †Z:[ÞDch«ûºmï²}2O7›óöX(”´ BIÁ{ûÄ®
+¬X7fše6–Ožˆ¯ÉW3vˆð3§Pß´§	‘%G¢q`#¥9_ÛæeÚ
+¤l¥ÖPl'€½ºÀÜhG¿^Ȉ~b‰AÝÌàehÎþäjÍIãÆ)VËLсF>·ë`2t£o³D,Õ^‘òð<É¢…Ћ	­µ¤¡2ÖTÁ(c>èP†ºŸ»³Ô6˜	§¿»±¢hSÁS½™‡¤U|Pƒ*ˆÅÌb–CË:kO	TH	<Ô!´¨ç)J(Dã8:¥Ôð‹#¶-¥ö‰®.Ķ÷v“xØK%š²el—P†þ'ZP'pÐMu× \G ʧº³„¦ºÁ6ÅÐÉ!™F¥6†h.Asom¶y‚‰9ÜÊD¡…˜Ô[ ç­^YD[ãÏŠmœÊò4Ôœ¤‡ã¸ÂŠm†A4·j¢…,âÝâŒ(ÓÀ.4Íúè}«’¡µŒ3¡š!/µ¯Ó¾ÄMú‹gsHùtCgŽ,ÆpújhHÖñ¸ŽŽ(_Ë~Pƒ“JR[N*õ_íÃÃpA?çä-œ¬?¿jÉç½àÉ“†…áÀëØÎï¯PÑC]ÞxÖ,¿€!ASI~—DSØý9$·<½Œ;ÒgA$‘mj†Ž32fÉ=åË|S“ žb¸LÔõ½
+uF¦ÃÒ¢iëøéž“‹)ñtO§1šÜ¾ñ°O1¯ÐWPnÈò·¦pùdÛ)¿–	9Ä…ùꃭyv
+¡œ‡f®hÞ„‘ÔE͇uþgoi»uòs%欁òkg+u¼kxlP^ “"úDÏäc-§;ã¹p…6%ØØ÷m?ÑÈ}15ð>Š59¯onÓ|¾ïfÅ3¡“n­dUNZ0‰ã$'è‘Œm“6e¤È\0ÛO
+Ù.RO‚c
+Z2ʾ'¼N¼ËHÞ i=ó©ŸÏË»ärúÒX?Õ0Ç¥Êçæ ϵâÈkOá1³7!ˆ‘+[,õÇÃyJº~šÅmÙxh½ï¦mÚös¿É]øôJçß}+>Hî´þ¡ï!™&¡ªáê–¿©xoý™<~	á4µSû–ùAqÏ=“+°Ï'ÞĚ싐˾Õ~ÂΪ>ß+ 1ïÓ¯€úhùò¼y6†‰b˜Ö¢ÐP;;d$4Ò­e7KJú¼dÀôB«‹bOØÚ³·´Aþ¾ž&ÐMóGЫɎ²	¸‡§›
+ZñN¿à¾¾®#¾•æ}Fš“@k—þùÑÖeüyJ7§]qŸP¨øe^×>Ñš±#wÏÚ¡WMN~ö‚b»ÿÿMü¹ÿ¼~¿þÈ'%ú
+endstream
+endobj
+167 0 obj
+   1210
+endobj
+166 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+1 0 obj
+<< /Type /Pages
+   /Kids [ 59 0 R ]
+   /Count 1
+>>
+endobj
+168 0 obj
+<< /Creator (cairo 1.14.8 (http://cairographics.org))
+   /Producer (cairo 1.14.8 (http://cairographics.org))
+>>
+endobj
+169 0 obj
+<< /Type /Catalog
+   /Pages 1 0 R
+>>
+endobj
+xref
+0 170
+0000000000 65535 f 
+0000029463 00000 n 
+0000000301 00000 n 
+0000000015 00000 n 
+0000000279 00000 n 
+0000001257 00000 n 
+0000001678 00000 n 
+0000002077 00000 n 
+0000002496 00000 n 
+0000002905 00000 n 
+0000003306 00000 n 
+0000003735 00000 n 
+0000004155 00000 n 
+0000004576 00000 n 
+0000005000 00000 n 
+0000005430 00000 n 
+0000005845 00000 n 
+0000006272 00000 n 
+0000006703 00000 n 
+0000007125 00000 n 
+0000007550 00000 n 
+0000007976 00000 n 
+0000008405 00000 n 
+0000008833 00000 n 
+0000009260 00000 n 
+0000009694 00000 n 
+0000010126 00000 n 
+0000010557 00000 n 
+0000010989 00000 n 
+0000011411 00000 n 
+0000011838 00000 n 
+0000012261 00000 n 
+0000012686 00000 n 
+0000013119 00000 n 
+0000013554 00000 n 
+0000013984 00000 n 
+0000014413 00000 n 
+0000014836 00000 n 
+0000015257 00000 n 
+0000015684 00000 n 
+0000016111 00000 n 
+0000016542 00000 n 
+0000016974 00000 n 
+0000017401 00000 n 
+0000017821 00000 n 
+0000018245 00000 n 
+0000018671 00000 n 
+0000019098 00000 n 
+0000019526 00000 n 
+0000019945 00000 n 
+0000020373 00000 n 
+0000021668 00000 n 
+0000022628 00000 n 
+0000023580 00000 n 
+0000024707 00000 n 
+0000025443 00000 n 
+0000026661 00000 n 
+0000027255 00000 n 
+0000027990 00000 n 
+0000001029 00000 n 
+0000001605 00000 n 
+0000001582 00000 n 
+0000002004 00000 n 
+0000001981 00000 n 
+0000002423 00000 n 
+0000002400 00000 n 
+0000002832 00000 n 
+0000002809 00000 n 
+0000003233 00000 n 
+0000003210 00000 n 
+0000003662 00000 n 
+0000003639 00000 n 
+0000004082 00000 n 
+0000004059 00000 n 
+0000004503 00000 n 
+0000004480 00000 n 
+0000004927 00000 n 
+0000004904 00000 n 
+0000005357 00000 n 
+0000005334 00000 n 
+0000005772 00000 n 
+0000005749 00000 n 
+0000006199 00000 n 
+0000006176 00000 n 
+0000006630 00000 n 
+0000006607 00000 n 
+0000007052 00000 n 
+0000007029 00000 n 
+0000007477 00000 n 
+0000007454 00000 n 
+0000007903 00000 n 
+0000007880 00000 n 
+0000008332 00000 n 
+0000008309 00000 n 
+0000008760 00000 n 
+0000008737 00000 n 
+0000009187 00000 n 
+0000009164 00000 n 
+0000009621 00000 n 
+0000009598 00000 n 
+0000010052 00000 n 
+0000010028 00000 n 
+0000010483 00000 n 
+0000010459 00000 n 
+0000010915 00000 n 
+0000010891 00000 n 
+0000011337 00000 n 
+0000011313 00000 n 
+0000011764 00000 n 
+0000011740 00000 n 
+0000012187 00000 n 
+0000012163 00000 n 
+0000012612 00000 n 
+0000012588 00000 n 
+0000013045 00000 n 
+0000013021 00000 n 
+0000013480 00000 n 
+0000013456 00000 n 
+0000013910 00000 n 
+0000013886 00000 n 
+0000014339 00000 n 
+0000014315 00000 n 
+0000014762 00000 n 
+0000014738 00000 n 
+0000015183 00000 n 
+0000015159 00000 n 
+0000015610 00000 n 
+0000015586 00000 n 
+0000016037 00000 n 
+0000016013 00000 n 
+0000016468 00000 n 
+0000016444 00000 n 
+0000016900 00000 n 
+0000016876 00000 n 
+0000017327 00000 n 
+0000017303 00000 n 
+0000017747 00000 n 
+0000017723 00000 n 
+0000018171 00000 n 
+0000018147 00000 n 
+0000018597 00000 n 
+0000018573 00000 n 
+0000019024 00000 n 
+0000019000 00000 n 
+0000019452 00000 n 
+0000019428 00000 n 
+0000019871 00000 n 
+0000019847 00000 n 
+0000020299 00000 n 
+0000020275 00000 n 
+0000021594 00000 n 
+0000021569 00000 n 
+0000022554 00000 n 
+0000022530 00000 n 
+0000023506 00000 n 
+0000023482 00000 n 
+0000024633 00000 n 
+0000024609 00000 n 
+0000025369 00000 n 
+0000025345 00000 n 
+0000026587 00000 n 
+0000026563 00000 n 
+0000027181 00000 n 
+0000027157 00000 n 
+0000027916 00000 n 
+0000027892 00000 n 
+0000029389 00000 n 
+0000029364 00000 n 
+0000029529 00000 n 
+0000029658 00000 n 
+trailer
+<< /Size 170
+   /Root 169 0 R
+   /Info 168 0 R
+>>
+startxref
+29712
+%%EOF

Added: grass-promo/grassposter/2018_AGU_Software_Citation/logos/ncstate.pdf
===================================================================
(Binary files differ)

Index: grass-promo/grassposter/2018_AGU_Software_Citation/logos/ncstate.pdf
===================================================================
--- grass-promo/grassposter/2018_AGU_Software_Citation/logos/ncstate.pdf	2018-11-29 15:02:24 UTC (rev 73722)
+++ grass-promo/grassposter/2018_AGU_Software_Citation/logos/ncstate.pdf	2018-11-29 15:08:36 UTC (rev 73723)

Property changes on: grass-promo/grassposter/2018_AGU_Software_Citation/logos/ncstate.pdf
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: grass-promo/grassposter/2018_AGU_Software_Citation/poster.bib
===================================================================
--- grass-promo/grassposter/2018_AGU_Software_Citation/poster.bib	                        (rev 0)
+++ grass-promo/grassposter/2018_AGU_Software_Citation/poster.bib	2018-11-29 15:08:36 UTC (rev 73723)
@@ -0,0 +1,448 @@
+ at comment{x-kbibtex-personnameformatting=<%l><, %f>}
+
+ at article{baker1992r,
+	author = "Baker, W. L. and Cai, Y.",
+	journal = "Landscape Ecology",
+	number = "4",
+	pages = "291--302",
+	publisher = "Springer",
+	title = "{The r. le programs for multiscale analysis of landscape structure using the {GRASS} geographical information system}",
+	volume = "7",
+	year = "1992"
+}
+
+ at article{rocchini2013calculating,
+	author = "Rocchini, D. and Delucchi, L. and Bacaro, G. and Cavallini, P. and Feilhauer, H. and Foody, G. M. and He, K. S. and Nagendra, H. and Porta, C. and Ricotta, C. and others",
+	journal = "Ecological informatics",
+	pages = "82--93",
+	publisher = "Elsevier",
+	title = "{Calculating landscape diversity with information-theory based indices: A {GRASS GIS} solution}",
+	volume = "17",
+	year = "2013"
+}
+
+ at article{cannata2012two,
+	author = "Cannata, M. and Marzocchi, R.",
+	journal = "Natural hazards",
+	number = "3",
+	pages = "1143--1159",
+	publisher = "Springer",
+	title = "{Two-dimensional dam break flooding simulation: a {GIS}-embedded approach}",
+	volume = "61",
+	year = "2012"
+}
+
+ at book{chemin2012distributed,
+	author = "Chemin, Y.",
+	publisher = "INTECH Open Access Publisher",
+	title = "{A Distributed Benchmarking Framework for Actual {ET} Models}",
+	year = "2012"
+}
+
+ at book{chemin2014remote,
+	author = "Chemin, Y.",
+	publisher = "Lulu",
+	title = "{Remote Sensing Raster Programming}",
+	year = "2014"
+}
+
+ at article{rodriguez2013data,
+	author = "Rodriguez-Aseretto, D. and de Rigo, D. and {Di Leo}, M. and Cort{\'e}s, A. and San-Miguel-Ayanz, J.",
+	citeulike-article-id = "13387794",
+	citeulike-linkout-0 = "http://dx.doi.org/10.1016/j.procs.2013.05.355",
+	doi = "10.1016/j.procs.2013.05.355",
+	issn = "18770509",
+	journal = "Procedia Computer Science",
+	month = jan,
+	pages = "1861--1870",
+	posted-at = "2014-10-10 13:47:37",
+	priority = "0",
+	title = "{A Data-driven Model for Large Wildfire Behaviour Prediction in {Europe}}",
+	url = "http://dx.doi.org/10.1016/j.procs.2013.05.355",
+	volume = "18",
+	year = "2013"
+}
+
+ at incollection{derigo2013architecture,
+	author = "de Rigo, D. and Rodriguez-Aseretto, D. and Bosco, C. and {Di Leo}, M. and San-Miguel-Ayanz, J.",
+	booktitle = "{Environmental Software Systems. Fostering Information Sharing}",
+	citeulike-article-id = "13387795",
+	citeulike-linkout-0 = "http://dx.doi.org/10.1007/978-3-642-41151-9\_35",
+	citeulike-linkout-1 = "http://link.springer.com/chapter/10.1007/978-3-642-41151-9\_35",
+	doi = "10.1007/978-3-642-41151-9_35",
+	editor = "H\v{r}eb{\'i}\v{c}ek, Ji\v{r}{\'i} and Schimak, Gerald and Kub{\'a}sek, Miroslav and Rizzoli, Andrea",
+	pages = "367--380",
+	posted-at = "2014-10-10 13:51:37",
+	priority = "0",
+	publisher = "Springer Berlin Heidelberg",
+	series = "{IFIP Advances in Information and Communication Technology}",
+	title = "{An Architecture for Adaptive Robust Modelling of Wildfire Behaviour under Deep Uncertainty}",
+	url = "http://dx.doi.org/10.1007/978-3-642-41151-9\_35",
+	volume = "413",
+	year = "2013"
+}
+
+ at incollection{ashtekar2014digital,
+	author = "Ashtekar, J. M. and Owens, P. R. and Brown, R. A. and Winzeler, H. E. and Dorantes, M. and Libohova, Z. and Dasilva, M. and Castro, A.",
+	booktitle = "{GlobalSoilMap: Basis of the global spatial soil information system}",
+	pages = "367",
+	publisher = "CRC Press",
+	title = "{Digital mapping of soil properties and associated uncertainties in the Llanos Orientales, South America}",
+	year = "2014"
+}
+
+ at article{jasiewicz2013geomorphons,
+	author = "Jasiewicz, J. and Stepinski, T. F.",
+	journal = "Geomorphology",
+	pages = "147--156",
+	publisher = "Elsevier",
+	title = "{Geomorphons -- a pattern recognition approach to classification and mapping of landforms}",
+	volume = "182",
+	year = "2013"
+}
+
+ at article{garcia2007comparison,
+	author = "Garc{\'i}a, M. and Villagarc{\'i}a, L. and Contreras, S. and Domingo, F. and Puigdef{\'a}bregas, J.",
+	journal = "Sensors",
+	number = "6",
+	pages = "860--883",
+	publisher = "Molecular Diversity Preservation International",
+	title = "{Comparison of three operative models for estimating the surface water deficit using {ASTER} reflective and thermal data}",
+	volume = "7",
+	year = "2007"
+}
+
+ at article{gao2008intercomparison,
+	author = "Gao, Y. and Long, D.",
+	journal = "Hydrological processes",
+	number = "25",
+	pages = "4850--4869",
+	publisher = "Wiley Online Library",
+	title = "{Intercomparison of remote sensing-based models for estimation of evapotranspiration and accuracy assessment based on {SWAT}}",
+	volume = "22",
+	year = "2008"
+}
+
+ at article{Gebbert20141,
+	abstract = "Abstract Time in geographic information systems has been a research theme for more than two decades, resulting in comprehensive theoretical work, many research prototypes and several working solutions. However, none of the available solutions provides the ability to manage, analyze, process and visualize large environmental spatio-temporal datasets and the investigation and assessment of temporal relationships between them. We present in this paper a freely available field based temporal GIS (TGRASS) that fulfills these requirements. Our approach is based on the integration of time in the open source Geographic Resources Analysis Support System (GRASS). We introduce the concept of a space time dataset that is defined as a collection of time stamped raster, voxel or vector data. A dedicated set of spatio-temporal tools was implemented to manage, process and analyze space time datasets and their temporal and spatial relationships. We demonstrate the temporal GIS and envir
 onmental modeling capabilities of TGRASS by analyzing a multi-decadal European climate dataset.",
+	author = "Gebbert, S. and Pebesma, E.",
+	doi = "10.1016/j.envsoft.2013.11.001",
+	issn = "1364-8152",
+	journal = "Environmental Modelling \& Software",
+	keywords = "Temporal {GIS}; Spatio-temporal modeling; {GRASS GIS}; {TGRASS}",
+	note = "",
+	pages = "1--12",
+	title = "{A temporal {GIS} for field based environmental modeling}",
+	url = "http://www.sciencedirect.com/science/article/pii/S136481521300282X",
+	volume = "53",
+	year = "2014"
+}
+
+ at article{Haylock2008_climate_series,
+	abstract = "{We present a European land-only daily high-resolution gridded data set for precipitation and minimum, maximum, and mean surface temperature for the period 1950--2006. This data set improves on previous products in its spatial resolution and extent, time period, number of contributing stations, and attention to finding the most appropriate method for spatial interpolation of daily climate observations. The gridded data are delivered on four spatial resolutions to match the grids used in previous products as well as many of the rotated pole Regional Climate Models (RCMs) currently in use. Each data set has been designed to provide the best estimate of grid box averages rather than point values to enable direct comparison with RCMs. We employ a three-step process of interpolation, by first interpolating the monthly precipitation totals and monthly mean temperature using three-dimensional thin-plate splines, then interpolating the daily anomalies using indicator and univer
 sal kriging for precipitation and kriging with an external drift for temperature, then combining the monthly and daily estimates. Interpolation uncertainty is quantified by the provision of daily standard errors for every grid square. The daily uncertainty averaged across the entire region is shown to be largely dependent on the season and number of contributing observations. We examine the effect that interpolation has on the magnitude of the extremes in the observations by calculating areal reduction factors for daily maximum temperature and precipitation events with return periods up to 10 years. }",
+	author = "Haylock, M. R. and Hofstra, N. and Tank, A. M. G. K. and Klok, E. J. and Jones, P. D. and New, M.",
+	day = "30",
+	doi = "10.1029/2008JD010201",
+	issn = "0148-0227",
+	journal = "Journal of Geophysical Research",
+	keywords = "climate; data; kriging; meteorology; precipitation; splines; temperature",
+	month = oct,
+	number = "D20",
+	posted-at = "2009-08-12 00:09:46",
+	priority = "2",
+	title = "{A European daily high-resolution gridded data set of surface temperature and precipitation for {1950 - 2006}}",
+	volume = "113",
+	year = "2008"
+}
+
+ at techreport{mcgarigal1995fragstats,
+	author = "McGarigal, K. and Marks, B. J.",
+	group = "Forest Services",
+	institution = "USDA",
+	number = "PNW-351",
+	title = "{FRAGSTATS: spatial pattern analysis program for quantifying landscape structure}",
+	year = "1995"
+}
+
+ at inproceedings{raghavan2014deploying,
+	author = "Raghavan, V. and Choosumrong, S. and Yoshida, D. and Vinayaraj, P.",
+	booktitle = "{In Proceedings of FOSS4G Europe, Jacobs University, Bremen, Germany}",
+	month = "July",
+	title = "{Deploying Dynamic Routing Service for Emergency Scenarios using {pgRouting, GRASS and ZOO}}",
+	year = "2014"
+}
+
+ at article{rocchini2012let,
+	author = "Rocchini, D. and Neteler, M.",
+	journal = "Trends in Ecology \& Evolution",
+	number = "6",
+	pages = "310--311",
+	publisher = "Elsevier Current Trends",
+	title = "{Let the four freedoms paradigm apply to ecology}",
+	volume = "27",
+	year = "2012"
+}
+
+ at techreport{Rothermel1983how,
+	author = "Rothermel, R. C.",
+	institution = "US Forest Services",
+	number = "INT-143",
+	title = "{How to predict the spread and intensity of forest and range fires}",
+	year = "1983"
+}
+
+ at article{suleiman2008intercomparison,
+	author = "Suleiman, A. and Al-Bakri, J. and Duqqah, M. and Crago, R.",
+	journal = "Journal of Hydrometeorology",
+	number = "5",
+	pages = "903--919",
+	title = "{Intercomparison of evapotranspiration estimates at the different ecological zones in {Jordan}}",
+	volume = "9",
+	year = "2008"
+}
+
+ at article{timmermans2007intercomparison,
+	author = "Timmermans, W. J. and Kustas, W. P. and Anderson, M. C. and French, A. N.",
+	journal = "Remote Sensing of Environment",
+	number = "4",
+	pages = "369--384",
+	publisher = "Elsevier",
+	title = "{An intercomparison of the surface energy balance algorithm for land {(SEBAL)} and the two-source energy balance {(TSEB)} modeling schemes}",
+	volume = "108",
+	year = "2007"
+}
+
+ at phdthesis{xu1994simulating,
+	author = "Xu, J.",
+	school = "Rutgers University, New Brunswick, New Jersey",
+	title = "{Simulating the spread of wildfires using a geographic information system and remote sensing}",
+	year = "1994"
+}
+
+ at article{2013_DiLeo_etAl,
+	author = "{Di Leo}, M. and de Rigo, D. and Rodriguez-Aseretto, D. and Bosco, C. and Petroliagkis, T. and Camia, A. and San-Miguel-Ayanz, J.",
+	booktitle = "{Environmental Software Systems. Fostering Information Sharing}",
+	citeulike-article-id = "12612201",
+	citeulike-linkout-0 = "http://scholar.google.it/scholar?cluster=1214896257622472922",
+	citeulike-linkout-1 = "http://mastrave.org/bib/Di\_Leo\_etal\_ISESS2013.pdf",
+	citeulike-linkout-2 = "http://dx.doi.org/10.1007/978-3-642-41151-9\_2",
+	citeulike-linkout-3 = "http://dx.doi.org/10.1007/978-3-642-41151-9\_2",
+	citeulike-linkout-4 = "http://link.springer.com/chapter/10.1007/978-3-642-41151-9\_2",
+	doi = "10.1007/978-3-642-41151-9_2",
+	editor = "H\v{r}eb{\'i}\v{c}ek, Ji\v{r}{\'i} and Schimak, Gerald and Kub{\'a}sek, Miroslav and Rizzoli, Andrea E.",
+	issn = "1868-4238",
+	journal = {IFIP Advances in Information and Communication Technology ISSN:1868-4238. Special issue: "Environmental Software Systems. Fostering sharing information"},
+	pages = "11--22",
+	posted-at = "2014-10-10 13:24:52",
+	priority = "0",
+	publisher = "Springer Berlin Heidelberg",
+	series = "{IFIP Advances in Information and Communication Technology}",
+	title = "{Dynamic Data Driven Ensemble for Wildfire Behaviour Assessment: A Case Study}",
+	url = "http://scholar.google.it/scholar?cluster=1214896257622472922",
+	volume = "413",
+	year = "2013"
+}
+
+ at inproceedings{Petrasova2014,
+	address = "San Diego, California, USA",
+	author = "Petrasova, A. and Harmon, B. and Petras, V. and Mitasova, H.",
+	booktitle = "{7th International Congress on Environmental Modelling and Software}",
+	editor = "{Ames, D.P., Quinn, N.W.T., Rizzoli}, A.E. (Eds.)",
+	isbn = "978-88-9035-744-2",
+	month = "jun",
+	title = "{GIS-based environmental modeling with tangible interaction and dynamic visualization}",
+	url = "http://www.iemss.org/society/index.php/iemss-2014-proceedings",
+	year = "2014"
+}
+
+ at article{Mitas1988a,
+	author = "Mitas, L. and Mitasova, H.",
+	doi = "10.1016/0898-1221(88)90255-6",
+	issn = "0898-1221",
+	journal = "Computers \& Mathematics with Applications",
+	number = "12",
+	pages = "983--992",
+	title = "{General variational approach to the interpolation problem}",
+	volume = "16",
+	year = "1988"
+}
+
+ at article{Mitas1998b,
+	author = "Mitas, L. and Mitasova, H.",
+	doi = "10.1029/97WR03347",
+	issn = "1944-7973",
+	journal = "Water Resources Research",
+	number = "3",
+	pages = "505--516",
+	title = "{Distributed soil erosion simulation for effective erosion prevention}",
+	volume = "34",
+	year = "1998"
+}
+
+ at article{Mitas1993,
+	author = "Mitas, L. and Mitasova, H.",
+	doi = "10.1007/BF00893171",
+	issn = "0882-8121",
+	journal = "Mathematical Geology",
+	number = "6",
+	pages = "641--655",
+	title = "{Interpolation by regularized spline with tension: I. Theory and implementation}",
+	volume = "25",
+	year = "1993"
+}
+
+ at misc{Petras2014,
+	author = "Petras, V. and Gebbert, S.",
+	note = "Poster presented at 2014 Fall Meeting, AGU, San Francisco, Calif., 14-18 Dec",
+	title = "{Testing framework for GRASS GIS: ensuring reproducibility of scientific geospatial computing}",
+	year = "2014"
+}
+
+ at article{mea582,
+	author = "Petras, V. and Petrasova, A. and Harmon, B. and Meentemeyer, R. and Mitasova, H.",
+	note = "Manuscript submitted for publication",
+	title = "{Integrating open source solutions into geospatial science education}",
+	year = "2015"
+}
+
+ at article{neteler2012grass,
+	author = "Neteler, M. and Bowman, M.H. and Landa, M. and Metz, M.",
+	doi = "10.1016/j.envsoft.2011.11.014",
+	journal = "Environmental Modelling \& Software",
+	pages = "124--130",
+	publisher = "Elsevier",
+	title = "{GRASS GIS: a multi-purpose Open Source GIS}",
+	volume = "31",
+	year = "2012"
+}
+
+ at misc{ncsugis582,
+	author = "{NCSU}",
+	note = "\url{http://courses.ncsu.edu/gis582/common/grass/interpolation\_2.html}",
+	title = "{{GIS/MEA582}: Geospatial Modeling and Analysis}",
+	urldate = "2015-03-30",
+	year = 2015
+}
+
+ at misc{tracvsurfrst,
+	author = "{GRASS GIS Development Team}",
+	note = "\url{http://trac.osgeo.org/grass/log/grass/trunk/vector/v.surf.rst?rev=63988\&limit=999}",
+	title = "{GRASS GIS Trac: Revision log for v.surf.rst}",
+	urldate = "2015-03-31",
+	year = 2015
+}
+
+ at misc{tracrli,
+	author = "{GRASS GIS Development Team}",
+	note = "\url{http://trac.osgeo.org/grass/log/grass/trunk/raster/r.li?rev=63988\&limit=999}",
+	title = "{GRASS GIS Trac: Revision log for r.li}",
+	urldate = "2015-03-31",
+	year = 2015
+}
+
+ at article{achanta2012slic,
+	author = "Achanta, Radhakrishna and Shaji, Appu and Smith, Kevin and Lucchi, Aurelien and Fua, Pascal and S{\"u}sstrunk, Sabine",
+	journal = "IEEE transactions on pattern analysis and machine intelligence",
+	number = "11",
+	pages = "2274--2282",
+	publisher = "IEEE",
+	title = "{SLIC superpixels compared to state-of-the-art superpixel methods}",
+	volume = "34",
+	year = "2012"
+}
+
+ at misc{achanta2010epfl,
+	author = "Achanta, Radhakrishna",
+	publisher = "June",
+	title = "{{SLIC} Superpixels, {EPFL} Technical Report No. 149300}",
+	year = "2010"
+}
+
+ at phdthesis{vitti2008free,
+	author = "Vitti, A",
+	school = "PhD thesis in Environmental Engineering, Universit{\`a} di Trento, Italy",
+	title = "{Free discontinuity problems in image and signal segmentation}",
+	year = "2008"
+}
+
+ at article{mumford1989optimal,
+	author = "Mumford, David and Shah, Jayant",
+	journal = "Communications on pure and applied mathematics",
+	number = "5",
+	pages = "577--685",
+	publisher = "Wiley Online Library",
+	title = "{Optimal approximations by piecewise smooth functions and associated variational problems}",
+	volume = "42",
+	year = "1989"
+}
+
+ at article{march1997variational,
+	author = "March, Riccardo and Dozio, Marziano",
+	journal = "Image and Vision Computing",
+	number = "9",
+	pages = "705--712",
+	publisher = "Elsevier",
+	title = "{A variational method for the recovery of smooth boundaries}",
+	volume = "15",
+	year = "1997"
+}
+
+ at article{vitti2012mumford,
+	author = "Vitti, Alfonso",
+	journal = "ISPRS journal of photogrammetry and remote sensing",
+	pages = "50--64",
+	publisher = "Elsevier",
+	title = "{The Mumford--Shah variational model for image segmentation: An overview of the theory, implementation and use}",
+	volume = "69",
+	year = "2012"
+}
+
+ at misc{zhuang1992image,
+	author = "Zhuang, Hong C.",
+	issn = "0899-7853",
+	journal = "GRASSClIPPINGS",
+	number = "2",
+	pages = "10-11",
+	title = "{Image processing in GRASS}",
+	volume = "6",
+	year = "1992"
+}
+
+ at article{roerink2000reconstructing,
+	author = "Roerink, GJ and Menenti, M and Verhoef, W",
+	journal = "International Journal of Remote Sensing",
+	number = "9",
+	pages = "1911--1917",
+	publisher = "Taylor \& Francis",
+	title = "{Reconstructing cloudfree NDVI composites using Fourier analysis of time series}",
+	volume = "21",
+	year = "2000"
+}
+
+ at inproceedings{chemin2015grass,
+	author = "Chemin, Yann and Petras, Vaclav and Petrasova, Anna and Landa, Martin and Gebbert, S{\"o}ren and Zambelli, Pietro and Neteler, Markus and L{\"o}we, Peter and {Di Leo}, Margherita",
+	booktitle = "{Geophysical Research Abstracts}",
+	pages = "8314",
+	title = "{{GRASS GIS}: a peer-reviewed scientific platform and future research repository}",
+	volume = "17",
+	year = "2015"
+}
+
+ at inproceedings{leppelt2015grass,
+	author = "Leppelt, Thomas and Gebbert, S{\"o}ren",
+	booktitle = "{EGU General Assembly Conference Abstracts}",
+	pages = "11672",
+	title = "{A GRASS GIS based Spatio-Temporal Algebra for Raster-, 3D Raster-and Vector Time Series Data}",
+	volume = "17",
+	year = "2015"
+}
+
+ at inproceedings{gebbert2015grass,
+	author = "Gebbert, S{\"o}ren and Leppelt, Thomas",
+	booktitle = "{EGU General Assembly Conference Abstracts}",
+	pages = "7296",
+	title = "{GRASS GIS: The first Open Source Temporal GIS}",
+	volume = "17",
+	year = "2015"
+}
+

Added: grass-promo/grassposter/2018_AGU_Software_Citation/poster.tex
===================================================================
--- grass-promo/grassposter/2018_AGU_Software_Citation/poster.tex	                        (rev 0)
+++ grass-promo/grassposter/2018_AGU_Software_Citation/poster.tex	2018-11-29 15:08:36 UTC (rev 73723)
@@ -0,0 +1,415 @@
+% License: CC BY-SA
+% Authors: See the authors below and see also acknowledgement for authors of some images or research
+
+\documentclass[25pt, margin=0mm, innermargin=25mm, blockverticalspace=25mm, colspace=25mm, subcolspace=8mm]{tikzposter}
+\geometry{paperwidth=63in,paperheight=42in}
+
+% to stretch boxes over whole paper with custor paper size
+\makeatletter
+\setlength{\TP at visibletextwidth}{\textwidth-2\TP at innermargin}
+\setlength{\TP at visibletextheight}{\textheight-2\TP at innermargin}
+\makeatother
+
+% Fira Sans, GRASS GIS branding sans serif font
+\usepackage{FiraSans}
+\renewcommand*\oldstylenums[1]{{\firaoldstyle #1}}
+
+% EB Garamond, GRASS GIS branding serif font
+% note that EB Garamond does not have bold
+\usepackage[cmintegrals,cmbraces]{newtxmath}
+\usepackage{ebgaramond-maths}
+
+% might be needed for both font packages
+\usepackage[T1]{fontenc}
+
+% uncomment for all sans serif
+% \renewcommand{\familydefault}{\sfdefault}
+
+
+\usepackage[utf8]{inputenc}
+\usepackage{wrapfig}
+\usepackage[hidelinks]{hyperref}
+\usepackage{alltt}
+
+% For bibliography styling
+%% TODO: all names should be abbreviated
+\usepackage{natbib}
+
+\definecolor{textcolor}{HTML}{000000}
+
+\definecolor{titleTextColor}{HTML}{000000}
+\definecolorpalette{grassColorPalette} {
+  \definecolor{colorOne}{HTML}{419041}
+  % \definecolor{colorTwo}{HTML}{cccccc}
+  \definecolor{colorTwo}{HTML}{dddddd}
+  \definecolor{colorThree}{HTML}{F1B52D}
+  % \definecolor{colorThree}{HTML}{EFA126}
+}
+
+\usetheme{Default}
+\usetitlestyle{Empty}
+\usecolorstyle[colorPalette=grassColorPalette]{Britain}
+\colorlet{backgroundcolor}{white}
+
+\title{
+\Huge
+\textcolor{titleTextColor}{
+\textsf{
+% \textbf{
+\fontsize{130}{100}\selectfont
+\begin{minipage}{\textwidth}
+\centering
+Software Citation with Fine Granularity:
+\\[1cm]
+The \textnormal{\textsf{\textit{g.citation}}} Module for \textbf{GRASS}\,{\firalight GIS}
+\end{minipage}
+% }
+}
+}
+}
+
+\newlength{\grasslogoheight}
+\setlength{\grasslogoheight}{0.09\textheight}
+\newlength{\instlogoheight}
+\setlength{\instlogoheight}{0.33\grasslogoheight}
+
+% \setlength{\blocktitleheight}{0.02\textheight}
+
+% style for institute numbers
+\newcommand{\inst}[1]{\hspace{2pt}$^{\mbox{\normalsize#1}}$\hspace{-7pt}}
+\newcommand{\instlist}[1]{\hspace{1pt}$^{\mbox{\normalsize#1}}$\hspace{2pt}}
+
+\author{
+Vaclav Petras\inst{1}\,*\hspace{-7pt},
+Peter Loewe\inst{2},
+Markus Neteler\inst{3},
+\&
+Helena Mitasova\inst{1}
+}
+
+\institute{
+\large
+\instlist{1}Center for Geospatial Analytics, North Carolina State University, USA;
+\instlist{2}DIW Berlin Deutsches Institut für Wirtschaftsforschung e.V., Germany;
+\instlist{3}mundialis GmbH \& Co. KG, Germany;
+*Corresponding author: wenzeslaus at gmail.com, vpetras at ncsu.edu
+\\[1.7cm]
+\includegraphics[height=3cm]{ncstate}%
+\hspace{1cm}%
+\includegraphics[height=3cm]{cga}%
+\hspace{2.7cm}%
+\includegraphics[height=3cm]{diw_berlin}%
+\hspace{3cm}%
+\includegraphics[height=3.4cm]{mundialis}%
+}
+
+% \author{
+%
+% % Vaclav Petras\inst{1}\,*,
+% % Peter Loewe\inst{2},
+% % Markus Neteler\inst{3},
+% % \&
+% % Helena Mitasova\inst{1},
+% }
+% \institute{
+% \large
+% % \instlist{1}Center for Geospatial Analytics, North Carolina State University, USA;
+% % \instlist{2}DIW Berlin Deutsches Institut für Wirtschaftsforschung e.V., Germany;
+% % \instlist{3}mundialis GmbH \& Co. KG, Germany;
+% *Corresponding author: wenzeslaus at gmail.com, vpetras at ncsu.edu;
+% **Over 10 other members of the core team and numerous other contributors
+% \\[1.7cm]
+% \includegraphics[height=3cm]{ncstate}%
+% \hspace{1cm}%
+% \includegraphics[height=3cm]{cga}%
+% \hspace{3cm}%
+% \includegraphics[height=3.4cm]{mundialis}%
+% \hspace{3cm}%
+% \includegraphics[height=3cm]{diw_berlin}%
+% }
+
+\hypersetup
+{
+    pdfauthor={H. Mitasova, V. Petras, A. Petrasova, M. Neteler},
+    pdfsubject={AGU Fall Meeting 2018 Poster},
+    pdftitle={Software Citation with Fine Granularity: The g.citation Module for GRASS GIS},
+    pdfkeywords={GIS, algorithms, methods, preservation, science, reproducibility}
+}
+
+% \usetemplate{1}
+% \setinstituteshift{1}
+
+% \setblocktitleheight{2}
+% \setblockspacing{1}
+
+\graphicspath{{images/}{logos/}}
+
+\newcommand{\blocktitlewrap}[1]{\textnormal{\textsf{\textsc{\huge#1}}}}
+% it is not possible (?) to change block title in the class, using wrapper
+% the command introduced using:
+%   sed -i 's/\\block{\([^}]*\)}/\\block{\\blocktitlewrap{\1}}/g' main.tex
+
+% bullet point style
+\renewcommand{\labelitemi}{\textcolor{gray}{$\bullet$}\hspace{0.5ex}}
+
+% GRASS module
+\newcommand{\gmodule}[1]{\href{http://grass.osgeo.org/grass72/manuals/#1.html}{\emph{#1}}}
+\newcommand{\gamodule}[1]{\href{http://grass.osgeo.org/grass72/manuals/addons/#1.html}{\emph{#1}}}
+\newcommand{\gmodulenolink}[1]{\emph{#1}}
+
+\begin{document}
+
+\node[above left,opacity=0.99,inner sep=0pt,outer sep=4cm] at (bottomleft -| topright)%
+  {\includegraphics[width=0.3\paperwidth]{grass}};
+
+\maketitle[width=0.92\textwidth]
+
+% \maketitle
+% \addlogo[north west]{(2,-1)}{9cm}{images/Grass_GIS}
+%Please insert your institution logo here
+% \addlogo[north east]{(-2,-2.5)}{4cm}{images/logo_FEM_CRI}
+% \addlogo[north east]{(-2,-5.5)}{4cm}{images/NC_State_Seal}
+% \addlogo[north east]{(-8,-2.5)}{4cm}{images/Logo_cvut}
+% \addlogo[north east]{(-8,-6.5)}{4cm}{images/IWMI_logo}
+% \addlogo[north east]{(-2,-10.5)}{4cm}{images/logo_ec-jrc}
+
+\begin{columns}
+
+% Abstract
+%
+% GRASS GIS (grass.osgeo.org) is a community-driven geospatial software project
+% with a record of being used in scientific publications and research projects
+% over three decades. Authors of scientific publications, when using and citing
+% GRASS GIS, so far opted for citing either the entire software package, citing
+% the most recent review publication associated with GRASS GIS, or citing a
+% publication associated with a specific module.
+%
+% GRASS GIS provides over 500 modules, each with a unique functionality and
+% purpose, many with associated scientific publications. In addition to these core
+% modules in the GRASS GIS distribution there is a growing number of additional
+% add-on modules are being developed, often as part of research work. Until now,
+% no automated, software-enabled citation mechanism to cite individual GRASS GIS
+% modules, or functions in general was provided due to the lack of a reference
+% citation standard for GRASS GIS modules defined within the GRASS GIS community.
+%
+% We present a new GRASS GIS module g.citation with the aim to provide a
+% convenient, concise, and standardized way of citing GRASS GIS and its individual
+% modules. The current version of g.citation extracts the relevant information
+% from a respective manual page of any given GRASS GIS module and turns this
+% semi-structured record into a proper citation in a variety of styles and formats
+% with the machine-readable Citation File Format (CFF) currently promising most
+% efficiency and expressiveness in storing the information and Citation Style
+% Language (CSL) used for formatting citations. The module is now in a prototype
+% stage and it is available in the GRASS GIS Addons repository. Future directions
+% include using standardized format for storing the citation information together
+% with the code and incorporating persistent scientific identifiers such as DOI.
+% We are now seeking collaborators and feedback from authors of geospatial
+% algorithms who want to share their code and be cited at the same time.
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\column{0.25}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\block{\blocktitlewrap{GRASS GIS Overview}}{
+
+\Large
+
+\begin{itemize}
+% Basic Topics
+ \item Community-driven project
+ \item 35 years of continuous software development
+ \item long-term releases, stable APIs, and emphasis on science
+ \item single integrated environment for 2D and 3D raster analysis, image processing, vector data analysis, and spatio-temporal data processing
+\end{itemize}
+
+}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\block{\blocktitlewrap{Current Approaches}}{
+
+\Large
+
+Authors of scientific publications, when using and citing
+GRASS GIS, so far opted for citing either the entire software package, citing
+the most recent review publication associated with GRASS GIS, or citing a
+publication associated with a specific module.
+
+\vspace*{1.5cm}
+
+\begin{minipage}{\linewidth}
+\centering
+\includegraphics[width=.7\linewidth]{module_references}
+\\
+Creating a synchronized animation of monthly total precipitation and mean temperature for NC, USA
+\end{minipage}
+
+\vspace*{1cm}
+
+\vspace*{1.5cm}
+
+\begin{minipage}{\linewidth}
+\centering
+\includegraphics[width=.7\linewidth]{module_author}
+\\
+Creating a synchronized animation of monthly total precipitation and mean temperature for NC, USA
+\end{minipage}
+
+\vspace*{1cm}
+
+}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\block{\blocktitlewrap{Motivation}}{
+
+\Large
+
+GRASS GIS provides over 500 modules, each with a unique functionality and
+purpose, many with associated scientific publications. In addition to these core
+modules in the GRASS GIS distribution there is a growing number of additional
+add-on modules are being developed, often as part of research work. Until now,
+no automated, software-enabled citation mechanism to cite individual GRASS GIS
+modules, or functions in general was provided due to the lack of a reference
+citation standard for GRASS GIS modules defined within the GRASS GIS community.
+
+}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\column{0.25}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\block{\blocktitlewrap{GRASS GIS Documentation}}{
+
+\Large
+
+
+}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\block{\blocktitlewrap{GRASS GIS Metadata for Modules}}{
+
+\Large
+
+
+}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\block{\blocktitlewrap{\textnormal{\textsf{\textit{g.citation}}} Module}}{
+
+\Large
+
+\vspace*{1.5cm}
+
+\begin{minipage}{\linewidth}
+\centering
+\includegraphics[width=.7\linewidth]{screenshot_bibtex_chicago}
+\\
+Creating a synchronized animation of monthly total precipitation and mean temperature for NC, USA
+\end{minipage}
+
+\vspace*{1cm}
+
+}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\block{\blocktitlewrap{Citation File Format (CFF)}}{
+
+\Large
+
+\begin{itemize}
+ \item YAML (YAML Ain’t Markup Language) text file
+ \item human- and machine- readable
+ \item \texttt{CITATION.cff} file
+\end{itemize}
+
+\vspace*{.5cm}
+
+\begin{minipage}{\linewidth}
+\centering
+\includegraphics[width=.7\linewidth]{code/cff}
+\\
+Creating a synchronized animation of monthly total precipitation and mean temperature for NC, USA
+\end{minipage}
+
+\vspace*{1cm}
+
+}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\block{\blocktitlewrap{Citation Style Language (CSL)}}{
+
+\Large
+
+\begin{itemize}
+ \item style language for citations
+ \item citeproc-py CSL processor
+ \item metadata $\rightarrow$ CSL + citeproc JSON $\rightarrow$ journal citation
+\end{itemize}
+
+}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\column{0.25}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\block{\blocktitlewrap{Discussion and Future Work}}{
+
+\Large
+
+
+}
+
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\block{\blocktitlewrap{References}}{
+
+\vspace{-0.2cm}
+\scriptsize
+
+% \newcommand{\blocksectiontitle}[1]{\subsubsection*{\textcolor{gray}{\textsf{#1}}}}
+\newcommand{\blocksectiontitle}[1]{\textbf{#1}}
+
+%\blocksectiontitle{References}
+\begingroup
+\renewcommand{\section}[2]{}%
+\bibliographystyle{apalike}
+% \bibliography{poster}
+\endgroup
+
+}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\column{0.25}
+
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\block{\blocktitlewrap{Availability}}{
+
+\Large
+
+\begin{itemize}
+ \item
+ \item
+ \item
+ \item
+\end{itemize}
+
+}
+
+\end{columns}
+
+\node[above left,opacity=0.5,inner sep=0pt,outer sep=4cm] at (bottomleft -| topright)%
+  {\includegraphics[width=0.3\paperwidth]{grass}};
+
+\end{document}



More information about the grass-commit mailing list