diff --git a/doc/src/introducion/introducion.rst b/doc/src/documento_usuario/01-introducion.rst similarity index 100% rename from doc/src/introducion/introducion.rst rename to doc/src/documento_usuario/01-introducion.rst diff --git a/doc/src/criterios/criterios.rst b/doc/src/documento_usuario/02-criterios.rst similarity index 100% rename from doc/src/criterios/criterios.rst rename to doc/src/documento_usuario/02-criterios.rst diff --git a/doc/src/calendarios/calendarios.rst b/doc/src/documento_usuario/03-calendarios.rst similarity index 100% rename from doc/src/calendarios/calendarios.rst rename to doc/src/documento_usuario/03-calendarios.rst diff --git a/doc/src/avances/avances.rst b/doc/src/documento_usuario/04-avances.rst similarity index 100% rename from doc/src/avances/avances.rst rename to doc/src/documento_usuario/04-avances.rst diff --git a/doc/src/recursos/recursos.rst b/doc/src/documento_usuario/05-recursos.rst similarity index 100% rename from doc/src/recursos/recursos.rst rename to doc/src/documento_usuario/05-recursos.rst diff --git a/doc/src/pedidos/pedidos.rst b/doc/src/documento_usuario/06-pedidos.rst similarity index 100% rename from doc/src/pedidos/pedidos.rst rename to doc/src/documento_usuario/06-pedidos.rst diff --git a/doc/src/planificacion/planificacion.rst b/doc/src/documento_usuario/07-planificacion.rst similarity index 100% rename from doc/src/planificacion/planificacion.rst rename to doc/src/documento_usuario/07-planificacion.rst diff --git a/doc/src/asignacion/asignacion.rst b/doc/src/documento_usuario/08-asignacion.rst similarity index 100% rename from doc/src/asignacion/asignacion.rst rename to doc/src/documento_usuario/08-asignacion.rst diff --git a/doc/src/partes/partes.rst b/doc/src/documento_usuario/09-partes.rst similarity index 100% rename from doc/src/partes/partes.rst rename to doc/src/documento_usuario/09-partes.rst diff --git a/doc/src/etiquetas/etiquetas.rst b/doc/src/documento_usuario/10-etiquetas.rst similarity index 100% rename from doc/src/etiquetas/etiquetas.rst rename to doc/src/documento_usuario/10-etiquetas.rst diff --git a/doc/src/documento_usuario/Makefile b/doc/src/documento_usuario/Makefile new file mode 100644 index 000000000..f33687cc8 --- /dev/null +++ b/doc/src/documento_usuario/Makefile @@ -0,0 +1,153 @@ +# +# Makefile +# Adrian Perez, 2009-05-15 11:20 +# + +RST_HTML_FLAGS = --link-stylesheet --stylesheet-path=html/lsr.css +RST_TEX_FLAGS = --documentclass=igaliabk --font-encoding=OT1 +OUTPUT_BASE = output + +rst_srcs := $(filter-out index.rst,$(wildcard *.rst)) +html_pages := $(patsubst %.rst,html/%.html,$(rst_srcs)) html/index.html + +svg_images := $(wildcard images/*.svg) +png_images := $(patsubst %.svg,%.png,$(svg_images)) $(wildcard images/*.png) + +utildir := ../../tools/ + +# Main targets +# +all: html pdf +pdf: pdf/$(OUTPUT_BASE).pdf +ebook: pdf/$(OUTPUT_BASE).ebook.pdf +html: $(html_pages) +png: $(png_images) + +.PHONY: html pdf ebook png + +### Xavi + +all_img := $(wildcard images/*) +build_images := + +src_images := $(wildcard images/*) +html_images := $(patsubst %,html/%,$(src_images)) +pdf_images := $(patsubst %,pdf/%,$(src_images)) + +$(html_images): html/images/%: images/% + $P copy-img $@ + $Q mkdir -p $(@D) + $Q cp $< $@ + +$(pdf_images): pdf/images/%: images/% + $P copy-img $@ + $Q mkdir -p $(@D) + $Q cp $< $@ + +$(main_pdf): $(pdf_imges) + + + +### End Xavi + + +# Cleanup targets +# +clean: + $P clean pdf + $Q $(RM) -r pdf/ + $P clean html + $Q $(RM) -r html/ + + +# Copy CSS file +# +html/lsr.css: lsr.css + $P copy $@ + $Q mkdir -p $(@D) + $Q cp $< $@ + +$(html_pages): html/lsr.css $(html_images) + + +# Top-level RST creation for the PDF +# +pdf/$(OUTPUT_BASE).rst: $(rst_srcs) docinfo + $P toplevel $@ + $Q mkdir -p $(@D) + $Q $(utildir)/doctool toplevel --info=docinfo $(rst_srcs) > $@ + +pdf/$(OUTPUT_BASE).pdf pdf/$(OUTPUT_BASE).ebook.pdf: $(png_images) + +# Index page creation for the HTML output +# +index.rst: $(rst_srcs) docinfo + $P htmlindex $@ + $Q mkdir -p $(@D) + $Q $(utildir)/doctool htmlindex --info=docinfo $(rst_srcs) > $@ + + +# Implicit rules +# +html/%.html: %.rst + $P rst2html $@ + $Q mkdir -p $(@D) + $Q $(utildir)/doctool rst2html $(RST_HTML_FLAGS) $< $@ + +%.tex: %.rst + $P rst2latex $@ + $Q mkdir -p $(@D) + $Q $(utildir)/doctool rst2latex $(RST_TEX_FLAGS) $< $@ + +%.ebook.tex: %.rst + $P rst2ebook $@ + $Q mkdir -p $(@D) + $Q $(utildir)/doctool rst2ebook $(RST_TEX_FLAGS) $< $@ + +%.pdf: %.tex + $P pdflatex $@ + $Q cd $(@D) && TEXINPUTS=.:$(CURDIR): pdflatex $(PDFLATEX_FLAGS) $(CURDIR)/$< + $Q cd $(@D) && TEXINPUTS=.:$(CURDIR): pdflatex $(PDFLATEX_FLAGS) $(CURDIR)/$< + +%.trim.png: %.svg + $P svg2png $@ + $Q inkscape --without-gui --export-png=$@ --export-area-canvas --export-dpi=150 $< + +%.png: %.trim.png + $P png-trim $@ + $Q convert -trim $< $@ + +# Avoid removing intermediate .tex files and similar things. +# +.SECONDARY: + +# Control operation verboseness +# +ifeq ($(origin V),command line) + verbose := $(V) +endif +ifndef verbose + verbose := 0 +endif + +ifeq ($(verbose),0) + P = @printf ' * %-10s %s\n' + Q = @ + PDFLATEX_FLAGS += -interaction batchmode +else + P = @: +endif + +# Check for the U= command line argument +# +ifeq ($(origin U),command line) + utildir := $(U) +endif +ifndef utildir + utildir := $(CURDIR) +endif + + +# vim:ft=make +# + diff --git a/doc/src/documento_usuario/docinfo b/doc/src/documento_usuario/docinfo new file mode 100644 index 000000000..660033775 --- /dev/null +++ b/doc/src/documento_usuario/docinfo @@ -0,0 +1,6 @@ +############## +Document Title +############## + +:Version: !!git log -1 --format=%H +:Date: !!git log -1 --format=%ad diff --git a/doc/src/documento_usuario/igaliabk.cls b/doc/src/documento_usuario/igaliabk.cls new file mode 100644 index 000000000..ae8dcf066 --- /dev/null +++ b/doc/src/documento_usuario/igaliabk.cls @@ -0,0 +1,715 @@ +%% Updates from 2009/05/27, by Adrian Perez +%% +%% * Embedded logos by using TikZ/PGF figures: no need for external +%% files, high-quality vector output of our logos. TikZ code was +%% generated with the "inkscape2tikz" InkScape plugin, found here: +%% http://code.google.com/p/inkscape2tikz/ +%% +%% Updates from 2009/06/25, by Adrian Perez +%% +%% * Make this inherit the scrbook class instead of implementing a +%% duplicated class by copy-pasting the stock "book" class and +%% then modifying things. + +\NeedsTeXFormat{LaTeX2e}[1995/12/01] +\ProvidesClass{igaliabk} + [2009/06/27 LaTeX class for Igalia documentation] + +%\DeclareOption*{\PassOptionsToClass{\CurrentOption}{scrbook}} + +\LoadClass[11pt,oneside,onecolumn,a4paper,openany]{scrbook} + +\PassOptionsToPackage{colorlinks=true, + linkcolor=blue, urlcolor=blue, + pdfstartview=FitH}{hyperref} +\PassOptionsToPackage{hyperref}{ucs} +\PassOptionsToPackage{T1}{fontenc} +\PassOptionsToPackage{english}{babel} + +\RequirePackage{ucs} +\RequirePackage{lmodern} +\RequirePackage{fontenc} +\RequirePackage{hyperref} + +\AtBeginDocument{\PreloadUnicodePage{0}} +\AtBeginDocument{\PreloadUnicodePage{1}} + +\ifx\XeTeXversion\undefined + \renewcommand\rmdefault{ppl} + \relax +\else + \RequirePackage{xunicode} + \RequirePackage{xltxtra} + \defaultfontfeatures{Mapping=tex-text} + \setromanfont{Bitstream Charter} + \setmonofont{monospace} + \setsansfont{sans} +\fi + +\ifx\pdftexversion\undefined + \relax +\else + \PassOptionsToPackage{pdftex}{graphicx} +\fi + +\RequirePackage{ifthen} +\RequirePackage{graphicx} +\RequirePackage{eso-pic} +\RequirePackage{xspace} +\RequirePackage{color} +\RequirePackage{tikz} +\RequirePackage{eurosym} +%\RequirePackage{flafter} +%\RequirePackage{float} +%\floatplacement{figure}{H} + +\RequirePackage{babel} + + +\newcommand{\customer}[1]% + {\ifx\empty#1\empty\else\gdef\@customer{#1}\fi} +\customer{\@latex@warning@no@line{No customer given}} + +\newcommand{\reference}[1]% + {\ifx\empty#1\empty\else\gdef\@reference{#1}\fi} +\reference{\@latex@warning@no@line{No reference given}} + +\newcommand{\city}[1]% + {\ifx\empty#1\empty\else\gdef\@city{#1}\fi} +\city{\@latex@warning@no@line{No city given}} + + +\definecolor{c003082}{RGB}{0,48,130} +\definecolor{c0067b1}{RGB}{0,103,177} +\definecolor{c32012a}{RGB}{50,1,42} +\definecolor{c3f3f3f}{RGB}{63,63,63} +\definecolor{c3f3f3f}{RGB}{63,63,63} +\definecolor{c61a8cb}{RGB}{97,168,203} +\definecolor{c66accd}{RGB}{102,172,205} +\definecolor{c670164}{RGB}{103,1,100} +\definecolor{c6c9807}{RGB}{108,152,7} +\definecolor{ca1c22d}{RGB}{161,194,45} +\definecolor{cacd2e4}{RGB}{172,210,228} +\definecolor{cb30031}{RGB}{179,0,49} +\definecolor{cb40030}{RGB}{180,0,48} +\definecolor{cbfe7e5}{RGB}{191,231,229} +\definecolor{ccfe016}{RGB}{207,224,22} +\definecolor{cd4e314}{RGB}{212,227,20} +\definecolor{ceef69b}{RGB}{238,246,155} +\definecolor{cf0f79a}{RGB}{240,247,154} +\definecolor{cff0000}{RGB}{255,0,0} +\definecolor{cff6300}{RGB}{255,99,0} +\definecolor{cff91af}{RGB}{255,145,175} +\definecolor{cff9900}{RGB}{255,153,0} +\definecolor{cffc440}{RGB}{255,196,64} +\definecolor{cffc744}{RGB}{255,199,68} +\definecolor{cffdd91}{RGB}{255,221,145} +\definecolor{cffde91}{RGB}{255,222,145} +\definecolor{cffff00}{RGB}{255,255,0} +\definecolor{cffff99}{RGB}{255,255,153} +\definecolor{cf9fbbc}{RGB}{249,251,188} +\definecolor{cebf2c3}{RGB}{235,242,195} +\definecolor{cf5c6c8}{RGB}{245,198,200} +\definecolor{cdfc6d6}{RGB}{223,198,214} +\definecolor{cc7dbec}{RGB}{199,219,236} +\definecolor{cedf7f7}{RGB}{237,247,247} +\definecolor{cffe4bb}{RGB}{255,228,187} +\definecolor{cfff9da}{RGB}{255,249,218} +\definecolor{cbccadf}{RGB}{188,202,223} +\definecolor{cffd5ba}{RGB}{255,213,186} + +\newsavebox{\igaliaMiniLogo} +\sbox{\igaliaMiniLogo}{ +\scalebox{0.25}{ + \begin{tikzpicture}[y=0.80pt,x=0.80pt,yscale=-1] + %letter-i1 + \path[fill=c3f3f3f] (233.5810,47.8746) .. controls (233.5810,55.3506) and + (231.4230,56.6176) .. (224.5890,56.6176) .. controls (217.6170,56.6176) and + (215.4660,55.3496) .. (215.4660,47.8746) .. controls (215.4660,41.1606) and + (217.6170,40.1516) .. (224.5890,40.1516) .. controls (231.4230,40.1516) and + (233.5810,41.1606) .. (233.5810,47.8746) -- (233.5810,47.8746) -- + cycle(232.3110,113.3446) .. controls (232.3110,123.3206) and + (237.1200,128.5636) .. (237.1200,128.5636) .. controls (237.1200,128.5636) and + (230.7370,133.6006) .. (225.8170,133.6006) .. controls (219.3530,133.6006) and + (216.6020,121.9866) .. (216.6020,117.1836) .. controls (216.6020,95.5006) and + (216.6020,67.0016) .. (216.6020,67.0016) -- (232.3110,67.0016) .. controls + (232.3110,67.0016) and (232.3110,103.3796) .. (232.3110,113.3446) -- cycle; + %letter-i2 + \path[fill=c3f3f3f] (420.9640,47.8746) .. controls (420.9640,55.3506) and + (418.8060,56.6176) .. (411.9660,56.6176) .. controls (404.9970,56.6176) and + (402.8450,55.3496) .. (402.8450,47.8746) .. controls (402.8450,41.1606) and + (404.9970,40.1516) .. (411.9660,40.1516) .. controls (418.8060,40.1516) and + (420.9640,41.1606) .. (420.9640,47.8746) -- (420.9640,47.8746) -- + cycle(419.6930,113.3446) .. controls (419.6930,123.3206) and + (424.5000,128.5636) .. (424.5000,128.5636) .. controls (424.5000,128.5636) and + (418.1170,133.6006) .. (413.1990,133.6006) .. controls (406.7360,133.6006) and + (403.9840,121.9866) .. (403.9840,117.1836) .. controls (403.9840,95.5006) and + (403.9840,67.0016) .. (403.9840,67.0016) -- (419.6930,67.0016) .. controls + (419.6930,67.0016) and (419.6930,103.3796) .. (419.6930,113.3446) -- + (419.6930,113.3446) -- cycle; + %letter-g + \path[fill=c3f3f3f] (268.2870,133.0026) .. controls (250.5530,133.0026) and + (241.1760,125.6546) .. (241.1760,99.4296) .. controls (241.1760,73.0836) and + (250.9310,65.1036) .. (272.2130,65.1036) .. controls (279.0590,65.1036) and + (287.3710,66.0956) .. (294.0350,67.8666) .. controls (300.8920,69.6896) and + (300.3340,75.3706) .. (300.3340,75.3706) -- (300.3340,126.5386) .. controls + (300.3340,151.7456) and (286.2750,157.3266) .. (265.8830,157.3266) .. controls + (260.9320,157.3266) and (254.8650,156.6576) .. (249.7680,155.4256) .. controls + (243.1100,153.8186) and (245.5100,144.2846) .. (245.5100,144.2846) -- + (246.3690,140.8566) .. controls (252.3240,142.7556) and (259.6700,144.0226) .. + (265.7520,144.0226) .. controls (277.6620,144.0226) and (284.6270,140.7256) .. + (284.6270,128.8206) .. controls (281.0820,130.9706) and (275.6340,133.0026) .. + (268.2870,133.0026) -- (268.2870,133.0026) -- cycle(284.6260,83.1536) .. + controls (284.6260,83.1536) and (284.9680,79.9466) .. (280.7820,79.0326) .. + controls (277.9340,78.4116) and (274.8700,78.0236) .. (272.2120,78.0236) .. + controls (261.0670,78.0236) and (257.3940,80.9376) .. (257.3940,99.3036) .. + controls (257.3940,115.3896) and (260.8100,119.4476) .. (271.8320,119.4476) .. + controls (278.7970,119.4476) and (284.6270,117.2896) .. (284.6270,113.3666) -- + (284.6270,83.1536) -- (284.6260,83.1536) -- cycle; + %letter-l + \path[fill=c3f3f3f] (391.9170,49.7006) -- (391.9170,113.3666) .. controls + (391.9170,119.5716) and (393.3130,123.8806) .. (396.8620,128.5686) .. controls + (396.8620,128.5686) and (384.7550,138.4986) .. (380.1140,130.4896) .. controls + (377.6140,126.1776) and (376.2100,121.0266) .. (376.2100,113.9996) -- + (376.2100,40.0206) .. controls (376.2100,40.0206) and (378.4230,40.0206) .. + (382.6920,40.0206) .. controls (392.6260,40.0206) and (391.9170,49.7006) .. + (391.9170,49.7006) -- (391.9170,49.7006) -- cycle; + %letter-a2 + \path[fill=c3f3f3f] (484.5150,122.6586) .. controls (484.5150,122.6586) and + (484.5150,128.3566) .. (477.9450,130.2746) .. controls (470.7440,132.3736) and + (462.1680,133.2506) .. (455.3810,133.2506) .. controls (434.9900,133.2506) and + (428.1430,128.5686) .. (428.1430,111.7186) .. controls (428.1430,93.4766) and + (438.4070,90.5646) .. (453.4830,90.5646) .. controls (458.9320,90.5646) and + (463.9970,91.1926) .. (469.4440,92.3346) .. controls (469.4440,81.0666) and + (466.7840,78.2786) .. (453.3560,78.2786) .. controls (449.5980,78.2786) and + (445.8380,78.6076) .. (442.3560,79.2476) .. controls (433.2490,80.9096) and + (432.2470,74.3596) .. (432.2470,74.3596) -- (430.9350,68.5236) .. controls + (434.4350,67.5996) and (438.7490,66.7106) .. (443.3940,66.0666) .. controls + (447.6670,65.4796) and (452.2180,65.1036) .. (456.6540,65.1036) .. controls + (475.7790,65.1036) and (484.5170,70.9296) .. (484.5170,90.1856) -- + (484.5170,122.6586) -- (484.5150,122.6586) -- cycle(469.4430,115.9826) -- + (469.4430,102.9766) .. controls (465.8980,102.2146) and (461.3360,101.8366) .. + (456.6520,101.8366) .. controls (447.7830,101.8366) and (444.6130,102.8526) .. + (444.6130,111.0846) .. controls (444.6130,119.8236) and (447.0190,121.2196) .. + (456.5190,121.2196) .. controls (459.8220,121.2196) and (463.1950,120.7526) .. + (466.1990,120.0176) .. controls (469.5310,119.2256) and (469.4430,115.9826) .. + (469.4430,115.9826) -- (469.4430,115.9826) -- cycle; + %letter-a1 + \path[fill=c3f3f3f] (365.4430,122.6586) .. controls (365.4430,122.6586) and + (365.4470,128.3566) .. (358.8710,130.2746) .. controls (351.6760,132.3736) and + (343.0980,133.2506) .. (336.3070,133.2506) .. controls (315.9160,133.2506) and + (309.0780,128.5686) .. (309.0780,111.7186) .. controls (309.0780,93.4766) and + (319.3320,90.5646) .. (334.4100,90.5646) .. controls (339.8570,90.5646) and + (344.9240,91.1926) .. (350.3710,92.3346) .. controls (350.3710,81.0666) and + (347.7130,78.2786) .. (334.2830,78.2786) .. controls (330.5310,78.2786) and + (326.7710,78.6076) .. (323.2830,79.2476) .. controls (314.1760,80.9096) and + (313.1780,74.3596) .. (313.1780,74.3596) -- (311.8600,68.5236) .. controls + (315.3560,67.5996) and (319.6740,66.7106) .. (324.3230,66.0666) .. controls + (328.5940,65.4796) and (333.1450,65.1036) .. (337.5770,65.1036) .. controls + (356.7060,65.1036) and (365.4440,70.9296) .. (365.4440,90.1856) -- + (365.4440,122.6586) -- (365.4430,122.6586) -- cycle(350.3710,115.9826) -- + (350.3710,102.9766) .. controls (346.8220,102.2146) and (342.2640,101.8366) .. + (337.5760,101.8366) .. controls (328.7110,101.8366) and (325.5430,102.8526) .. + (325.5430,111.0846) .. controls (325.5430,119.8236) and (327.9470,121.2196) .. + (337.4490,121.2196) .. controls (340.7520,121.2196) and (344.1250,120.7526) .. + (347.1270,120.0176) .. controls (350.4600,119.2256) and (350.3710,115.9826) .. + (350.3710,115.9826) -- (350.3710,115.9826) -- cycle; + %green-bottom + \shade[top color=cffff00,bottom color=ca1c22d] + (25.1250,25.2769) .. controls (24.3240,26.0779) and + (23.5360,26.9188) .. (22.7500,27.7769) .. controls (22.7097,27.8208) and + (22.6652,27.8577) .. (22.6250,27.9019) .. controls (21.8646,28.7342) and + (21.1226,29.6067) .. (20.3750,30.4956) .. controls (19.5908,31.4321) and + (18.8222,32.4085) .. (18.0625,33.4019) .. controls (17.2988,34.4003) and + (16.5157,35.4099) .. (15.7812,36.4644) .. controls (15.3477,37.0868) and + (14.9221,37.7291) .. (14.5000,38.3706) .. controls (14.2006,38.8216) and + (13.8876,39.2534) .. (13.5938,39.7144) .. controls (13.4959,39.8694) and + (13.4097,40.0270) .. (13.3125,40.1831) .. controls (6.2177,51.4652) and + (0.8818,65.6729) .. (0.1250,82.0894) .. controls (0.0985,82.6631) and + (0.0776,83.2289) .. (0.0625,83.8081) .. controls (0.0245,84.8782) and + (0.0000,85.9710) .. (0.0000,87.0581) .. controls (0.0000,108.5808) and + (7.9542,126.2786) .. (17.8125,139.1206) .. controls (18.5895,140.1328) and + (19.3896,141.1386) .. (20.1875,142.0894) .. controls (20.8152,142.8374) and + (21.4251,143.5674) .. (22.0625,144.2769) .. controls (22.2479,144.4837) and + (22.4386,144.6980) .. (22.6250,144.9019) .. controls (23.1501,145.4748) and + (23.6895,146.0116) .. (24.2188,146.5581) .. controls (24.5247,146.8743) and + (24.8170,147.2188) .. (25.1250,147.5269) .. controls (35.5050,137.1459) and + (51.5285,121.3099) .. (61.0625,111.7769) .. controls (54.7489,105.4629) and + (46.7770,96.4657) .. (39.5000,86.4956) .. controls (46.7710,76.5936) and + (54.7272,67.6715) .. (61.0312,61.3706) .. controls (51.4982,51.8336) and + (35.5040,35.6549) .. (25.1250,25.2769) -- cycle; + %red-bottom + \shade[left color=cff0000,right color=c670164] + (111.4688,111.7456) .. controls (105.1609,118.0515) and + (96.1840,125.9953) .. (86.2500,133.2456) .. controls (76.3170,125.9939) and + (67.3686,118.0854) .. (61.0625,111.7769) .. controls (51.5285,121.3099) and + (35.5060,137.1459) .. (25.1250,147.5269) .. controls (26.7398,149.1410) and + (28.5045,150.7280) .. (30.3438,152.2769) .. controls (31.2872,153.0714) and + (32.2493,153.8502) .. (33.2500,154.6206) .. controls (33.9418,155.1532) and + (34.6564,155.6640) .. (35.3750,156.1831) .. controls (35.6947,156.4158) and + (35.9872,156.6717) .. (36.3125,156.9019) .. controls (36.4367,156.9891) and + (36.5625,157.0651) .. (36.6875,157.1519) .. controls (37.7688,157.9088) and + (38.8897,158.6461) .. (40.0312,159.3706) .. controls (51.7151,166.7861) and + (66.5009,172.3399) .. (83.7500,172.7456) .. controls (84.7399,172.7785) and + (85.7451,172.8081) .. (86.7500,172.8081) .. controls (108.2761,172.8073) and + (126.0871,164.7405) .. (138.9688,154.8394) .. controls (139.9834,154.0595) and + (140.9851,153.2642) .. (141.9375,152.4644) .. controls (142.6872,151.8347) and + (143.4146,151.2280) .. (144.1250,150.5894) .. controls (144.3330,150.4023) and + (144.5454,150.2145) .. (144.7500,150.0269) .. controls (144.7828,149.9969) and + (144.8110,149.9632) .. (144.8437,149.9332) .. controls (145.3857,149.4347) and + (145.8884,148.9037) .. (146.4062,148.4019) .. controls (146.7207,148.0977) and + (147.0687,147.8017) .. (147.3750,147.4957) .. controls (137.0000,137.1146) and + (120.9958,121.2746) .. (111.4688,111.7456) -- cycle; + %blue-bottom + \shade[left color=c0067b1,right color=cbfe7e5] + (85.7500,-0.0044) .. controls (64.2191,-0.0044) and + (46.3833,8.0630) .. (33.5000,17.9644) .. controls (32.5571,18.6890) and + (31.6392,19.4098) .. (30.7500,20.1519) .. controls (30.6537,20.2318) and + (30.5644,20.3217) .. (30.4688,20.4019) .. controls (30.1195,20.6958) and + (29.7782,20.9808) .. (29.4375,21.2769) .. controls (28.8610,21.7760) and + (28.2725,22.2703) .. (27.7188,22.7769) .. controls (27.1473,23.3006) and + (26.6385,23.8432) .. (26.0938,24.3706) .. controls (25.7754,24.6787) and + (25.4349,24.9669) .. (25.1250,25.2769) .. controls (35.5030,35.6519) and + (51.5335,51.8114) .. (61.0625,61.3394) .. controls (67.4026,54.9979) and + (76.4116,46.9766) .. (86.4062,39.6519) .. controls (96.2752,46.8705) and + (105.1647,54.7534) .. (111.4375,61.0269) .. controls (120.9615,51.4939) and + (136.9677,35.6266) .. (147.3438,25.2456) .. controls (145.7210,23.6223) and + (143.9751,22.0526) .. (142.1250,20.4956) .. controls (141.1973,19.7149) and + (140.2330,18.9405) .. (139.2500,18.1831) .. controls (139.1461,18.1026) and + (139.0421,18.0134) .. (138.9375,17.9331) .. controls (138.0439,17.2513) and + (137.1252,16.5607) .. (136.1875,15.9019) .. controls (136.0549,15.8080) and + (135.9148,15.7140) .. (135.7812,15.6206) .. controls (135.5784,15.4798) and + (135.3611,15.3540) .. (135.1562,15.2144) .. controls (134.2785,14.6110) and + (133.3853,14.0151) .. (132.4688,13.4331) .. controls (121.2301,6.2962) and + (107.1014,0.8829) .. (90.6875,0.1206) .. controls (90.1934,0.0934) and + (89.6855,0.0772) .. (89.1875,0.0581) .. controls (89.1146,0.0560) and + (89.0417,0.0600) .. (88.9688,0.0581) .. controls (87.8991,0.0196) and + (86.8372,-0.0044) .. (85.7500,-0.0044) -- cycle; + %yellow-bottom + \shade[top color=cff9900,bottom color=cffff99] + (147.3438,25.2769) .. controls (136.9677,35.6579) and + (120.9958,51.4646) .. (111.4688,60.9956) .. controls (117.8080,67.3355) and + (125.7926,76.3824) .. (133.0938,86.4019) .. controls (125.7991,96.4065) and + (117.8025,105.4128) .. (111.4688,111.7456) .. controls (121.0048,121.2836) and + (137.0000,137.1146) .. (147.3750,147.4956) .. controls (148.9992,145.8706) and + (150.5672,144.1288) .. (152.1250,142.2769) .. controls (152.9106,141.3430) and + (153.7068,140.3916) .. (154.4688,139.4019) .. controls (154.8855,138.8604) and + (155.3101,138.3035) .. (155.7188,137.7456) .. controls (156.1562,137.1529) and + (156.5714,136.5455) .. (157.0000,135.9331) .. controls (157.7523,134.8583) and + (158.4985,133.7549) .. (159.2188,132.6206) .. controls (166.6346,120.9411) and + (172.1835,106.1387) .. (172.5938,88.9019) .. controls (172.6267,87.9122) and + (172.6562,86.9065) .. (172.6562,85.9019) .. controls (172.6562,66.0829) and + (165.8091,49.3886) .. (157.0000,36.8081) .. controls (156.9136,36.6837) and + (156.8368,36.5567) .. (156.7500,36.4331) .. controls (156.0718,35.4748) and + (155.3864,34.5612) .. (154.6875,33.6519) .. controls (153.9623,32.7083) and + (153.2426,31.7917) .. (152.5000,30.9019) .. controls (152.4390,30.8288) and + (152.3736,30.7558) .. (152.3125,30.6831) .. controls (152.2599,30.6202) and + (152.2089,30.5582) .. (152.1562,30.4956) .. controls (151.3928,29.5920) and + (150.6196,28.7165) .. (149.8438,27.8706) .. controls (149.8183,27.8428) and + (149.8067,27.8046) .. (149.7812,27.7769) .. controls (149.2845,27.2367) and + (148.7500,26.7618) .. (148.2500,26.2456) .. controls (147.9417,25.9271) and + (147.6539,25.5870) .. (147.3438,25.2769) -- (147.3438,25.2769) -- cycle; + %blue-top + \shade[left color=c003082,right color=cbfe7e5] + (86.7188,0.0269) .. controls (65.0396,0.0269) and + (46.7961,7.8182) .. (33.5000,17.9644) .. controls (32.5547,18.6857) and + (31.6449,19.4086) .. (30.7500,20.1519) .. controls (30.6537,20.2318) and + (30.5644,20.3217) .. (30.4688,20.4019) .. controls (30.1195,20.6958) and + (29.7782,20.9808) .. (29.4375,21.2769) .. controls (28.8610,21.7760) and + (28.2725,22.2703) .. (27.7188,22.7769) .. controls (27.1473,23.3006) and + (26.6385,23.8432) .. (26.0938,24.3706) .. controls (40.1613,12.0068) and + (65.4731,24.3402) .. (86.4062,39.6519) .. controls (107.2671,24.3635) and + (132.3808,12.1038) .. (146.3750,24.4019) .. controls (145.0285,23.0977) and + (143.6332,21.7702) .. (142.1250,20.4956) .. controls (141.1927,19.7077) and + (140.2425,18.9521) .. (139.2500,18.1831) .. controls (139.1461,18.1026) and + (139.0421,18.0134) .. (138.9375,17.9331) .. controls (138.0439,17.2513) and + (137.1252,16.5607) .. (136.1875,15.9019) .. controls (136.0549,15.8080) and + (135.9148,15.7140) .. (135.7812,15.6206) .. controls (135.5784,15.4798) and + (135.3611,15.3540) .. (135.1562,15.2144) .. controls (134.2700,14.6103) and + (133.3921,14.0136) .. (132.4688,13.4331) .. controls (121.1009,6.2864) and + (106.9492,1.0175) .. (90.6875,0.1206) .. controls (90.1934,0.0934) and + (89.6855,0.0772) .. (89.1875,0.0581) .. controls (89.1146,0.0560) and + (89.0417,0.0600) .. (88.9688,0.0581) .. controls (88.2180,0.0383) and + (87.4787,0.0269) .. (86.7188,0.0269) -- (86.7188,0.0269) -- cycle; + %green-top + \shade[top color=cffff00,bottom color=c6c9807] + (24.2500,26.2456) .. controls (23.7553,26.7569) and + (23.2411,27.2415) .. (22.7500,27.7769) .. controls (22.7097,27.8208) and + (22.6652,27.8577) .. (22.6250,27.9019) .. controls (21.8646,28.7342) and + (21.1226,29.6067) .. (20.3750,30.4956) .. controls (19.5890,31.4302) and + (18.8288,32.4061) .. (18.0625,33.4019) .. controls (17.2962,34.3976) and + (16.5223,35.4088) .. (15.7812,36.4644) .. controls (15.3468,37.0832) and + (14.9243,37.7315) .. (14.5000,38.3706) .. controls (14.2006,38.8216) and + (13.8876,39.2534) .. (13.5938,39.7144) .. controls (13.4959,39.8694) and + (13.4097,40.0270) .. (13.3125,40.1831) .. controls (6.2035,51.5988) and + (1.0113,65.8170) .. (0.1250,82.0894) .. controls (0.0985,82.6631) and + (0.0776,83.2289) .. (0.0625,83.8081) .. controls (0.0429,84.5600) and + (0.0312,85.3285) .. (0.0312,86.0894) .. controls (0.0312,107.7661) and + (7.7090,125.8648) .. (17.8125,139.1206) .. controls (18.5897,140.1403) and + (19.3840,141.1278) .. (20.1875,142.0894) .. controls (20.8095,142.8337) and + (21.4273,143.5680) .. (22.0625,144.2769) .. controls (22.2479,144.4837) and + (22.4386,144.6980) .. (22.6250,144.9019) .. controls (23.1501,145.4748) and + (23.6895,146.0116) .. (24.2188,146.5581) .. controls (11.8828,132.5261) and + (24.1864,107.3503) .. (39.5000,86.4956) .. controls (24.2137,65.5522) and + (11.9238,40.2709) .. (24.2500,26.2456) -- cycle; + %red-top + \shade[left color=cff0000,right color=c32012a] + (86.2500,133.2456) .. controls (65.3492,148.5000) and + (40.1246,160.7315) .. (26.0938,148.4019) .. controls (27.4418,149.7075) and + (28.8333,151.0009) .. (30.3438,152.2769) .. controls (31.2760,153.0644) and + (32.2575,153.8519) .. (33.2500,154.6206) .. controls (33.9355,155.1515) and + (34.6612,155.6635) .. (35.3750,156.1831) .. controls (35.6947,156.4158) and + (35.9872,156.6717) .. (36.3125,156.9019) .. controls (36.4367,156.9891) and + (36.5625,157.0651) .. (36.6875,157.1519) .. controls (37.7682,157.9020) and + (38.8942,158.6558) .. (40.0312,159.3706) .. controls (51.8532,166.8028) and + (66.6702,172.1773) .. (83.7500,172.7456) .. controls (84.4201,172.7614) and + (85.1038,172.7768) .. (85.7812,172.7768) .. controls (107.4579,172.7768) and + (125.6702,164.9815) .. (138.9688,154.8393) .. controls (139.9917,154.0591) and + (140.9735,153.2698) .. (141.9375,152.4643) .. controls (142.6837,151.8408) and + (143.4148,151.2254) .. (144.1250,150.5893) .. controls (144.3330,150.4023) and + (144.5454,150.2144) .. (144.7500,150.0268) .. controls (144.7828,149.9968) and + (144.8110,149.9631) .. (144.8437,149.9331) .. controls (145.3857,149.4346) and + (145.8884,148.9036) .. (146.4062,148.4019) .. controls (132.3793,160.7377) and + (107.1510,148.5047) .. (86.2500,133.2456) -- cycle; + %yellow-top + \shade[top color=cff6300,bottom color=cffff99] + (148.2500,26.2456) .. controls (160.5323,40.2559) and + (148.3422,65.4886) .. (133.0938,86.4019) .. controls (148.3381,107.3217) and + (160.5533,132.5271) .. (148.2500,146.5269) .. controls (149.5544,145.1799) and + (150.8502,143.7855) .. (152.1250,142.2769) .. controls (152.9130,141.3443) and + (153.6996,140.3946) .. (154.4688,139.4019) .. controls (154.8867,138.8624) and + (155.3077,138.3025) .. (155.7188,137.7456) .. controls (156.1536,137.1519) and + (156.5752,136.5451) .. (157.0000,135.9331) .. controls (157.7502,134.8523) and + (158.5038,133.7577) .. (159.2188,132.6206) .. controls (166.6518,120.7981) and + (172.0254,105.9774) .. (172.5938,88.9019) .. controls (172.6099,88.2234) and + (172.6250,87.5566) .. (172.6250,86.8706) .. controls (172.6250,66.8606) and + (166.0051,49.7772) .. (157.0000,36.8081) .. controls (156.9135,36.6837) and + (156.8367,36.5567) .. (156.7500,36.4331) .. controls (156.0717,35.4748) and + (155.3863,34.5612) .. (154.6875,33.6519) .. controls (153.9657,32.7062) and + (153.2436,31.7972) .. (152.5000,30.9019) .. controls (152.4390,30.8288) and + (152.3735,30.7558) .. (152.3125,30.6831) .. controls (152.2599,30.6202) and + (152.2089,30.5582) .. (152.1562,30.4956) .. controls (151.3927,29.5920) and + (150.6195,28.7165) .. (149.8437,27.8706) .. controls (149.8182,27.8428) and + (149.8067,27.8046) .. (149.7812,27.7769) .. controls (149.2845,27.2367) and + (148.7499,26.7618) .. (148.2500,26.2456) -- (148.2500,26.2456) -- cycle; + \end{tikzpicture} +}} + + +\newsavebox{\igaliaShipoutLogo} +\sbox{\igaliaShipoutLogo}{ +\scalebox{5.2}{ +\begin{tikzpicture}[y=0.80pt,x=0.80pt,yscale=-1] + %green-bottom + \shade[top color=cf9fbbc,bottom color=cebf2c3] + (25.1250,25.2769) .. controls (24.3240,26.0779) and + (23.5360,26.9188) .. (22.7500,27.7769) .. controls (22.7097,27.8208) and + (22.6652,27.8577) .. (22.6250,27.9019) .. controls (21.8646,28.7342) and + (21.1226,29.6067) .. (20.3750,30.4956) .. controls (19.5908,31.4321) and + (18.8222,32.4085) .. (18.0625,33.4019) .. controls (17.2988,34.4003) and + (16.5157,35.4099) .. (15.7812,36.4644) .. controls (15.3477,37.0868) and + (14.9221,37.7291) .. (14.5000,38.3706) .. controls (14.2006,38.8216) and + (13.8876,39.2534) .. (13.5938,39.7144) .. controls (13.4959,39.8694) and + (13.4097,40.0270) .. (13.3125,40.1831) .. controls (6.2177,51.4652) and + (0.8818,65.6729) .. (0.1250,82.0894) .. controls (0.0985,82.6631) and + (0.0776,83.2289) .. (0.0625,83.8081) .. controls (0.0245,84.8782) and + (0.0000,85.9710) .. (0.0000,87.0581) .. controls (0.0000,108.5808) and + (7.9542,126.2786) .. (17.8125,139.1206) .. controls (18.5895,140.1328) and + (19.3896,141.1386) .. (20.1875,142.0894) .. controls (20.8152,142.8374) and + (21.4251,143.5674) .. (22.0625,144.2769) .. controls (22.2479,144.4837) and + (22.4386,144.6980) .. (22.6250,144.9019) .. controls (23.1501,145.4748) and + (23.6895,146.0116) .. (24.2188,146.5581) .. controls (24.5247,146.8743) and + (24.8170,147.2188) .. (25.1250,147.5269) .. controls (35.5050,137.1459) and + (51.5285,121.3099) .. (61.0625,111.7769) .. controls (54.7489,105.4629) and + (46.7770,96.4657) .. (39.5000,86.4956) .. controls (46.7710,76.5936) and + (54.7272,67.6715) .. (61.0312,61.3706) .. controls (51.4982,51.8336) and + (35.5040,35.6549) .. (25.1250,25.2769) -- cycle; + %red-bottom + \shade[left color=cf5c6c8,right color=cdfc6d6] + (111.4688,111.7456) .. controls (105.1609,118.0515) and + (96.1840,125.9953) .. (86.2500,133.2456) .. controls (76.3170,125.9939) and + (67.3686,118.0854) .. (61.0625,111.7769) .. controls (51.5285,121.3099) and + (35.5060,137.1459) .. (25.1250,147.5269) .. controls (26.7398,149.1410) and + (28.5045,150.7280) .. (30.3438,152.2769) .. controls (31.2872,153.0714) and + (32.2493,153.8502) .. (33.2500,154.6206) .. controls (33.9418,155.1532) and + (34.6564,155.6640) .. (35.3750,156.1831) .. controls (35.6947,156.4158) and + (35.9872,156.6717) .. (36.3125,156.9019) .. controls (36.4367,156.9891) and + (36.5625,157.0651) .. (36.6875,157.1519) .. controls (37.7688,157.9088) and + (38.8897,158.6461) .. (40.0312,159.3706) .. controls (51.7151,166.7861) and + (66.5009,172.3399) .. (83.7500,172.7456) .. controls (84.7399,172.7785) and + (85.7451,172.8081) .. (86.7500,172.8081) .. controls (108.2761,172.8073) and + (126.0871,164.7405) .. (138.9688,154.8394) .. controls (139.9834,154.0595) and + (140.9851,153.2642) .. (141.9375,152.4644) .. controls (142.6872,151.8347) and + (143.4146,151.2280) .. (144.1250,150.5894) .. controls (144.3330,150.4023) and + (144.5454,150.2145) .. (144.7500,150.0269) .. controls (144.7828,149.9969) and + (144.8110,149.9632) .. (144.8437,149.9332) .. controls (145.3857,149.4347) and + (145.8884,148.9037) .. (146.4062,148.4019) .. controls (146.7207,148.0977) and + (147.0687,147.8017) .. (147.3750,147.4957) .. controls (137.0000,137.1146) and + (120.9958,121.2746) .. (111.4688,111.7456) -- cycle; + %blue-bottom + \shade[left color=cc7dbec,right color=cedf7f7] + (85.7500,-0.0044) .. controls (64.2191,-0.0044) and + (46.3833,8.0630) .. (33.5000,17.9644) .. controls (32.5571,18.6890) and + (31.6392,19.4098) .. (30.7500,20.1519) .. controls (30.6537,20.2318) and + (30.5644,20.3217) .. (30.4688,20.4019) .. controls (30.1195,20.6958) and + (29.7782,20.9808) .. (29.4375,21.2769) .. controls (28.8610,21.7760) and + (28.2725,22.2703) .. (27.7188,22.7769) .. controls (27.1473,23.3006) and + (26.6385,23.8432) .. (26.0938,24.3706) .. controls (25.7754,24.6787) and + (25.4349,24.9669) .. (25.1250,25.2769) .. controls (35.5030,35.6519) and + (51.5335,51.8114) .. (61.0625,61.3394) .. controls (67.4026,54.9979) and + (76.4116,46.9766) .. (86.4062,39.6519) .. controls (96.2752,46.8705) and + (105.1647,54.7534) .. (111.4375,61.0269) .. controls (120.9615,51.4939) and + (136.9677,35.6266) .. (147.3438,25.2456) .. controls (145.7210,23.6223) and + (143.9751,22.0526) .. (142.1250,20.4956) .. controls (141.1973,19.7149) and + (140.2330,18.9405) .. (139.2500,18.1831) .. controls (139.1461,18.1026) and + (139.0421,18.0134) .. (138.9375,17.9331) .. controls (138.0439,17.2513) and + (137.1252,16.5607) .. (136.1875,15.9019) .. controls (136.0549,15.8080) and + (135.9148,15.7140) .. (135.7812,15.6206) .. controls (135.5784,15.4798) and + (135.3611,15.3540) .. (135.1562,15.2144) .. controls (134.2785,14.6110) and + (133.3853,14.0151) .. (132.4688,13.4331) .. controls (121.2301,6.2962) and + (107.1014,0.8829) .. (90.6875,0.1206) .. controls (90.1934,0.0934) and + (89.6855,0.0772) .. (89.1875,0.0581) .. controls (89.1146,0.0560) and + (89.0417,0.0600) .. (88.9688,0.0581) .. controls (87.8991,0.0196) and + (86.8372,-0.0044) .. (85.7500,-0.0044) -- cycle; + %yellow-bottom + \shade[top color=cffe4bb,bottom color=cfff9da] + (147.3438,25.2769) .. controls (136.9677,35.6579) and + (120.9958,51.4646) .. (111.4688,60.9956) .. controls (117.8080,67.3355) and + (125.7926,76.3824) .. (133.0938,86.4019) .. controls (125.7991,96.4065) and + (117.8025,105.4128) .. (111.4688,111.7456) .. controls (121.0048,121.2836) and + (137.0000,137.1146) .. (147.3750,147.4956) .. controls (148.9992,145.8706) and + (150.5672,144.1288) .. (152.1250,142.2769) .. controls (152.9106,141.3430) and + (153.7068,140.3916) .. (154.4688,139.4019) .. controls (154.8855,138.8604) and + (155.3101,138.3035) .. (155.7188,137.7456) .. controls (156.1562,137.1529) and + (156.5714,136.5455) .. (157.0000,135.9331) .. controls (157.7523,134.8583) and + (158.4985,133.7549) .. (159.2188,132.6206) .. controls (166.6346,120.9411) and + (172.1835,106.1387) .. (172.5938,88.9019) .. controls (172.6267,87.9122) and + (172.6562,86.9065) .. (172.6562,85.9019) .. controls (172.6562,66.0829) and + (165.8091,49.3886) .. (157.0000,36.8081) .. controls (156.9136,36.6837) and + (156.8368,36.5567) .. (156.7500,36.4331) .. controls (156.0718,35.4748) and + (155.3864,34.5612) .. (154.6875,33.6519) .. controls (153.9623,32.7083) and + (153.2426,31.7917) .. (152.5000,30.9019) .. controls (152.4390,30.8288) and + (152.3736,30.7558) .. (152.3125,30.6831) .. controls (152.2599,30.6202) and + (152.2089,30.5582) .. (152.1562,30.4956) .. controls (151.3928,29.5920) and + (150.6196,28.7165) .. (149.8438,27.8706) .. controls (149.8183,27.8428) and + (149.8067,27.8046) .. (149.7812,27.7769) .. controls (149.2845,27.2367) and + (148.7500,26.7618) .. (148.2500,26.2456) .. controls (147.9417,25.9271) and + (147.6539,25.5870) .. (147.3438,25.2769) -- (147.3438,25.2769) -- cycle; + %blue-top + \shade[left color=cbccadf,right color=cedf7f7] + (86.7188,0.0269) .. controls (65.0396,0.0269) and + (46.7961,7.8182) .. (33.5000,17.9644) .. controls (32.5547,18.6857) and + (31.6449,19.4086) .. (30.7500,20.1519) .. controls (30.6537,20.2318) and + (30.5644,20.3217) .. (30.4688,20.4019) .. controls (30.1195,20.6958) and + (29.7782,20.9808) .. (29.4375,21.2769) .. controls (28.8610,21.7760) and + (28.2725,22.2703) .. (27.7188,22.7769) .. controls (27.1473,23.3006) and + (26.6385,23.8432) .. (26.0938,24.3706) .. controls (40.1613,12.0068) and + (65.4731,24.3402) .. (86.4062,39.6519) .. controls (107.2671,24.3635) and + (132.3808,12.1038) .. (146.3750,24.4019) .. controls (145.0285,23.0977) and + (143.6332,21.7702) .. (142.1250,20.4956) .. controls (141.1927,19.7077) and + (140.2425,18.9521) .. (139.2500,18.1831) .. controls (139.1461,18.1026) and + (139.0421,18.0134) .. (138.9375,17.9331) .. controls (138.0439,17.2513) and + (137.1252,16.5607) .. (136.1875,15.9019) .. controls (136.0549,15.8080) and + (135.9148,15.7140) .. (135.7812,15.6206) .. controls (135.5784,15.4798) and + (135.3611,15.3540) .. (135.1562,15.2144) .. controls (134.2700,14.6103) and + (133.3921,14.0136) .. (132.4688,13.4331) .. controls (121.1009,6.2864) and + (106.9492,1.0175) .. (90.6875,0.1206) .. controls (90.1934,0.0934) and + (89.6855,0.0772) .. (89.1875,0.0581) .. controls (89.1146,0.0560) and + (89.0417,0.0600) .. (88.9688,0.0581) .. controls (88.2180,0.0383) and + (87.4787,0.0269) .. (86.7188,0.0269) -- (86.7188,0.0269) -- cycle; + %yellow-top + \shade[top color=cffd5ba,bottom color=cfff9da] + (148.2500,26.2456) .. controls (160.5323,40.2559) and + (148.3422,65.4886) .. (133.0938,86.4019) .. controls (148.3381,107.3217) and + (160.5533,132.5271) .. (148.2500,146.5269) .. controls (149.5544,145.1799) and + (150.8502,143.7855) .. (152.1250,142.2769) .. controls (152.9130,141.3443) and + (153.6996,140.3946) .. (154.4688,139.4019) .. controls (154.8867,138.8624) and + (155.3077,138.3025) .. (155.7188,137.7456) .. controls (156.1536,137.1519) and + (156.5752,136.5451) .. (157.0000,135.9331) .. controls (157.7502,134.8523) and + (158.5038,133.7577) .. (159.2188,132.6206) .. controls (166.6518,120.7981) and + (172.0254,105.9774) .. (172.5938,88.9019) .. controls (172.6099,88.2234) and + (172.6250,87.5566) .. (172.6250,86.8706) .. controls (172.6250,66.8606) and + (166.0051,49.7772) .. (157.0000,36.8081) .. controls (156.9135,36.6837) and + (156.8367,36.5567) .. (156.7500,36.4331) .. controls (156.0717,35.4748) and + (155.3863,34.5612) .. (154.6875,33.6519) .. controls (153.9657,32.7062) and + (153.2436,31.7972) .. (152.5000,30.9019) .. controls (152.4390,30.8288) and + (152.3735,30.7558) .. (152.3125,30.6831) .. controls (152.2599,30.6202) and + (152.2089,30.5582) .. (152.1562,30.4956) .. controls (151.3927,29.5920) and + (150.6195,28.7165) .. (149.8437,27.8706) .. controls (149.8182,27.8428) and + (149.8067,27.8046) .. (149.7812,27.7769) .. controls (149.2845,27.2367) and + (148.7499,26.7618) .. (148.2500,26.2456) -- (148.2500,26.2456) -- cycle; +\end{tikzpicture} +}} + +\definecolor{igaliaColor}{rgb}{0.423529,0.560784,0.761718} + + +%% Float-controlling commands +% +%\renewcommand\topfraction{0.9} +%\renewcommand\bottomfraction{0.8} +%\renewcommand\dbltopfraction{0.9} +%\renewcommand\textfraction{0.07} +%\renewcommand\floatpagefraction{0.7} +%\renewcommand\dblfloatpagefraction{0.7} +%\setcounter{topnumber}{2} +%\setcounter{bottomnumber}{2} +%\setcounter{totalnumber}{4} +%\setcounter{dbltopnumber}{2} + + +\if@twoside + \def\ps@headings{ + \let\@oddfoot\@empty\let\@evenfoot\@empty + \def\@evenhead{\thepage\hfil\slshape\leftmark} + \def\@oddhead{\textcolor{igaliaColor}{{\slshape\rightmark}\hfil\thepage}} + \let\@mkboth\markboth + \def\chaptermark##1{ + \markboth {\MakeUppercase{ + \ifnum \c@secnumdepth >\m@ne + \@chapapp\ \thechapter. \ + \fi + ##1}}{}} + \def\sectionmark##1{ + \markright {\MakeUppercase{ + \ifnum \c@secnumdepth >\z@ + \thesection. \ + \fi + ##1}}}} +\else + \def\ps@headings{ +% \let\@oddfoot\@empty + + \def\@oddhead{\textcolor{igaliaColor}{{\slshape\rightmark\hfil\@author}}} + \def\@oddfoot{\textcolor{igaliaColor}{\expandafter\@title\hfil\thepage}} + + \let\@mkboth\markboth + \def\chaptermark##1{ + \markright {\MakeUppercase{ + \ifnum \c@secnumdepth >\m@ne + \@chapapp\ \thechapter. \ + \fi + ##1}}}} +\fi + +\def\ps@myheadings{ + \let\@oddfoot\@empty\let\@evenfoot\@empty + \def\@evenhead{\textcolor{igaliaColor}{\thepage\hfil\slshape\leftmark}} + \def\@oddhead{\textcolor{igaliaColor}{{\slshape\rightmark}\hfil\thepage}} + \let\@mkboth\@gobbletwo + \let\chaptermark\@gobble + \let\sectionmark\@gobble + } + +\renewcommand{\maketitle}{% + %\hypersetup{pdftitle={\@title},pdfauthor={\@author}} + \begin{titlepage} + \let\footnotesize\small + \let\footnoterule\relax + \let \footnote \thanks + \vspace*{-2cm} + \begin{flushright} + \usebox{\igaliaMiniLogo} + \end{flushright} + \vspace*{2cm} + \null\vfil + \vskip 60\p@ + \begin{center} + {\sf\bfseries\Huge\@title\par} + \vskip 6cm + \end{center}\par + \AddToShipoutPicture*{ + \put(-220,-220){\usebox\igaliaShipoutLogo} + } + \begin{flushright} + \begin{tabular}[t]{l} + \vspace*{1cm}{\huge \@customer} \\ + \vspace*{0.5cm}{\LARGE \@reference} \\ + {\LARGE \@city\xspace \@date} \\ + \end{tabular} + \end{flushright} + \@thanks + \vfil\null + \end{titlepage} +}% +\def\@maketitle{ + \newpage + \null + \vskip 2em + \vspace*{-2cm} + \begin{flushright} + \usebox{\igaliaMiniLogo} + \end{flushright} + \vspace*{2cm} + \begin{center} + \let \footnote \thanks + {\Huge \@title \par} + \vskip 6cm + \end{center}\par + \begin{flushright} + \begin{tabular}[t]{l} + {\huge \@customer} \par \\ + {\LARGE \@reference}\\ + {\LARGE \@city,\xspace \@date}\\ + \end{tabular} + \end{flushright} + \par + \vskip 1.5em} + +% Set styles for headings, etc +\setkomafont{pagehead}{\sffamily\color{igaliaColor}} +\setkomafont{pagenumber}{\sffamily\bfseries\color{igaliaColor}} + +% Tweak sectioning styles +\addtokomafont{chapter}{\textcolor{igaliaColor}} +\addtokomafont{paragraph}{\textcolor{igaliaColor}} +\addtokomafont{subsection}{\textcolor{igaliaColor}} +\addtokomafont{subparagraph}{\normalfont\rmfamily\bfseries\textcolor{igaliaColor}} + +\renewcommand{\@@makeschapterhead}[1]{ + \chapterheadstartvskip% + {\normalfont\sectfont\nobreak\size@chapter{}% + \setlength{\parindent}{\z@}\setlength{\parfillskip}{\fill}% + \raggedsection \interlinepenalty \@M \size@chapter{#1}\par + \vspace{0.5em}\color{igaliaColor}{\hrule height 2pt}\vspace{2em}} + \nobreak\chapterheadendvskip% +} + +\renewcommand{\@@makechapterhead}[1]{ + \chapterheadstartvskip% + {\setlength{\parindent}{\z@}\setlength{\parfillskip}{\fill}% + \normalfont\sectfont\nobreak\size@chapter{}% + \if@chapterprefix + \let\@tempa\raggedsection + \else + \let\@tempa\@hangfrom + \fi + \@tempa{\ifnum \c@secnumdepth >\m@ne% + \if@mainmatter + \if@chapterprefix + \expandafter\size@chapterprefix + \else + \expandafter\size@chapter + \fi + {\chapterformat}% + \if@chapterprefix + \size@chapterprefix{}\endgraf\nobreak\vskip.5\baselineskip + \fi + \fi + \fi + }% + {\raggedsection \interlinepenalty \@M \size@chapter{#1}\par + \vspace{0.5em}\color{igaliaColor}{\hrule height 2pt}}\vspace{2em}} + \nobreak\chapterheadendvskip +} + +\parskip=6pt +\parindent=0pt + +\renewcommand{\textfraction}{0.05} +\renewcommand{\topfraction}{0.95} +\renewcommand{\bottomfraction}{0.95} +\renewcommand{\floatpagefraction}{0.35} +\setcounter{totalnumber}{5} + +\endinput diff --git a/doc/src/criterios/images/edicion-criterio.png b/doc/src/documento_usuario/images/edicion-criterio.png similarity index 100% rename from doc/src/criterios/images/edicion-criterio.png rename to doc/src/documento_usuario/images/edicion-criterio.png diff --git a/doc/src/criterios/images/lista-criterios.png b/doc/src/documento_usuario/images/lista-criterios.png similarity index 100% rename from doc/src/criterios/images/lista-criterios.png rename to doc/src/documento_usuario/images/lista-criterios.png diff --git a/doc/src/criterios/images/menu.png b/doc/src/documento_usuario/images/menu.png similarity index 100% rename from doc/src/criterios/images/menu.png rename to doc/src/documento_usuario/images/menu.png diff --git a/doc/src/lsr.css b/doc/src/documento_usuario/lsr.css similarity index 100% rename from doc/src/lsr.css rename to doc/src/documento_usuario/lsr.css diff --git a/doc/src/documento_usuario/parts b/doc/src/documento_usuario/parts new file mode 100644 index 000000000..15a8b839b --- /dev/null +++ b/doc/src/documento_usuario/parts @@ -0,0 +1,20 @@ +# +# First word: +# Identifier of the section to include. It cannot contain spaces. For +# a section named “foo”, a file “foo/foo.rst” must exist. +# +# Rest of the line: +# Free form text for specifying who is in charge. It will be passed to +# docutils as-is, so you can add markup if needed. +# +# +01-introducion Xavier Castaño (xcastanho@igalia.com) +02-criterios Xavier Castaño (xcastanho@igalia.com) +03-calendarios Xavier Castaño (xcastanho@igalia.com) +04-avances Xavier Castaño (xcastanho@igalia.com) +05-recursos Xavier Castaño (xcastanho@igalia.com) +06-pedidos Xavier Castaño (xcastanho@igalia.com) +07-planificacion Xavier Castaño (xcastanho@igalia.com) +08-asignacion Xavier Castaño (xcastanho@igalia.com) +09-partes Xavier Castaño (xcastanho@igalia.com) +10-etiquetas Xavier Castaño (xcastanho@igalia.com) diff --git a/doc/src/igaliabk.cls b/doc/src/igaliabk.cls deleted file mode 100644 index 7d6e3059d..000000000 --- a/doc/src/igaliabk.cls +++ /dev/null @@ -1,1308 +0,0 @@ -%% -%% This is file `igliadoc.cls', -%% -%% The list of derived (unpacked) files belonging to the distribution -%% and covered by LPPL is defined by the unpacking scripts (with -%% extension .ins) which are part of the distribution. -%% \CharacterTable -%% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z -%% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z -%% Digits \0\1\2\3\4\5\6\7\8\9 -%% Exclamation \! Double quote \" Hash (number) \# -%% Dollar \$ Percent \% Ampersand \& -%% Acute accent \' Left paren \( Right paren \) -%% Asterisk \* Plus \+ Comma \, -%% Minus \- Point \. Solidus \/ -%% Colon \: Semicolon \; Less than \< -%% Equals \= Greater than \> Question mark \? -%% Commercial at \@ Left bracket \[ Backslash \\ -%% Right bracket \] Circumflex \^ Underscore \_ -%% Grave accent \` Left brace \{ Vertical bar \| -%% Right brace \} Tilde \~} -%% -%% -%% Updates from 2009/05/27, by Adrian Perez -%% -%% * Embedded logos by using TikZ/PGF figures: no need for external -%% files, high-quality vector output of our logos. TikZ code was -%% generated with the "inkscape2tikz" InkScape plugin, found here: -%% http://code.google.com/p/inkscape2tikz/ -%% - -\NeedsTeXFormat{LaTeX2e}[1995/12/01] -\ProvidesClass{igliadoc} - [2009/05/27 LaTeX class for Igalia documentation] - -\RequirePackage{ifthen} -\RequirePackage{graphics} -\RequirePackage{graphicx} -\RequirePackage{amsmath} -\RequirePackage{eso-pic} -\RequirePackage{xspace} -\RequirePackage{color} -\RequirePackage{tikz} - - -\DeclareOption{galego}{\def\igaliaBabel{galician}} -\DeclareOption{castellano}{\def\igaliaBabel{spanish}} -\DeclareOption{english}{\def\igaliaBabel{british}} -\DeclareOption{british}{\def\igaliaBabel{british}} -\DeclareOption{american}{\def\igaliaBabel{american}} -\DeclareOption{deutsche}{\def\igaliaBabel{german}} - - -\def\customer#1{\gdef\@customer{#1}} -\def\@customer{\@latex@warning@no@line{No customer given}} -\def\reference#1{\gdef\@reference{#1}} -\def\@reference{\@latex@warning@no@line{No reference given}} -\def\city#1{\gdef\@city{#1}} -\def\@city{\@latex@warning@no@line{No city given}} - -\definecolor{c3f3f3f}{RGB}{63,63,63} -\definecolor{c66accd}{RGB}{102,172,205} -\definecolor{c61a8cb}{RGB}{97,168,203} -\definecolor{cffc744}{RGB}{255,199,68} -\definecolor{cffc440}{RGB}{255,196,64} -\definecolor{cb40030}{RGB}{180,0,48} -\definecolor{cb30031}{RGB}{179,0,49} -\definecolor{cd4e314}{RGB}{212,227,20} -\definecolor{ccfe016}{RGB}{207,224,22} -\definecolor{cacd2e4}{RGB}{172,210,228} -\definecolor{cffde91}{RGB}{255,222,145} -\definecolor{cffdd91}{RGB}{255,221,145} -\definecolor{cff91af}{RGB}{255,145,175} -\definecolor{cf0f79a}{RGB}{240,247,154} -\definecolor{ceef69b}{RGB}{238,246,155} - -\newsavebox{\igaliaMiniLogo} -\sbox{\igaliaMiniLogo}{ -\scalebox{0.25}{ - \begin{tikzpicture}[y=0.80pt,x=0.80pt,yscale=-1] - \path[fill=c3f3f3f] (233.5810,47.8790) .. controls (233.5810,55.3550) and - (231.4230,56.6220) .. (224.5890,56.6220) .. controls (217.6170,56.6220) and - (215.4660,55.3540) .. (215.4660,47.8790) .. controls (215.4660,41.1650) and - (217.6170,40.1560) .. (224.5890,40.1560) .. controls (231.4230,40.1560) and - (233.5810,41.1650) .. (233.5810,47.8790) -- cycle(232.3110,113.3490) .. - controls (232.3110,123.3250) and (237.1200,128.5680) .. (237.1200,128.5680) .. - controls (237.1200,128.5680) and (230.7370,133.6050) .. (225.8170,133.6050) .. - controls (219.3530,133.6050) and (216.6020,121.9910) .. (216.6020,117.1880) .. - controls (216.6020,95.5050) and (216.6020,67.0060) .. (216.6020,67.0060) -- - (232.3110,67.0060) .. controls (232.3110,67.0060) and (232.3110,103.3840) .. - (232.3110,113.3490) -- cycle; - \path[fill=c3f3f3f] (420.9640,47.8790) .. controls (420.9640,55.3550) and - (418.8060,56.6220) .. (411.9660,56.6220) .. controls (404.9970,56.6220) and - (402.8450,55.3540) .. (402.8450,47.8790) .. controls (402.8450,41.1650) and - (404.9970,40.1560) .. (411.9660,40.1560) .. controls (418.8060,40.1560) and - (420.9640,41.1650) .. (420.9640,47.8790) -- cycle(419.6930,113.3490) .. - controls (419.6930,123.3250) and (424.5000,128.5680) .. (424.5000,128.5680) .. - controls (424.5000,128.5680) and (418.1170,133.6050) .. (413.1990,133.6050) .. - controls (406.7360,133.6050) and (403.9840,121.9910) .. (403.9840,117.1880) .. - controls (403.9840,95.5050) and (403.9840,67.0060) .. (403.9840,67.0060) -- - (419.6930,67.0060) .. controls (419.6930,67.0060) and (419.6930,103.3840) .. - (419.6930,113.3490) -- cycle; - \path[fill=c3f3f3f] (268.2870,133.0070) .. controls (250.5530,133.0070) and - (241.1760,125.6590) .. (241.1760,99.4340) .. controls (241.1760,73.0880) and - (250.9310,65.1080) .. (272.2130,65.1080) .. controls (279.0590,65.1080) and - (287.3710,66.1000) .. (294.0350,67.8710) .. controls (300.8920,69.6940) and - (300.3340,75.3750) .. (300.3340,75.3750) -- (300.3340,126.5430) .. controls - (300.3340,151.7500) and (286.2750,157.3310) .. (265.8830,157.3310) .. controls - (260.9320,157.3310) and (254.8650,156.6620) .. (249.7680,155.4300) .. controls - (243.1100,153.8230) and (245.5100,144.2890) .. (245.5100,144.2890) -- - (246.3690,140.8610) .. controls (252.3240,142.7600) and (259.6700,144.0270) .. - (265.7520,144.0270) .. controls (277.6620,144.0270) and (284.6270,140.7300) .. - (284.6270,128.8250) .. controls (281.0820,130.9750) and (275.6340,133.0070) .. - (268.2870,133.0070) -- cycle(284.6260,83.1580) .. controls (284.6260,83.1580) - and (284.9680,79.9510) .. (280.7820,79.0370) .. controls (277.9340,78.4160) - and (274.8700,78.0280) .. (272.2120,78.0280) .. controls (261.0670,78.0280) - and (257.3940,80.9420) .. (257.3940,99.3080) .. controls (257.3940,115.3940) - and (260.8100,119.4520) .. (271.8320,119.4520) .. controls (278.7970,119.4520) - and (284.6270,117.2940) .. (284.6270,113.3710) -- (284.6270,83.1580) -- - (284.6260,83.1580) -- cycle; - \path[fill=c3f3f3f] (391.9170,49.7050) -- (391.9170,113.3710) .. controls - (391.9170,119.5760) and (393.3130,123.8850) .. (396.8620,128.5730) .. controls - (396.8620,128.5730) and (384.7550,138.5030) .. (380.1140,130.4940) .. controls - (377.6140,126.1820) and (376.2100,121.0310) .. (376.2100,114.0040) -- - (376.2100,40.0250) .. controls (376.2100,40.0250) and (378.4230,40.0250) .. - (382.6920,40.0250) .. controls (392.6260,40.0250) and (391.9170,49.7050) .. - (391.9170,49.7050) -- cycle; - \path[fill=c3f3f3f] (484.5150,122.6630) .. controls (484.5150,122.6630) and - (484.5150,128.3610) .. (477.9450,130.2790) .. controls (470.7440,132.3780) and - (462.1680,133.2550) .. (455.3810,133.2550) .. controls (434.9900,133.2550) and - (428.1430,128.5730) .. (428.1430,111.7230) .. controls (428.1430,93.4810) and - (438.4070,90.5690) .. (453.4830,90.5690) .. controls (458.9320,90.5690) and - (463.9970,91.1970) .. (469.4440,92.3390) .. controls (469.4440,81.0710) and - (466.7840,78.2830) .. (453.3560,78.2830) .. controls (449.5980,78.2830) and - (445.8380,78.6120) .. (442.3560,79.2520) .. controls (433.2490,80.9140) and - (432.2470,74.3640) .. (432.2470,74.3640) -- (430.9350,68.5280) .. controls - (434.4350,67.6040) and (438.7490,66.7150) .. (443.3940,66.0710) .. controls - (447.6670,65.4840) and (452.2180,65.1080) .. (456.6540,65.1080) .. controls - (475.7790,65.1080) and (484.5170,70.9340) .. (484.5170,90.1900) -- - (484.5170,122.6630) -- (484.5150,122.6630) -- cycle(469.4430,115.9870) -- - (469.4430,102.9810) .. controls (465.8980,102.2190) and (461.3360,101.8410) .. - (456.6520,101.8410) .. controls (447.7830,101.8410) and (444.6130,102.8570) .. - (444.6130,111.0890) .. controls (444.6130,119.8280) and (447.0190,121.2240) .. - (456.5190,121.2240) .. controls (459.8220,121.2240) and (463.1950,120.7570) .. - (466.1990,120.0220) .. controls (469.5310,119.2300) and (469.4430,115.9870) .. - (469.4430,115.9870) -- cycle; - \path[fill=c3f3f3f] (365.4430,122.6630) .. controls (365.4430,122.6630) and - (365.4470,128.3610) .. (358.8710,130.2790) .. controls (351.6760,132.3780) and - (343.0980,133.2550) .. (336.3070,133.2550) .. controls (315.9160,133.2550) and - (309.0780,128.5730) .. (309.0780,111.7230) .. controls (309.0780,93.4810) and - (319.3320,90.5690) .. (334.4100,90.5690) .. controls (339.8570,90.5690) and - (344.9240,91.1970) .. (350.3710,92.3390) .. controls (350.3710,81.0710) and - (347.7130,78.2830) .. (334.2830,78.2830) .. controls (330.5310,78.2830) and - (326.7710,78.6120) .. (323.2830,79.2520) .. controls (314.1760,80.9140) and - (313.1780,74.3640) .. (313.1780,74.3640) -- (311.8600,68.5280) .. controls - (315.3560,67.6040) and (319.6740,66.7150) .. (324.3230,66.0710) .. controls - (328.5940,65.4840) and (333.1450,65.1080) .. (337.5770,65.1080) .. controls - (356.7060,65.1080) and (365.4440,70.9340) .. (365.4440,90.1900) -- - (365.4440,122.6630) -- (365.4430,122.6630) -- cycle(350.3710,115.9870) -- - (350.3710,102.9810) .. controls (346.8220,102.2190) and (342.2640,101.8410) .. - (337.5760,101.8410) .. controls (328.7110,101.8410) and (325.5430,102.8570) .. - (325.5430,111.0890) .. controls (325.5430,119.8280) and (327.9470,121.2240) .. - (337.4490,121.2240) .. controls (340.7520,121.2240) and (344.1250,120.7570) .. - (347.1270,120.0220) .. controls (350.4600,119.2300) and (350.3710,115.9870) .. - (350.3710,115.9870) -- cycle; - \path[fill=c66accd,fill opacity=0.600] (85.7504,-0.0047) .. controls - (64.2195,-0.0047) and (46.3837,8.0626) .. (33.5004,17.9640) .. controls - (32.4861,18.7435) and (31.4838,19.5395) .. (30.5316,20.3390) .. controls - (29.7818,20.9686) and (29.0548,21.5754) .. (28.3441,22.2140) .. controls - (28.1370,22.3997) and (27.9232,22.5898) .. (27.7191,22.7765) .. controls - (27.1454,23.3024) and (26.6098,23.8407) .. (26.0629,24.3702) .. controls - (25.7466,24.6764) and (25.4021,24.9684) .. (25.0941,25.2765) .. controls - (35.4721,35.6515) and (51.5026,51.8110) .. (61.0316,61.3390) .. controls - (67.3752,54.9941) and (76.4055,46.9795) .. (86.4066,39.6515) .. controls - (96.2756,46.8702) and (105.1651,54.7530) .. (111.4379,61.0265) .. controls - (120.9619,51.4935) and (136.9681,35.6262) .. (147.3441,25.2452) .. controls - (145.7462,23.6469) and (144.0063,22.0922) .. (142.1879,20.5577) .. controls - (142.1652,20.5386) and (142.1481,20.5144) .. (142.1254,20.4952) .. controls - (142.0531,20.4342) and (141.9793,20.3687) .. (141.9066,20.3077) .. controls - (141.0382,19.5816) and (140.1356,18.8884) .. (139.2191,18.1827) .. controls - (138.2235,17.4161) and (137.2077,16.6396) .. (136.1566,15.9015) .. controls - (135.2896,15.2927) and (134.4043,14.7067) .. (133.5004,14.1203) .. controls - (133.2976,13.9886) and (133.1113,13.8444) .. (132.9066,13.7140) .. controls - (132.7624,13.6211) and (132.6144,13.5251) .. (132.4691,13.4328) .. controls - (132.2271,13.2806) and (131.9637,13.1456) .. (131.7191,12.9953) .. controls - (130.8152,12.4332) and (129.9092,11.8770) .. (128.9691,11.3390) .. controls - (118.3430,5.2573) and (105.4523,0.8059) .. (90.6879,0.1202) .. controls - (90.1938,0.0930) and (89.6859,0.0769) .. (89.1879,0.0578) .. controls - (89.1150,0.0556) and (89.0421,0.0597) .. (88.9691,0.0578) .. controls - (87.8995,0.0193) and (86.8376,-0.0047) .. (85.7504,-0.0047) -- cycle; - \path[fill=c61a8cb] (86.7191,0.0265) .. controls (65.0400,0.0265) and - (46.7965,7.8178) .. (33.5004,17.9640) .. controls (32.4776,18.7445) and - (31.4954,19.5331) .. (30.5316,20.3390) .. controls (29.7856,20.9628) and - (29.0541,21.5775) .. (28.3441,22.2140) .. controls (28.1370,22.3997) and - (27.9232,22.5898) .. (27.7191,22.7765) .. controls (27.1454,23.3024) and - (26.6098,23.8407) .. (26.0629,24.3702) .. controls (40.1304,12.0064) and - (65.4735,24.3398) .. (86.4066,39.6515) .. controls (107.2643,24.3687) and - (132.3849,12.1067) .. (146.3754,24.4015) .. controls (145.0475,23.1150) and - (143.6731,21.8156) .. (142.1879,20.5577) .. controls (142.1652,20.5386) and - (142.1481,20.5144) .. (142.1254,20.4952) .. controls (142.0531,20.4342) and - (141.9793,20.3687) .. (141.9066,20.3077) .. controls (141.0382,19.5816) and - (140.1356,18.8884) .. (139.2191,18.1827) .. controls (138.2266,17.4137) and - (137.2082,16.6459) .. (136.1566,15.9015) .. controls (135.2982,15.2938) and - (134.3975,14.7081) .. (133.5004,14.1203) .. controls (133.2976,13.9886) and - (133.1113,13.8444) .. (132.9066,13.7140) .. controls (132.7624,13.6211) and - (132.6144,13.5251) .. (132.4691,13.4328) .. controls (132.2271,13.2806) and - (131.9637,13.1456) .. (131.7191,12.9953) .. controls (130.8151,12.4391) and - (129.9072,11.8698) .. (128.9691,11.3390) .. controls (118.2430,5.2692) and - (105.3234,0.9275) .. (90.6879,0.1202) .. controls (90.1938,0.0930) and - (89.6859,0.0769) .. (89.1879,0.0578) .. controls (89.1150,0.0556) and - (89.0421,0.0597) .. (88.9691,0.0578) .. controls (88.2184,0.0380) and - (87.4791,0.0265) .. (86.7191,0.0265) -- cycle; - \path[fill=cffc744,fill opacity=0.600] (147.3441,25.2765) .. controls - (136.9681,35.6575) and (120.9649,51.4642) .. (111.4379,60.9952) .. controls - (117.7778,67.3358) and (125.7924,76.3809) .. (133.0941,86.4015) .. controls - (125.7995,96.4061) and (117.8029,105.4125) .. (111.4691,111.7452) .. controls - (121.0051,121.2832) and (137.0004,137.1142) .. (147.3754,147.4952) .. controls - (148.9995,145.8702) and (150.5676,144.1284) .. (152.1254,142.2765) .. controls - (152.8017,141.4725) and (153.4664,140.6532) .. (154.1254,139.8077) .. controls - (154.2355,139.6665) and (154.3596,139.5439) .. (154.4691,139.4015) .. controls - (154.5412,139.3084) and (154.6160,139.2138) .. (154.6879,139.1202) .. controls - (155.3750,138.2196) and (156.0554,137.2843) .. (156.7191,136.3390) .. controls - (157.1546,135.7188) and (157.5761,135.0719) .. (158.0004,134.4327) .. controls - (158.2984,133.9839) and (158.6146,133.5471) .. (158.9066,133.0890) .. controls - (159.0043,132.9373) and (159.0909,132.7730) .. (159.1879,132.6202) .. controls - (166.6756,120.8276) and (172.2809,105.8530) .. (172.5941,88.4015) .. controls - (172.6081,87.8972) and (172.6199,87.3784) .. (172.6254,86.8702) .. controls - (172.6254,86.5472) and (172.6288,86.2230) .. (172.6254,85.9015) .. controls - (172.6254,85.3843) and (172.6034,84.8832) .. (172.5941,84.3702) .. controls - (172.2243,63.7599) and (164.5205,46.5983) .. (155.0004,34.0577) .. controls - (154.8979,33.9227) and (154.7908,33.7855) .. (154.6879,33.6515) .. controls - (154.6151,33.5561) and (154.5422,33.4651) .. (154.4691,33.3702) .. controls - (153.7507,32.4428) and (153.0166,31.5576) .. (152.2816,30.6827) .. controls - (152.2288,30.6195) and (152.1784,30.5582) .. (152.1254,30.4952) .. controls - (151.3664,29.5969) and (150.6154,28.7115) .. (149.8441,27.8702) .. controls - (149.8137,27.8370) and (149.7808,27.8097) .. (149.7504,27.7765) .. controls - (149.5208,27.5268) and (149.2932,27.3023) .. (149.0629,27.0577) .. controls - (148.8127,26.7918) and (148.5645,26.5369) .. (148.3129,26.2765) .. controls - (147.9894,25.9417) and (147.6697,25.6020) .. (147.3441,25.2765) -- cycle; - \path[fill=cffc440] (148.3129,26.2765) .. controls (160.5253,40.2963) and - (148.3252,65.5122) .. (133.0941,86.4015) .. controls (148.3375,107.3208) and - (160.5219,132.5586) .. (148.2191,146.5577) .. controls (149.5308,145.2043) and - (150.8437,143.7934) .. (152.1254,142.2765) .. controls (152.8003,141.4777) and - (153.4640,140.6508) .. (154.1254,139.8077) .. controls (154.2355,139.6665) and - (154.3596,139.5439) .. (154.4691,139.4015) .. controls (154.5412,139.3084) and - (154.6160,139.2138) .. (154.6879,139.1202) .. controls (155.3750,138.2196) and - (156.0554,137.2843) .. (156.7191,136.3390) .. controls (157.1556,135.7224) and - (157.5739,135.0694) .. (158.0004,134.4327) .. controls (158.2984,133.9839) and - (158.6146,133.5471) .. (158.9066,133.0890) .. controls (159.0043,132.9373) and - (159.0909,132.7730) .. (159.1879,132.6202) .. controls (166.6943,120.6811) and - (172.1166,105.6903) .. (172.5941,88.4015) .. controls (172.6081,87.8972) and - (172.6199,87.3784) .. (172.6254,86.8702) .. controls (172.6254,86.5472) and - (172.6288,86.2230) .. (172.6254,85.9015) .. controls (172.6254,85.3843) and - (172.6034,84.8832) .. (172.5941,84.3702) .. controls (172.0317,64.0006) and - (164.6123,46.8072) .. (155.0004,34.0577) .. controls (154.8979,33.9227) and - (154.7908,33.7855) .. (154.6879,33.6515) .. controls (154.6151,33.5561) and - (154.5422,33.4651) .. (154.4691,33.3702) .. controls (153.7507,32.4428) and - (153.0166,31.5576) .. (152.2816,30.6827) .. controls (152.2288,30.6195) and - (152.1784,30.5582) .. (152.1254,30.4952) .. controls (151.3664,29.5969) and - (150.6154,28.7115) .. (149.8441,27.8702) .. controls (149.8137,27.8370) and - (149.7808,27.8097) .. (149.7504,27.7765) .. controls (149.5208,27.5268) and - (149.2932,27.3023) .. (149.0629,27.0577) .. controls (148.8127,26.7918) and - (148.5645,26.5369) .. (148.3129,26.2765) -- cycle; - \path[fill=cb40030,fill opacity=0.600] (111.4379,111.7452) .. controls - (105.1307,118.0505) and (96.1832,125.9955) .. (86.2504,133.2452) .. controls - (76.3174,125.9935) and (67.3377,118.0851) .. (61.0316,111.7765) .. controls - (51.4976,121.3095) and (35.5064,137.1455) .. (25.1254,147.5265) .. controls - (25.9265,148.3273) and (26.7685,149.1147) .. (27.6254,149.9015) .. controls - (27.6693,149.9418) and (27.7063,149.9862) .. (27.7504,150.0265) .. controls - (29.4634,151.5927) and (31.2915,153.1355) .. (33.2191,154.6202) .. controls - (33.7581,155.0354) and (34.3201,155.4319) .. (34.8754,155.8390) .. controls - (35.3517,156.1907) and (35.8239,156.5555) .. (36.3129,156.9015) .. controls - (36.4371,156.9887) and (36.5629,157.0648) .. (36.6879,157.1515) .. controls - (37.7674,157.9072) and (38.8608,158.6469) .. (40.0004,159.3702) .. controls - (51.6861,166.7876) and (66.4973,172.3406) .. (83.7504,172.7452) .. controls - (84.7382,172.7781) and (85.7164,172.8077) .. (86.7191,172.8077) .. controls - (106.5343,172.8070) and (123.2357,165.9586) .. (135.8129,157.1515) .. controls - (136.8935,156.4016) and (137.9462,155.6192) .. (138.9691,154.8390) .. controls - (139.9124,154.1140) and (140.8297,153.3939) .. (141.7191,152.6515) .. controls - (141.7922,152.5905) and (141.8652,152.5251) .. (141.9379,152.4640) .. controls - (142.0011,152.4112) and (142.0624,152.3607) .. (142.1254,152.3077) .. controls - (143.0233,151.5489) and (143.9095,150.7975) .. (144.7504,150.0265) .. controls - (144.7832,149.9965) and (144.8114,149.9628) .. (144.8441,149.9327) .. controls - (145.3861,149.4343) and (145.8889,148.9033) .. (146.4066,148.4015) .. controls - (146.7211,148.0973) and (147.0691,147.8013) .. (147.3754,147.4952) .. controls - (137.0004,137.1142) and (120.9649,121.2742) .. (111.4379,111.7452) -- cycle; - \path[fill=cb30031] (86.2504,133.2452) .. controls (65.3490,148.5007) and - (40.1257,160.7318) .. (26.0941,148.4015) .. controls (26.6082,148.8993) and - (27.0875,149.4069) .. (27.6254,149.9015) .. controls (27.6693,149.9418) and - (27.7063,149.9862) .. (27.7504,150.0265) .. controls (29.4553,151.5877) and - (31.2826,153.1204) .. (33.2191,154.6202) .. controls (33.7581,155.0354) and - (34.3201,155.4319) .. (34.8754,155.8390) .. controls (35.3517,156.1907) and - (35.8239,156.5555) .. (36.3129,156.9015) .. controls (36.4371,156.9887) and - (36.5629,157.0648) .. (36.6879,157.1515) .. controls (37.7686,157.9016) and - (38.8634,158.6554) .. (40.0004,159.3702) .. controls (51.8238,166.8033) and - (66.6679,172.1781) .. (83.7504,172.7452) .. controls (84.4186,172.7609) and - (85.0749,172.7765) .. (85.7504,172.7765) .. controls (105.7596,172.7765) and - (122.8457,166.1498) .. (135.8129,157.1515) .. controls (136.8935,156.4016) and - (137.9462,155.6192) .. (138.9691,154.8390) .. controls (139.9146,154.1179) and - (140.8240,153.3944) .. (141.7191,152.6515) .. controls (141.7922,152.5905) and - (141.8652,152.5251) .. (141.9379,152.4640) .. controls (142.0011,152.4112) and - (142.0624,152.3607) .. (142.1254,152.3077) .. controls (143.0233,151.5489) and - (143.9095,150.7975) .. (144.7504,150.0265) .. controls (144.7832,149.9965) and - (144.8114,149.9628) .. (144.8441,149.9327) .. controls (145.3861,149.4343) and - (145.8889,148.9033) .. (146.4066,148.4015) .. controls (132.3797,160.7373) and - (107.1514,148.5044) .. (86.2504,133.2452) -- cycle; - \path[fill=cd4e314,fill opacity=0.600] (25.1254,25.2765) .. controls - (24.3244,26.0776) and (23.5364,26.9185) .. (22.7504,27.7765) .. controls - (22.7101,27.8205) and (22.6656,27.8574) .. (22.6254,27.9015) .. controls - (21.0557,29.6227) and (19.5161,31.4607) .. (18.0316,33.4015) .. controls - (17.3973,34.2309) and (16.7711,35.0958) .. (16.1566,35.9640) .. controls - (15.9829,36.2077) and (15.7976,36.4358) .. (15.6254,36.6827) .. controls - (15.4418,36.9479) and (15.2757,37.2266) .. (15.0941,37.4952) .. controls - (14.4940,38.3761) and (13.8914,39.2628) .. (13.3129,40.1827) .. controls - (5.8643,52.0274) and (0.3375,67.0919) .. (0.0316,84.5577) .. controls - (0.0228,85.0644) and (0.0004,85.5783) .. (0.0004,86.0890) .. controls - (0.0004,86.2473) and (-0.0004,86.3999) .. (0.0004,86.5577) .. controls - (-0.0005,86.7241) and (0.0004,86.8910) .. (0.0004,87.0577) .. controls - (0.0058,87.5619) and (0.0180,88.0576) .. (0.0316,88.5577) .. controls - (0.3348,106.0312) and (5.8611,120.9270) .. (13.3129,132.6827) .. controls - (14.6753,134.8320) and (16.0921,136.8737) .. (17.5629,138.8077) .. controls - (17.6800,138.9628) and (17.7889,139.1228) .. (17.9066,139.2765) .. controls - (17.9381,139.3174) and (17.9689,139.3607) .. (18.0004,139.4015) .. controls - (18.7072,140.3207) and (19.4284,141.2176) .. (20.1566,142.0890) .. controls - (20.7847,142.8374) and (21.3939,143.5667) .. (22.0316,144.2765) .. controls - (22.2170,144.4834) and (22.4078,144.6977) .. (22.5941,144.9015) .. controls - (22.6236,144.9337) and (22.6584,144.9632) .. (22.6879,144.9952) .. controls - (23.1583,145.5080) and (23.6492,146.0020) .. (24.1254,146.4952) .. controls - (24.1355,146.5057) and (24.1465,146.5160) .. (24.1566,146.5265) .. controls - (24.4758,146.8568) and (24.8040,147.2051) .. (25.1254,147.5265) .. controls - (35.5054,137.1455) and (51.4976,121.3095) .. (61.0316,111.7765) .. controls - (54.7185,105.4630) and (46.7769,96.4644) .. (39.5004,86.4952) .. controls - (46.7710,76.5941) and (54.7280,67.6707) .. (61.0316,61.3702) .. controls - (51.4986,51.8332) and (35.5044,35.6545) .. (25.1254,25.2765) -- cycle; - \path[fill=ccfe016] (24.2504,26.2452) .. controls (23.7526,26.7596) and - (23.2446,27.2379) .. (22.7504,27.7765) .. controls (22.7101,27.8205) and - (22.6656,27.8574) .. (22.6254,27.9015) .. controls (21.0655,29.6089) and - (19.5268,31.4587) .. (18.0316,33.4015) .. controls (17.3913,34.2335) and - (16.7796,35.0902) .. (16.1566,35.9640) .. controls (15.9829,36.2077) and - (15.7976,36.4358) .. (15.6254,36.6827) .. controls (15.4418,36.9479) and - (15.2757,37.2266) .. (15.0941,37.4952) .. controls (14.4928,38.3850) and - (13.8903,39.2555) .. (13.3129,40.1827) .. controls (5.8485,52.1693) and - (0.5033,67.2584) .. (0.0316,84.5577) .. controls (0.0228,85.0644) and - (0.0004,85.5783) .. (0.0004,86.0890) .. controls (0.0004,86.2473) and - (-0.0004,86.3999) .. (0.0004,86.5577) .. controls (-0.0005,86.7241) and - (0.0004,86.8910) .. (0.0004,87.0577) .. controls (0.0058,87.5619) and - (0.0180,88.0576) .. (0.0316,88.5577) .. controls (0.5025,105.8431) and - (5.8554,120.7929) .. (13.3129,132.6827) .. controls (14.6634,134.8359) and - (16.0905,136.8581) .. (17.5629,138.8077) .. controls (17.6800,138.9628) and - (17.7889,139.1228) .. (17.9066,139.2765) .. controls (17.9381,139.3174) and - (17.9689,139.3607) .. (18.0004,139.4015) .. controls (18.7072,140.3207) and - (19.4284,141.2176) .. (20.1566,142.0890) .. controls (20.7786,142.8333) and - (21.3964,143.5676) .. (22.0316,144.2765) .. controls (22.2170,144.4834) and - (22.4078,144.6977) .. (22.5941,144.9015) .. controls (22.6236,144.9337) and - (22.6584,144.9632) .. (22.6879,144.9952) .. controls (23.1583,145.5080) and - (23.6492,146.0020) .. (24.1254,146.4952) .. controls (11.8853,132.4499) and - (24.2101,107.3177) .. (39.5004,86.4952) .. controls (24.2133,65.5513) and - (11.9238,40.2710) .. (24.2504,26.2452) -- cycle; - \end{tikzpicture} -}} - - -\newsavebox{\igaliaShipoutLogo} -\sbox{\igaliaShipoutLogo}{ -\scalebox{1.85}{ -\begin{tikzpicture}[y=0.80pt,x=0.80pt,yscale=-1] -\path[fill=cacd2e4,fill opacity=0.600] (240.6979,-152.9313) .. controls - (181.0604,-152.9313) and (131.6578,-130.5858) .. (95.9729,-103.1605) .. - controls (93.1635,-101.0013) and (90.3873,-98.7965) .. (87.7499,-96.5821) .. - controls (85.6729,-94.8382) and (83.6593,-93.1575) .. (81.6909,-91.3886) .. - controls (81.1170,-90.8742) and (80.5249,-90.3476) .. (79.9597,-89.8306) .. - controls (78.3704,-88.3739) and (76.8869,-86.8829) .. (75.3721,-85.4161) .. - controls (74.4960,-84.5680) and (73.5419,-83.7592) .. (72.6888,-82.9059) .. - controls (101.4344,-54.1687) and (145.8366,-9.4092) .. (172.2305,16.9820) .. - controls (189.8014,-0.5924) and (214.8139,-22.7917) .. (242.5156,-43.0892) .. - controls (269.8511,-23.0946) and (294.4737,-1.2602) .. (311.8486,16.1164) .. - controls (338.2287,-10.2886) and (382.5637,-54.2386) .. (411.3037,-82.9925) .. - controls (406.8777,-87.4198) and (402.0584,-91.7261) .. (397.0216,-95.9762) .. - controls (396.9588,-96.0292) and (396.9115,-96.0963) .. (396.8485,-96.1493) .. - controls (396.6483,-96.3185) and (396.4438,-96.4997) .. (396.2426,-96.6686) .. - controls (393.8372,-98.6799) and (391.3370,-100.6000) .. (388.7986,-102.5546) - .. controls (386.0408,-104.6781) and (383.2273,-106.8290) .. - (380.3159,-108.8733) .. controls (377.9145,-110.5596) and (375.4623,-112.1827) - .. (372.9585,-113.8071) .. controls (372.3967,-114.1716) and - (371.8808,-114.5712) .. (371.3139,-114.9324) .. controls (370.9143,-115.1896) - and (370.5044,-115.4557) .. (370.1021,-115.7114) .. controls - (369.4318,-116.1328) and (368.7020,-116.5066) .. (368.0247,-116.9232) .. - controls (365.5209,-118.4801) and (363.0114,-120.0205) .. (360.4076,-121.5108) - .. controls (330.9748,-138.3562) and (295.2692,-150.6858) .. - (254.3741,-152.5851) .. controls (253.0055,-152.6606) and (251.5986,-152.7052) - .. (250.2193,-152.7582) .. controls (250.0174,-152.7641) and - (249.8155,-152.7529) .. (249.6134,-152.7582) .. controls (246.6506,-152.8648) - and (243.7093,-152.9313) .. (240.6979,-152.9313) -- cycle; -\path[fill=cacd2e4] (243.3812,-152.8448) .. controls (183.3331,-152.8448) and - (132.8013,-131.2640) .. (95.9729,-103.1605) .. controls (93.1400,-100.9987) - and (90.4193,-98.8143) .. (87.7499,-96.5821) .. controls (85.6835,-94.8541) - and (83.6573,-93.1515) .. (81.6909,-91.3886) .. controls (81.1170,-90.8742) - and (80.5249,-90.3476) .. (79.9597,-89.8306) .. controls (78.3704,-88.3739) - and (76.8869,-86.8829) .. (75.3721,-85.4161) .. controls (114.3372,-119.6621) - and (184.5338,-85.5003) .. (242.5156,-43.0892) .. controls (300.2883,-85.4203) - and (369.8686,-119.3844) .. (408.6204,-85.3295) .. controls - (404.9423,-88.8929) and (401.1356,-92.4921) .. (397.0216,-95.9762) .. controls - (396.9588,-96.0292) and (396.9115,-96.0963) .. (396.8485,-96.1493) .. controls - (396.6483,-96.3185) and (396.4438,-96.4997) .. (396.2426,-96.6686) .. controls - (393.8372,-98.6799) and (391.3370,-100.6000) .. (388.7986,-102.5546) .. - controls (386.0496,-104.6847) and (383.2286,-106.8114) .. (380.3159,-108.8733) - .. controls (377.9382,-110.5567) and (375.4433,-112.1789) .. - (372.9585,-113.8071) .. controls (372.3967,-114.1716) and (371.8808,-114.5712) - .. (371.3139,-114.9324) .. controls (370.9143,-115.1896) and - (370.5044,-115.4557) .. (370.1021,-115.7114) .. controls (369.4318,-116.1328) - and (368.7020,-116.5066) .. (368.0247,-116.9232) .. controls - (365.5205,-118.4636) and (363.0060,-120.0404) .. (360.4076,-121.5108) .. - controls (330.6977,-138.3233) and (294.9124,-150.3492) .. (254.3741,-152.5851) - .. controls (253.0055,-152.6606) and (251.5986,-152.7052) .. - (250.2193,-152.7582) .. controls (250.0174,-152.7641) and (249.8155,-152.7529) - .. (249.6134,-152.7582) .. controls (247.5340,-152.8130) and - (245.4861,-152.8448) .. (243.3812,-152.8448) -- cycle; -\path[fill=cffde91,fill opacity=0.600] (411.3037,-82.9059) .. controls - (382.5637,-54.1521) and (338.2370,-10.3696) .. (311.8486,16.0299) .. controls - (329.4092,33.5922) and (351.6085,58.6459) .. (371.8333,86.4015) .. controls - (351.6281,114.1128) and (329.4787,139.0591) .. (311.9351,156.6000) .. controls - (338.3485,183.0189) and (382.6530,226.8685) .. (411.3903,255.6224) .. controls - (415.8890,251.1213) and (420.2321,246.2967) .. (424.5471,241.1672) .. controls - (426.4204,238.9402) and (428.2614,236.6709) .. (430.0868,234.3291) .. controls - (430.3918,233.9378) and (430.7354,233.5983) .. (431.0389,233.2038) .. controls - (431.2386,232.9461) and (431.4457,232.6840) .. (431.6448,232.4248) .. controls - (433.5479,229.9301) and (435.4326,227.3396) .. (437.2711,224.7212) .. controls - (438.4774,223.0032) and (439.6448,221.2114) .. (440.8200,219.4411) .. controls - (441.6453,218.1978) and (442.5213,216.9880) .. (443.3302,215.7191) .. controls - (443.6006,215.2989) and (443.8405,214.8439) .. (444.1092,214.4208) .. controls - (464.8491,181.7567) and (480.3750,140.2793) .. (481.2426,91.9412) .. controls - (481.2812,90.5443) and (481.3141,89.1075) .. (481.3291,87.6999) .. controls - (481.3291,86.8051) and (481.3386,85.9071) .. (481.3291,85.0166) .. controls - (481.3291,83.5840) and (481.2681,82.1960) .. (481.2426,80.7752) .. controls - (480.2181,23.6875) and (458.8798,-23.8476) .. (432.5104,-58.5831) .. controls - (432.2264,-58.9572) and (431.9299,-59.3373) .. (431.6448,-59.7084) .. controls - (431.4432,-59.9726) and (431.2412,-60.2246) .. (431.0389,-60.4874) .. controls - (429.0491,-63.0562) and (427.0157,-65.5082) .. (424.9799,-67.9314) .. controls - (424.8334,-68.1065) and (424.6938,-68.2764) .. (424.5471,-68.4507) .. controls - (422.4448,-70.9389) and (420.3645,-73.3914) .. (418.2283,-75.7216) .. controls - (418.1441,-75.8137) and (418.0530,-75.8894) .. (417.9687,-75.9813) .. controls - (417.3328,-76.6728) and (416.7024,-77.2947) .. (416.0644,-77.9721) .. controls - (415.3714,-78.7089) and (414.6840,-79.4147) .. (413.9870,-80.1361) .. controls - (413.0910,-81.0634) and (412.2056,-82.0042) .. (411.3037,-82.9059) -- cycle; -\path[fill=cffdd91] (413.9870,-80.1361) .. controls (447.8135,-41.3031) and - (414.0211,28.5411) .. (371.8333,86.4015) .. controls (414.0552,144.3449) and - (447.8041,214.2501) .. (413.7273,253.0256) .. controls (417.3603,249.2768) and - (420.9969,245.3687) .. (424.5471,241.1672) .. controls (426.4166,238.9546) and - (428.2548,236.6642) .. (430.0868,234.3291) .. controls (430.3918,233.9378) and - (430.7354,233.5983) .. (431.0389,233.2038) .. controls (431.2386,232.9461) and - (431.4457,232.6840) .. (431.6448,232.4248) .. controls (433.5479,229.9301) and - (435.4326,227.3396) .. (437.2711,224.7212) .. controls (438.4801,223.0131) and - (439.6388,221.2045) .. (440.8200,219.4411) .. controls (441.6453,218.1978) and - (442.5213,216.9880) .. (443.3302,215.7191) .. controls (443.6006,215.2989) and - (443.8405,214.8439) .. (444.1092,214.4208) .. controls (464.9009,181.3510) and - (479.9199,139.8288) .. (481.2426,91.9412) .. controls (481.2812,90.5443) and - (481.3141,89.1075) .. (481.3291,87.6999) .. controls (481.3291,86.8051) and - (481.3386,85.9071) .. (481.3291,85.0166) .. controls (481.3291,83.5840) and - (481.2681,82.1960) .. (481.2426,80.7752) .. controls (479.6846,24.3543) and - (459.1339,-23.2689) .. (432.5104,-58.5831) .. controls (432.2264,-58.9572) and - (431.9299,-59.3373) .. (431.6448,-59.7084) .. controls (431.4432,-59.9726) and - (431.2412,-60.2246) .. (431.0389,-60.4874) .. controls (429.0491,-63.0562) and - (427.0157,-65.5082) .. (424.9799,-67.9314) .. controls (424.8334,-68.1065) and - (424.6938,-68.2764) .. (424.5471,-68.4507) .. controls (422.4448,-70.9389) and - (420.3645,-73.3914) .. (418.2283,-75.7216) .. controls (418.1441,-75.8137) and - (418.0530,-75.8894) .. (417.9687,-75.9813) .. controls (417.3328,-76.6728) and - (416.7024,-77.2947) .. (416.0644,-77.9721) .. controls (415.3714,-78.7089) and - (414.6840,-79.4147) .. (413.9870,-80.1361) -- cycle; -\path[fill=cff91af,fill opacity=0.600] (311.8486,156.6000) .. controls - (294.3787,174.0647) and (269.5952,196.0713) .. (242.0828,216.1519) .. controls - (214.5699,196.0657) and (189.6974,174.1605) .. (172.2305,156.6866) .. controls - (145.8227,183.0916) and (101.5293,226.9551) .. (72.7754,255.7089) .. controls - (74.9942,257.9269) and (77.3265,260.1079) .. (79.7000,262.2873) .. controls - (79.8217,262.3990) and (79.9242,262.5220) .. (80.0463,262.6336) .. controls - (84.7912,266.9717) and (89.8547,271.2450) .. (95.1939,275.3576) .. controls - (96.6867,276.5075) and (98.2435,277.6058) .. (99.7815,278.7333) .. controls - (101.1008,279.7075) and (102.4086,280.7179) .. (103.7631,281.6763) .. controls - (104.1072,281.9178) and (104.4557,282.1285) .. (104.8019,282.3688) .. controls - (107.7921,284.4620) and (110.8204,286.5108) .. (113.9770,288.5144) .. controls - (146.3447,309.0593) and (187.3697,324.4404) .. (235.1582,325.5612) .. controls - (237.8943,325.6521) and (240.6037,325.7343) .. (243.3812,325.7343) .. controls - (298.2664,325.7323) and (344.5267,306.7632) .. (379.3638,282.3688) .. controls - (382.3569,280.2918) and (385.2727,278.1245) .. (388.1062,275.9635) .. controls - (390.7188,273.9553) and (393.2596,271.9609) .. (395.7233,269.9044) .. controls - (395.9256,269.7355) and (396.1278,269.5543) .. (396.3292,269.3851) .. controls - (396.5043,269.2388) and (396.6742,269.0989) .. (396.8485,268.9523) .. controls - (399.3357,266.8505) and (401.7903,264.7692) .. (404.1194,262.6336) .. controls - (404.2104,262.5504) and (404.2883,262.4571) .. (404.3791,262.3739) .. controls - (405.8802,260.9932) and (407.2729,259.5223) .. (408.7070,258.1325) .. controls - (409.5780,257.2900) and (410.5419,256.4701) .. (411.3903,255.6224) .. controls - (382.6530,226.8685) and (338.2370,182.9940) .. (311.8486,156.6000) -- cycle; -\path[fill=cff91af] (242.0828,216.1519) .. controls (184.1889,258.4073) and - (114.3240,292.2856) .. (75.4587,258.1325) .. controls (76.8826,259.5114) and - (78.2101,260.9174) .. (79.7000,262.2873) .. controls (79.8217,262.3990) and - (79.9242,262.5220) .. (80.0463,262.6336) .. controls (84.7687,266.9579) and - (89.8299,271.2032) .. (95.1939,275.3576) .. controls (96.6867,276.5075) and - (98.2435,277.6058) .. (99.7815,278.7333) .. controls (101.1008,279.7075) and - (102.4086,280.7179) .. (103.7631,281.6763) .. controls (104.1072,281.9178) and - (104.4557,282.1285) .. (104.8019,282.3688) .. controls (107.7953,284.4465) and - (110.8276,286.5345) .. (113.9770,288.5144) .. controls (146.7262,309.1029) and - (187.8421,323.9902) .. (235.1582,325.5612) .. controls (237.0090,325.6046) and - (238.8269,325.6477) .. (240.6979,325.6478) .. controls (296.1207,325.6478) and - (343.4466,307.2928) .. (379.3638,282.3688) .. controls (382.3569,280.2918) and - (385.2727,278.1245) .. (388.1062,275.9635) .. controls (390.7250,273.9662) and - (393.2438,271.9622) .. (395.7233,269.9044) .. controls (395.9256,269.7355) and - (396.1278,269.5543) .. (396.3292,269.3851) .. controls (396.5043,269.2388) and - (396.6742,269.0989) .. (396.8485,268.9523) .. controls (399.3357,266.8505) and - (401.7903,264.7692) .. (404.1194,262.6336) .. controls (404.2104,262.5504) and - (404.2883,262.4571) .. (404.3791,262.3739) .. controls (405.8802,260.9932) and - (407.2729,259.5223) .. (408.7070,258.1325) .. controls (369.8544,292.3010) and - (299.9755,258.4175) .. (242.0828,216.1519) -- cycle; -\path[fill=cf0f79a,fill opacity=0.600] (72.7754,-82.9059) .. controls - (70.5569,-80.6871) and (68.3741,-78.3579) .. (66.1970,-75.9813) .. controls - (66.0854,-75.8595) and (65.9622,-75.7573) .. (65.8508,-75.6351) .. controls - (61.5029,-70.8676) and (57.2383,-65.7766) .. (53.1267,-60.4008) .. controls - (51.3696,-58.1035) and (49.6353,-55.7078) .. (47.9332,-53.3031) .. controls - (47.4520,-52.6280) and (46.9389,-51.9963) .. (46.4618,-51.3123) .. controls - (45.9532,-50.5777) and (45.4932,-49.8059) .. (44.9903,-49.0618) .. controls - (43.3279,-46.6219) and (41.6589,-44.1660) .. (40.0565,-41.6178) .. controls - (19.4250,-8.8097) and (4.1164,32.9166) .. (3.2693,81.2946) .. controls - (3.2447,82.6981) and (3.1828,84.1212) .. (3.1828,85.5359) .. controls - (3.1828,85.9743) and (3.1805,86.3969) .. (3.1828,86.8343) .. controls - (3.1803,87.2950) and (3.1828,87.7574) .. (3.1828,88.2192) .. controls - (3.1977,89.6155) and (3.2316,90.9886) .. (3.2693,92.3740) .. controls - (4.1090,140.7731) and (19.4160,182.0322) .. (40.0565,214.5939) .. controls - (43.8301,220.5471) and (47.7544,226.2022) .. (51.8284,231.5592) .. controls - (52.1527,231.9887) and (52.4544,232.4318) .. (52.7805,232.8576) .. controls - (52.8677,232.9708) and (52.9528,233.0910) .. (53.0402,233.2038) .. controls - (54.9978,235.7500) and (56.9957,238.2341) .. (59.0127,240.6478) .. controls - (60.7523,242.7208) and (62.4397,244.7409) .. (64.2061,246.7069) .. controls - (64.7196,247.2799) and (65.2480,247.8735) .. (65.7642,248.4381) .. controls - (65.8459,248.5272) and (65.9422,248.6088) .. (66.0239,248.6977) .. controls - (67.3269,250.1181) and (68.6867,251.4863) .. (70.0055,252.8525) .. controls - (70.0336,252.8815) and (70.0640,252.9101) .. (70.0921,252.9391) .. controls - (70.9761,253.8538) and (71.8852,254.8187) .. (72.7754,255.7089) .. controls - (101.5265,226.9551) and (145.8227,183.0916) .. (172.2305,156.6866) .. controls - (154.7440,139.1992) and (132.7471,114.2742) .. (112.5921,86.6612) .. controls - (132.7306,59.2363) and (154.7703,34.5200) .. (172.2305,17.0685) .. controls - (145.8255,-9.3476) and (101.5237,-54.1604) .. (72.7754,-82.9059) -- cycle; -\path[fill=ceef69b] (70.3518,-80.2226) .. controls (68.9729,-78.7979) and - (67.5658,-77.4733) .. (66.1970,-75.9813) .. controls (66.0854,-75.8595) and - (65.9622,-75.7573) .. (65.8508,-75.6351) .. controls (61.5302,-70.9058) and - (57.2682,-65.7822) .. (53.1267,-60.4008) .. controls (51.3532,-58.0964) and - (49.6588,-55.7235) .. (47.9332,-53.3031) .. controls (47.4520,-52.6280) and - (46.9389,-51.9963) .. (46.4618,-51.3123) .. controls (45.9532,-50.5777) and - (45.4932,-49.8059) .. (44.9903,-49.0618) .. controls (43.3247,-46.5972) and - (41.6558,-44.1860) .. (40.0565,-41.6178) .. controls (19.3811,-8.4168) and - (4.5756,33.3779) .. (3.2693,81.2946) .. controls (3.2447,82.6981) and - (3.1828,84.1212) .. (3.1828,85.5359) .. controls (3.1828,85.9743) and - (3.1805,86.3969) .. (3.1828,86.8343) .. controls (3.1803,87.2950) and - (3.1828,87.7574) .. (3.1828,88.2192) .. controls (3.1977,89.6155) and - (3.2316,90.9886) .. (3.2693,92.3740) .. controls (4.5734,140.2520) and - (19.4002,181.6607) .. (40.0565,214.5939) .. controls (43.7971,220.5577) and - (47.7501,226.1591) .. (51.8284,231.5592) .. controls (52.1527,231.9887) and - (52.4544,232.4318) .. (52.7805,232.8576) .. controls (52.8677,232.9708) and - (52.9528,233.0910) .. (53.0402,233.2038) .. controls (54.9978,235.7500) and - (56.9957,238.2341) .. (59.0127,240.6478) .. controls (60.7355,242.7096) and - (62.4467,244.7434) .. (64.2061,246.7069) .. controls (64.7196,247.2799) and - (65.2480,247.8735) .. (65.7642,248.4381) .. controls (65.8459,248.5272) and - (65.9422,248.6088) .. (66.0239,248.6977) .. controls (67.3269,250.1181) and - (68.6867,251.4863) .. (70.0055,252.8525) .. controls (36.1023,213.9490) and - (70.2402,144.3362) .. (112.5921,86.6612) .. controls (70.2490,28.6496) and - (36.2088,-41.3732) .. (70.3518,-80.2226) -- cycle; -\end{tikzpicture} -}} - -\definecolor{igaliaColor}{rgb}{0.423529,0.560784,0.761718} - -\newcommand\@ptsize{} -\newif\if@restonecol -\newif\if@titlepage -\@titlepagetrue -\newif\if@openright -\if@compatibility\else -\DeclareOption{a4paper} - {\setlength\paperheight {297mm} - \setlength\paperwidth {210mm}} -\DeclareOption{a5paper} - {\setlength\paperheight {210mm} - \setlength\paperwidth {148mm}} -\DeclareOption{b5paper} - {\setlength\paperheight {250mm} - \setlength\paperwidth {176mm}} -\DeclareOption{letterpaper} - {\setlength\paperheight {11in} - \setlength\paperwidth {8.5in}} -\DeclareOption{legalpaper} - {\setlength\paperheight {14in} - \setlength\paperwidth {8.5in}} -\DeclareOption{executivepaper} - {\setlength\paperheight {10.5in} - \setlength\paperwidth {7.25in}} -\DeclareOption{landscape} - {\setlength\@tempdima {\paperheight} - \setlength\paperheight {\paperwidth} - \setlength\paperwidth {\@tempdima}} -\fi -\if@compatibility - \renewcommand\@ptsize{0} -\else -\DeclareOption{10pt}{\renewcommand\@ptsize{0}} -\fi -\DeclareOption{11pt}{\renewcommand\@ptsize{1}} -\DeclareOption{12pt}{\renewcommand\@ptsize{2}} -\DeclareOption{14pt}{\renewcommand\@ptsize{4}} -\if@compatibility\else -\DeclareOption{oneside}{\@twosidefalse \@mparswitchfalse} -\fi -\DeclareOption{twoside}{\@twosidetrue \@mparswitchtrue} -\DeclareOption{draft}{\setlength\overfullrule{5pt}} -\if@compatibility\else -\DeclareOption{final}{\setlength\overfullrule{0pt}} -\fi -\DeclareOption{titlepage}{\@titlepagetrue} -\if@compatibility\else -\DeclareOption{notitlepage}{\@titlepagefalse} -\fi -\if@compatibility -\else -\DeclareOption{openright}{\@openrighttrue} -\DeclareOption{openany}{\@openrightfalse} -\fi -\if@compatibility\else -\DeclareOption{onecolumn}{\@twocolumnfalse} -\fi -\DeclareOption{twocolumn}{\@twocolumntrue} -\DeclareOption{leqno}{\input{leqno.clo}} -\DeclareOption{fleqn}{\input{fleqn.clo}} -\DeclareOption{openbib}{ - \AtEndOfPackage{ - \renewcommand\@openbib@code{ - \advance\leftmargin\bibindent - \itemindent -\bibindent - \listparindent \itemindent - \parsep \z@ - } - \renewcommand\newblock{\par}} -} -\ExecuteOptions{a4paper,10pt,oneside,onecolumn,final,openany} -\ProcessOptions - - -%%%% Babel -\RequirePackage[latin1]{inputenc} -\ifx\igaliaBabel\undefined - \RequirePackage[english]{babel} -\else - \RequirePackage[\igaliaBabel]{babel} -\fi - -%%%% - -\input{size1\@ptsize.clo} -\setlength\lineskip{1\p@} -\setlength\normallineskip{1\p@} -\renewcommand\baselinestretch{} -\setlength\parskip{0\p@ \@plus \p@} -\@lowpenalty 51 -\@medpenalty 151 -\@highpenalty 301 -\setcounter{topnumber}{2} -\renewcommand\topfraction{.7} -\setcounter{bottomnumber}{1} -\renewcommand\bottomfraction{.3} -\setcounter{totalnumber}{3} -\renewcommand\textfraction{.2} -\renewcommand\floatpagefraction{.5} -\setcounter{dbltopnumber}{2} -\renewcommand\dbltopfraction{.7} -\renewcommand\dblfloatpagefraction{.5} - - -\if@twoside - \def\ps@headings{ - \let\@oddfoot\@empty\let\@evenfoot\@empty - \def\@evenhead{\thepage\hfil\slshape\leftmark} - \def\@oddhead{\textcolor{igaliaColor}{{\slshape\rightmark}\hfil\thepage}} - \let\@mkboth\markboth - \def\chaptermark##1{ - \markboth {\MakeUppercase{ - \ifnum \c@secnumdepth >\m@ne - \@chapapp\ \thechapter. \ - \fi - ##1}}{}} - \def\sectionmark##1{ - \markright {\MakeUppercase{ - \ifnum \c@secnumdepth >\z@ - \thesection. \ - \fi - ##1}}}} -\else - \def\ps@headings{ -% \let\@oddfoot\@empty - - \def\@oddhead{\textcolor{igaliaColor}{{\slshape\rightmark\hfil\@author}}} - \def\@oddfoot{\textcolor{igaliaColor}{\expandafter\@title\hfil\thepage}} - - \let\@mkboth\markboth - \def\chaptermark##1{ - \markright {\MakeUppercase{ - \ifnum \c@secnumdepth >\m@ne - \@chapapp\ \thechapter. \ - \fi - ##1}}}} -\fi -\def\ps@myheadings{ - \let\@oddfoot\@empty\let\@evenfoot\@empty - \def\@evenhead{\textcolor{igaliaColor}{\thepage\hfil\slshape\leftmark}} - \def\@oddhead{\textcolor{igaliaColor}{{\slshape\rightmark}\hfil\thepage}} - \let\@mkboth\@gobbletwo - \let\chaptermark\@gobble - \let\sectionmark\@gobble - } - \if@titlepage - \newcommand\maketitle{\begin{titlepage} - \let\footnotesize\small - \let\footnoterule\relax - \let \footnote \thanks - \vspace*{-2cm} - \begin{flushright} - \usebox{\igaliaMiniLogo} - \end{flushright} - \vspace*{2cm} - \null\vfil - \vskip 60\p@ - \begin{center} - {\sf\bfseries\Huge\@title\par} - \vskip 6cm - \end{center}\par - \AddToShipoutPicture*{ - \put(-210,-210){\usebox\igaliaShipoutLogo} - } - \begin{flushright} - \begin{tabular}[t]{l} - \vspace*{1cm}{\huge \@customer} \\ - \vspace*{0.5cm}{\LARGE \@reference} \\ - {\LARGE \@city\xspace \@date} \\ - \end{tabular} - \end{flushright} - \@thanks - \vfil\null - \end{titlepage} - \setcounter{footnote}{0} - \global\let\thanks\relax - \global\let\maketitle\relax - \global\let\@thanks\@empty -% \global\let\@author\@empty - \global\let\@date\@empty - \global\let\@customer\@empty - \global\let\@reference\@empty - \global\let\@city\@empty -% \global\let\@title\@empty -% \global\let\title\relax -% \global\let\author\relax - \global\let\date\relax - \global\let\customer\relax - \global\let\reference\relax - \global\let\city\relax - \global\let\and\relax -} -\else -\newcommand\maketitle{\par - \begingroup - \renewcommand\thefootnote{\@fnsymbol\c@footnote} - \def\@makefnmark{\rlap{\@textsuperscript{\normalfont\@thefnmark}}} - \long\def\@makefntext##1{\parindent 1em\noindent - \hb@xt@1.8em{ - \hss\@textsuperscript{\normalfont\@thefnmark}}##1} - \if@twocolumn - \ifnum \col@number=\@ne - \@maketitle - \else - \twocolumn[\@maketitle] - \fi - \else - \newpage - \global\@topnum\z@ % Prevents figures from going at top of page. - \@maketitle - \fi - \thispagestyle{headings}\@thanks - \endgroup - \setcounter{footnote}{0} - \global\let\thanks\relax - \global\let\maketitle\relax - \global\let\@maketitle\relax - \global\let\@thanks\@empty -% \global\let\@author\@empty - \global\let\@date\@empty - \global\let\@customer\@empty - \global\let\@reference\@empty - \global\let\@city\@empty -% \global\let\@title\@empty -% \global\let\title\relax -% \global\let\author\relax - \global\let\date\relax - \global\let\customer\relax - \global\let\reference\relax - \global\let\city\relax - \global\let\and\relax -} -\def\@maketitle{ - \newpage - \null - \vskip 2em - \vspace*{-2cm} - \begin{flushright} - \usebox{\igaliaMiniLogo} - \end{flushright} - \vspace*{2cm} - \begin{center} - \let \footnote \thanks - {\Huge \@title \par} - \vskip 6cm - \end{center}\par - \begin{flushright} - \begin{tabular}[t]{l} - {\huge \@customer} \par \\ - {\LARGE \@reference}\\ - {\LARGE \@city,\xspace \@date}\\ - \end{tabular} - \end{flushright} - \par - \vskip 1.5em} -\fi -\newcommand*\chaptermark[1]{} -\setcounter{secnumdepth}{2} -\newcounter {part} -\newcounter {chapter} -\newcounter {section}[chapter] -\newcounter {subsection}[section] -\newcounter {subsubsection}[subsection] -\newcounter {paragraph}[subsubsection] -\newcounter {subparagraph}[paragraph] -\renewcommand \thepart {\@Roman\c@part} -\renewcommand \thechapter {\@arabic\c@chapter} -\renewcommand \thesection {\thechapter.\@arabic\c@section} -\renewcommand\thesubsection {\thesection.\@arabic\c@subsection} -\renewcommand\thesubsubsection{\thesubsection .\@arabic\c@subsubsection} -\renewcommand\theparagraph {\thesubsubsection.\@arabic\c@paragraph} -\renewcommand\thesubparagraph {\theparagraph.\@arabic\c@subparagraph} -\newcommand\@chapapp{} -\newcommand\part{ - \if@openright - \cleardoublepage - \else - \clearpage - \fi - \thispagestyle{headings} - \if@twocolumn - \onecolumn - \@tempswatrue - \else - \@tempswafalse - \fi - \null\vfil - \secdef\@part\@spart} - -\def\@part[#1]#2{ - \ifnum \c@secnumdepth >-2\relax - \refstepcounter{part} - \addcontentsline{toc}{part}{\thepart\hspace{1em}#1} - \else - \addcontentsline{toc}{part}{#1} - \fi - \markboth{}{} - {\centering - \interlinepenalty \@M - \normalfont - \ifnum \c@secnumdepth >-2\relax - \huge\bfseries \partname\nobreakspace\thepart - \par - \vskip 20\p@ - \fi - \Huge \bfseries #2\par} - \@endpart} -\def\@spart#1{ - {\centering - \interlinepenalty \@M - \normalfont - \Huge \bfseries #1\par} - \@endpart} -\def\@endpart{\vfil\newpage - \if@twoside - \if@openright - \null - \thispagestyle{empty} - \newpage - \fi - \fi - \if@tempswa - \twocolumn - \fi} -\newcommand\chapter{\if@openright\cleardoublepage\else\clearpage\fi - \thispagestyle{headings} - \global\@topnum\z@ - \@afterindentfalse - \secdef\@chapter\@schapter} -\def\@chapter[#1]#2{\ifnum \c@secnumdepth >\m@ne - \refstepcounter{chapter} - \typeout{\@chapapp\space\thechapter.} - \addcontentsline{toc}{chapter} - {\protect\numberline{\thechapter}#1} - \else - \addcontentsline{toc}{chapter}{#1} - \fi - \chaptermark{#1} - \addtocontents{lof}{\protect\addvspace{10\p@}} - \addtocontents{lot}{\protect\addvspace{10\p@}} - \if@twocolumn - \@topnewpage[\@makechapterhead{#2}] - \else - \@makechapterhead{#2} - \@afterheading - \fi} -\def\@makechapterhead#1{ - \vspace*{50\p@} - {\parindent \z@ \raggedright \normalfont - \ifnum \c@secnumdepth >\m@ne - \huge\bfseries \@chapapp\space \thechapter - \hskip 20\p@ - \fi - \interlinepenalty\@M - \Huge \bfseries #1 \normalsize - - \textcolor{igaliaColor}{\hrule height 2.5pt} - - \vskip 40\p@ - }} -\def\@schapter#1{\if@twocolumn - \@topnewpage[\@makeschapterhead{#1}] - \else - \@makeschapterhead{#1} - \@afterheading - \fi} -\def\@makeschapterhead#1{ - \vspace*{50\p@} - {\parindent \z@ \raggedright - \normalfont - \interlinepenalty\@M - \Huge \bfseries #1 \normalsize - - \textcolor{igaliaColor}{\hrule height 2.5pt} - - \vskip 40\p@ - }} -\newcommand\section{\@startsection {section}{1}{\z@} - {-3.5ex \@plus -1ex \@minus -.2ex} - {2.3ex \@plus.2ex} - {\normalfont\Large\bfseries}} -\newcommand\subsection{\@startsection{subsection}{2}{\z@} - {-3.25ex\@plus -1ex \@minus -.2ex} - {1.5ex \@plus .2ex} - {\hspace*{-0.6cm}\normalfont\large\bfseries\textcolor{igaliaColor}}} -\newcommand\subsubsection{\@startsection{subsubsection}{3}{\z@} - {-3.25ex\@plus -1ex \@minus -.2ex} - {1.5ex \@plus .2ex} - {\normalfont\normalsize\bfseries}} -\newcommand\paragraph{\@startsection{paragraph}{4}{\z@} - {3.25ex \@plus1ex \@minus.2ex} - {-1em} - {\normalfont\normalsize\bfseries}} -\newcommand\subparagraph{\@startsection{subparagraph}{5}{\parindent} - {3.25ex \@plus1ex \@minus .2ex} - {-1em} - {\normalfont\normalsize\bfseries}} -\if@twocolumn - \setlength\leftmargini {2em} -\else - \setlength\leftmargini {2.5em} -\fi -\leftmargin \leftmargini -\setlength\leftmarginii {2.2em} -\setlength\leftmarginiii {1.87em} -\setlength\leftmarginiv {1.7em} -\if@twocolumn - \setlength\leftmarginv {.5em} - \setlength\leftmarginvi {.5em} -\else - \setlength\leftmarginv {1em} - \setlength\leftmarginvi {1em} -\fi -\setlength \labelsep {.5em} -\setlength \labelwidth{\leftmargini} -\addtolength\labelwidth{-\labelsep} -\@beginparpenalty -\@lowpenalty -\@endparpenalty -\@lowpenalty -\@itempenalty -\@lowpenalty -\renewcommand\theenumi{\@arabic\c@enumi} -\renewcommand\theenumii{\@alph\c@enumii} -\renewcommand\theenumiii{\@roman\c@enumiii} -\renewcommand\theenumiv{\@Alph\c@enumiv} -\newcommand\labelenumi{\theenumi.} -\newcommand\labelenumii{(\theenumii)} -\newcommand\labelenumiii{\theenumiii.} -\newcommand\labelenumiv{\theenumiv.} -\renewcommand\p@enumii{\theenumi} -\renewcommand\p@enumiii{\theenumi(\theenumii)} -\renewcommand\p@enumiv{\p@enumiii\theenumiii} -\newcommand\labelitemi{\textbullet} -\newcommand\labelitemii{\normalfont\bfseries \textendash} -\newcommand\labelitemiii{\textasteriskcentered} -\newcommand\labelitemiv{\textperiodcentered} -\newenvironment{description} - {\list{}{\labelwidth\z@ \itemindent-\leftmargin - \let\makelabel\descriptionlabel}} - {\endlist} -\newcommand*\descriptionlabel[1]{\hspace\labelsep - \normalfont\bfseries #1} -\if@titlepage - \newenvironment{abstract}{ - \titlepage - \null\vfil - \@beginparpenalty\@lowpenalty - \begin{center} - \bfseries \abstractname - \@endparpenalty\@M - \end{center}} - {\par\vfil\null\endtitlepage} -\else - \newenvironment{abstract}{ - \if@twocolumn - \section*{\abstractname} - \else - \small - \begin{center} - {\bfseries \abstractname\vspace{-.5em}\vspace{\z@}} - \end{center} - \quotation - \fi} - {\if@twocolumn\else\endquotation\fi} -\fi -\newenvironment{verse} - {\let\\\@centercr - \list{}{\itemsep \z@ - \itemindent -1.5em - \listparindent\itemindent - \rightmargin \leftmargin - \advance\leftmargin 1.5em} - \item\relax} - {\endlist} -\newenvironment{quotation} - {\list{}{\listparindent 1.5em - \itemindent \listparindent - \rightmargin \leftmargin - \parsep \z@ \@plus\p@} - \item\relax} - {\endlist} -\newenvironment{quote} - {\list{}{\rightmargin\leftmargin} - \item\relax} - {\endlist} -\if@compatibility -\newenvironment{titlepage} - {% - \if@twocolumn - \@restonecoltrue\onecolumn - \else - \@restonecolfalse\newpage - \fi - \thispagestyle{empty} - \setcounter{page}\z@ - }% - {\if@restonecol\twocolumn \else \newpage \fi - } -\else -\newenvironment{titlepage} - {% - \if@twocolumn - \@restonecoltrue\onecolumn - \else - \@restonecolfalse\newpage - \fi - \thispagestyle{empty} - \setcounter{page}\@ne - }% - {\if@restonecol\twocolumn \else \newpage \fi - \if@twoside\else - \setcounter{page}\@ne - \fi - } -\fi -\newcommand\appendix{\par - \setcounter{chapter}{0} - \setcounter{section}{0} - \gdef\@chapapp{\appendixname} - \gdef\thechapter{\@Alph\c@chapter}} -\setlength\arraycolsep{5\p@} -\setlength\tabcolsep{6\p@} -\setlength\arrayrulewidth{.4\p@} -\setlength\doublerulesep{2\p@} -\setlength\tabbingsep{\labelsep} -\skip\@mpfootins = \skip\footins -\setlength\fboxsep{3\p@} -\setlength\fboxrule{.4\p@} -\@addtoreset {equation}{chapter} -\renewcommand\theequation - {\ifnum \c@chapter>\z@ \thechapter.\fi \@arabic\c@equation} -\newcounter{figure}[chapter] -\renewcommand \thefigure - {\ifnum \c@chapter>\z@ \thechapter.\fi \@arabic\c@figure} -\def\fps@figure{tbp} -\def\ftype@figure{1} -\def\ext@figure{lof} -\def\fnum@figure{\figurename\nobreakspace\thefigure} -\newenvironment{figure} - {\@float{figure}} - {\end@float} -\newenvironment{figure*} - {\@dblfloat{figure}} - {\end@dblfloat} -\newcounter{table}[chapter] -\renewcommand \thetable - {\ifnum \c@chapter>\z@ \thechapter.\fi \@arabic\c@table} -\def\fps@table{tbp} -\def\ftype@table{2} -\def\ext@table{lot} -\def\fnum@table{\tablename\nobreakspace\thetable} -\newenvironment{table} - {\@float{table}} - {\end@float} -\newenvironment{table*} - {\@dblfloat{table}} - {\end@dblfloat} -\newlength\abovecaptionskip -\newlength\belowcaptionskip -\setlength\abovecaptionskip{10\p@} -\setlength\belowcaptionskip{0\p@} -\long\def\@makecaption#1#2{ - \vskip\abovecaptionskip - \sbox\@tempboxa{#1: #2} - \ifdim \wd\@tempboxa >\hsize - #1: #2\par - \else - \global \@minipagefalse - \hb@xt@\hsize{\hfil\box\@tempboxa\hfil} - \fi - \vskip\belowcaptionskip} -\DeclareOldFontCommand{\rm}{\normalfont\rmfamily}{\mathrm} -\DeclareOldFontCommand{\sf}{\normalfont\sffamily}{\mathsf} -\DeclareOldFontCommand{\tt}{\normalfont\ttfamily}{\mathtt} -\DeclareOldFontCommand{\bf}{\normalfont\bfseries}{\mathbf} -\DeclareOldFontCommand{\it}{\normalfont\itshape}{\mathit} -\DeclareOldFontCommand{\sl}{\normalfont\slshape}{\@nomath\sl} -\DeclareOldFontCommand{\sc}{\normalfont\scshape}{\@nomath\sc} -\DeclareRobustCommand*\cal{\@fontswitch\relax\mathcal} -\DeclareRobustCommand*\mit{\@fontswitch\relax\mathnormal} -\newcommand\@pnumwidth{1.55em} -\newcommand\@tocrmarg{2.55em} -\newcommand\@dotsep{4.5} -\setcounter{tocdepth}{2} -\newcommand\tableofcontents{ - \if@twocolumn - \@restonecoltrue\onecolumn - \else - \@restonecolfalse - \fi - \chapter*{\contentsname - \@mkboth{ - \MakeUppercase\contentsname}{\MakeUppercase\contentsname}} - \@starttoc{toc} - \if@restonecol\twocolumn\fi - } -\newcommand*\l@part[2]{ - \ifnum \c@tocdepth >-2\relax - \addpenalty{-\@highpenalty} - \addvspace{2.25em \@plus\p@} - \setlength\@tempdima{3em} - \begingroup - \parindent \z@ \rightskip \@pnumwidth - \parfillskip -\@pnumwidth - {\leavevmode - \large \bfseries #1\hfil \hb@xt@\@pnumwidth{\hss #2}}\par - \nobreak - \global\@nobreaktrue - \everypar{\global\@nobreakfalse\everypar{}} - \endgroup - \fi} -\newcommand*\l@chapter[2]{ - \ifnum \c@tocdepth >\m@ne - \addpenalty{-\@highpenalty} - \vskip 1.0em \@plus\p@ - \setlength\@tempdima{1.5em} - \begingroup - \parindent \z@ \rightskip \@pnumwidth - \parfillskip -\@pnumwidth - \leavevmode \bfseries - \advance\leftskip\@tempdima - \hskip -\leftskip - #1\nobreak\hfil \nobreak\hb@xt@\@pnumwidth{\hss #2}\par - \penalty\@highpenalty - \endgroup - \fi} -\newcommand*\l@section{\@dottedtocline{1}{1.5em}{2.3em}} -\newcommand*\l@subsection{\@dottedtocline{2}{3.8em}{3.2em}} -\newcommand*\l@subsubsection{\@dottedtocline{3}{7.0em}{4.1em}} -\newcommand*\l@paragraph{\@dottedtocline{4}{10em}{5em}} -\newcommand*\l@subparagraph{\@dottedtocline{5}{12em}{6em}} -\newcommand\listoffigures{ - \if@twocolumn - \@restonecoltrue\onecolumn - \else - \@restonecolfalse - \fi - \chapter*{\listfigurename} - \@mkboth{\MakeUppercase\listfigurename} - {\MakeUppercase\listfigurename} - \@starttoc{lof} - \if@restonecol\twocolumn\fi - } -\newcommand*\l@figure{\@dottedtocline{1}{1.5em}{2.3em}} -\newcommand\listoftables{ - \if@twocolumn - \@restonecoltrue\onecolumn - \else - \@restonecolfalse - \fi - \chapter*{\listtablename} - \@mkboth{ - \MakeUppercase\listtablename} - {\MakeUppercase\listtablename} - \@starttoc{lot} - \if@restonecol\twocolumn\fi - } -\let\l@table\l@figure -\newdimen\bibindent -\setlength\bibindent{1.5em} -\newenvironment{thebibliography}[1] - {\chapter*{\bibname} - \@mkboth{\MakeUppercase\bibname}{\MakeUppercase\bibname} - \list{\@biblabel{\@arabic\c@enumiv}} - {\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} -\newcommand\newblock{\hskip .11em\@plus.33em\@minus.07em} -\let\@openbib@code\@empty -\newenvironment{theindex} - {\if@twocolumn - \@restonecolfalse - \else - \@restonecoltrue - \fi - \twocolumn[\@makeschapterhead{\indexname}] - \@mkboth{\MakeUppercase\indexname} - {\MakeUppercase\indexname} - \thispagestyle{headings}\parindent\z@ - \parskip\z@ \@plus .3\p@\relax - \columnseprule \z@ - \columnsep 35\p@ - \let\item\@idxitem} - {\if@restonecol\onecolumn\else\clearpage\fi} -\newcommand\@idxitem{\par\hangindent 40\p@} -\newcommand\subitem{\@idxitem \hspace*{20\p@}} -\newcommand\subsubitem{\@idxitem \hspace*{30\p@}} -\newcommand\indexspace{\par \vskip 10\p@ \@plus5\p@ \@minus3\p@\relax} -\renewcommand\footnoterule{ - \kern-3\p@ - \hrule\@width.4\columnwidth - \kern2.6\p@} -\@addtoreset{footnote}{chapter} -\newcommand\@makefntext[1]{ - \parindent 1em - \noindent - \hb@xt@1.8em{\hss\@makefnmark}#1} -\newcommand\contentsname{Contents} -\newcommand\listfigurename{List of Figures} -\newcommand\listtablename{List of Tables} -\newcommand\bibname{Bibliography} -\newcommand\indexname{Index} -\newcommand\figurename{Figure} -\newcommand\tablename{Table} -\newcommand\partname{Part} -\newcommand\chaptername{Chapter} -\newcommand\appendixname{Appendix} -\newcommand\abstractname{Abstract} -\def\today{\ifcase\month\or - January\or February\or March\or April\or May\or June\or - July\or August\or September\or October\or November\or December\fi - \space\number\day, \number\year} -\setlength\columnsep{10\p@} -\setlength\columnseprule{0\p@} -\pagestyle{headings} -\pagenumbering{arabic} -\if@twoside -\else - \raggedbottom -\fi -\if@twocolumn - \twocolumn - \sloppy - \flushbottom -\else - \onecolumn -\fi -\endinput -%% -%% End of file `igaliaBudget.cls'. diff --git a/doc/src/parts b/doc/src/parts deleted file mode 100644 index 1565d1b39..000000000 --- a/doc/src/parts +++ /dev/null @@ -1,20 +0,0 @@ -# -# First word: -# Identifier of the section to include. It cannot contain spaces. For -# a section named “foo”, a file “foo/foo.rst” must exist. -# -# Rest of the line: -# Free form text for specifying who is in charge. It will be passed to -# docutils as-is, so you can add markup if needed. -# -# -introducion Xavier Castaño (xcastanho@igalia.com) -criterios Xavier Castaño (xcastanho@igalia.com) -calendarios Xavier Castaño (xcastanho@igalia.com) -avances Xavier Castaño (xcastanho@igalia.com) -recursos Xavier Castaño (xcastanho@igalia.com) -pedidos Xavier Castaño (xcastanho@igalia.com) -planificacion Xavier Castaño (xcastanho@igalia.com) -asignacion Xavier Castaño (xcastanho@igalia.com) -partes Xavier Castaño (xcastanho@igalia.com) -etiquetas Xavier Castaño (xcastanho@igalia.com)