diff --git a/Assembler.md b/Assembler.md
index 7f98444..9e909af 100644
--- a/Assembler.md
+++ b/Assembler.md
@@ -52,3 +52,55 @@ Die CPU kann die Daten an der Adresse 1000 anfordern, und der Speicher gibt sie
| Der Speicher ist flüchtig | Wenn du den Computer ausschaltest, verschwindet alles im RAM |
| Lesen zerstört keine Daten | Du kannst die Adresse 1000 eine Million Mal lesen, und sie enthält weiterhin denselben Wert |
| Schreiben überschreibt alte Daten | Wenn du neue Daten an die Adresse 1000 schreibst, sind die alten Daten für immer verschwunden |
+
+## Wie Befehle funktionieren
+
+Du weißt, dass die CPU Anweisungen eine nach der anderen ausführt. Aber woher weiß die CPU, welche Anweisung als Nächstes ausgeführt werden soll? Wo werden die Anweisungen gespeichert? Und wie sieht eine Anweisung eigentlich aus?
+
+**Anweisungen sind Zahlen.**
+
+Dies ist eine grundlegende Wahrheit über Computer. Alles ist eine Zahl. Die Daten, mit denen du arbeitest (wie die Zahl 42), sind eine Zahl. Die Adresse, an der die Daten gespeichert sind (wie 1000), ist eine Zahl. Und auch die Anweisungen selbst (wie `mov`, `add`, `cmp`) sind Zahlen.
+
+Wenn du Assemblercode wie `mov rax, 5` schreibst, wandelt der Assembler diesen für Menschen lesbaren Text in eine Zahl um, die die CPU versteht. Diese Zahl wird **Instruktionscode** genannt.
+
+**Wo werden Anweisungen gespeichert?**
+
+Anweisungen werden wie Daten im Speicher gespeichert. Es gibt keinen speziellen Ort für Anweisungen. Der Speicher enthält beides:
+
+- **Daten**Â (Zahlen, Zeichen, Arrays)
+- **Anweisungen**Â (das Programm selbst)
+
+Die CPU kennt den Unterschied nicht. Sie liest einfach, was sich an der Speicheradresse befindet, auf die der Program Counter zeigt. Du hast im Abschnitt 0.1 kurz etwas über den PC gelernt. Nun ist es an der Zeit, genau zu verstehen, wie er funktioniert.
+
+Der Program Counter (auch Instruction Pointer genannt) ist ein spezielles Register innerhalb der CPU. Seine einzige Aufgabe besteht darin, die Speicheradresse der nächsten auszuführenden Anweisung zu speichern.
+
+**Der Fetch-Execute-Zyklus:**
+
+Die CPU wiederholt diese drei Schritte für immer:
+
+| Schritt | Was passiert |
+| ---------- | ---------------------------------------------------- |
+| 1. FETCH | Die Anweisung an der in PC angegebenen Adresse lesen |
+| 2. EXECUTE | Diese Anweisung ausführen |
+| 3. ADVANCE | PC zur nächsten Anweisung weiterbewegen |
+
+**Einfaches Beispiel:**
+
+Wenn PC = 1000 ist, führt die CPU Folgendes aus:
+
+- Ruft die Anweisung an der Adresse 1000 ab
+- Führt sie aus
+- Verschiebt PC zur nächsten Adresse (1000 + Größe der Anweisung)
+
+Dann wird es mit dem neuen PC-Wert wiederholt.
+
+**Wie eine Instruktion aussieht:**
+
+Jede Instruktion besteht aus zwei Teilen:
+
+| Teil | Was sie tut | Beispiel |
+| --------- | --------------------------------- | ---------------------- |
+| Opcode | Was AUSGEFÜHRT werden soll | `mov`, `add`, `cmp` |
+| Operanden | WORAUF sie angewendet werden soll | `rax`, `5`, `[result]` |
+
+Einige Anweisungen haben einen Operanden (wie `inc rax`, um 1 zu addieren). Einige haben zwei (wie `mov rax, 5`). Einige haben drei (wie `add rax, rbx, rcx` in manchen Architekturen).
diff --git a/Docker 2.md b/Docker 2.md
index a83a2a6..6102409 100644
--- a/Docker 2.md
+++ b/Docker 2.md
@@ -71,3 +71,44 @@ ubuntu latest 75afc20638b6 4 days ago 81.8MB
Um die Liste auf ein Repository einzugrenzen, übergibt man dessen Namen:
`docker images alpine` zeigt nur die `alpine`-Tags an.
+
+## Images taggen
+
+Ein **Tag** ist eine benutzerfreundliche Bezeichnung, die auf ein Image verweist. Der Befehl `docker tag` gibt einem bestehenden Image einen zusätzlichen Namen:
+
+```bash
+docker tag alpine:3.21 myalpine:v1
+```
+
+Dies kopiert das Image nicht. Es erstellt einen neuen Namen, `myalpine:v1`, der auf dasselbe zugrunde liegende Image verweist wie `alpine:3.21`. Beide erscheinen nun in `docker images`.
+
+Das Format ist `docker tag SOURCE:TAG TARGET:TAG`. Mit Tags geben Sie Ihren eigenen Builds aussagekräftige Versionsnamen wie `v1`, `dev` oder `stable`.
+
+## Einen Befehl ausführen
+
+Man kann einem Container genau sagen, welcher Befehl ausgeführt werden soll, indem man ihn nach dem Imagenamen hinzufügt:
+
+```bash
+docker run alpine echo "hello from a container"
+```
+
+Docker startet einen Container aus dem `alpine`-Image, führt darin `echo "hello from a container"` aus, gibt die Ausgabe aus und beendet anschließend den Container. Die Struktur lautet:
+
+```bash
+docker run IMAGE COMMAND [ARGUMENTS]
+```
+
+Dies ist das alltägliche Muster für die Verwendung eines Containers als Wegwerfumgebung: Starten, ausführen eines Befehls und stoppen.
+
+### Echte Ausführung
+
+Befehle innerhalb eines Containers werden tatsächlich ausgeführt und nicht nur als vorgetäuschte Ausgabe wiedergegeben. Du kannst das beweisen, indem du dem Container eine Shell und ein kleines Skript übergibst:
+
+```bash
+docker run alpine sh -c "echo abc | tr a-z A-Z"
+docker run alpine sh -c "seq 3"
+```
+
+Hier führt `sh -c` eine Shell-Befehlszeichenfolge innerhalb des Containers aus. Die Shell leitet `abc` an `tr` weiter, was es in Großbuchstaben umwandelt, sodass die Ausgabe `ABC` ist.
+
+Das bedeutet, dass Sie Pipes, Variablen und die Befehlszeilenwerkzeuge, die Sie bereits kennen, direkt im Container verwenden können.
diff --git a/Lisp.md b/Lisp.md
index 7eefaf1..5ac8459 100644
--- a/Lisp.md
+++ b/Lisp.md
@@ -30,6 +30,18 @@ defparameter *name* "Otto")
(defvar *Variable* Wert )
```
+Beispiel
+
+```lisp
+(defvar *b* 101)
+```
+
+#### setq / setf
+
+**`setq` / `setf`**: Ändert den Wert einer bereits existierenden Variablen oder erzeugt (in manchen Lisp-Dialekten) implizit eine globale Variable, was jedoch unsauber ist. `setf` ist der universelle Zuweisungsoperator.
+
+(setf *mein-wert* 100)
+
### Lokale Variablen
diff --git a/Python.md b/Python.md
index 80087da..c43fc52 100644
--- a/Python.md
+++ b/Python.md
@@ -36,4 +36,18 @@ Um eine Variable vom Typ `float` mit dem Namen `b` und dem Wert `13.2` zu initia
b = 13.2
```
-**Hinweis:** Variablennamen dürfen nicht mit einer Zahl beginnen. Verwende Unterstriche, um Wörter zu trennen (z. B. `player_name`), keine Leerzeichen oder Bindestriche..
\ No newline at end of file
+**Hinweis:** Variablennamen dürfen nicht mit einer Zahl beginnen. Verwende Unterstriche, um Wörter zu trennen (z. B. `player_name`), keine Leerzeichen oder Bindestriche..
+
+## Strings
+
+Ein **Zeichen** ist ein einzelner Buchstabe, eine einzelne Ziffer oder ein einzelnes Symbol (zum Beispiel: 1, 6, %, b, p, ., T usw.). Python hat keinen separaten `char`-Typ: Ein einzelnes Zeichen ist einfach eine Zeichenkette der Länge 1.
+
+Der Typ **str** (Zeichenkette) ist eine Folge aus einem oder mehreren Zeichen.
+
+Um einen Zeichenfolgenwert in einer Variablen zu initialisieren, schließe ihn in einfache oder doppelte Anführungszeichen ein:
+
+```python
+s1 = 'This is a string's2 = "This is also a string"
+```
+
+Im obigen Beispiel werden zwei Zeichenfolgenvariablen initialisiert, die `s1` und `s2` heißen.
\ No newline at end of file
diff --git a/Regular Expressions Cheat Sheet.md b/Regular Expressions Cheat Sheet.md
index 0c8b88e..47bcf1d 100644
--- a/Regular Expressions Cheat Sheet.md
+++ b/Regular Expressions Cheat Sheet.md
@@ -2,29 +2,35 @@
A regular expression specifies a set of strings that matches it. This cheat sheet is based off Python 3's Regular Expressions (http://docs.python.org/3/library/re.html) but is designed for searches within Sublime Text.
+https://gist.github.com/IsaacCisneros/d7f3cf4bf6c0573d0570
+
+https://ahkde.github.io/docs/v1/misc/RegEx-QuickRef.htm
+
+https://serverdiscounter.com/blog/2026-01-26-regex-grundlagen
+
+
+
## Special Characters
-| | |
-| --- | ----------------------------------------------------------- |
-| `\` | Escapes special characters or signals a special sequence. |
-| `.` | Matches any single character except a newline. |
-| `^` | Matches the start of the string. |
-| `$` | Matches the end of the string​ |
-| `*` | Greedily matches 0 or more repetitions of the preceding RE. |
-| | |
-| | |
-| | |
-| | |
+| | |
+| ---- | ------------------------------------------------------------------------------- |
+| `\` | Escapet Sonderzeichen oder kennzeichnet eine spezielle Sequenz |
+| `.` | Entspricht einem beliebigen einzelnen Zeichen mit Ausnahme eines Zeilenumbruchs |
+| `^` | Matches the start of the string. |
+| `$` | Matches the end of the string​ |
+| `*` | Greedily matches 0 or more repetitions of the preceding RE. |
+| `*?` | Matches 0 or more repetitions of the preceding RE. |
+| `+` | Greedily matches 1 or more repetitions of the preceding RE. |
+| `+?` | Matches 1 or more repetitions of the preceding RE. |
+| ? | Greedily matches 0 or 1 repetitions of the preceding RE. |
+| ?? | Matches 0 or 1 repetitions of the preceding RE. |
​
-`*?` Matches 0 or more repetitions of the preceding RE.
-
-+ Greedily matches 1 or more repetitions of the preceding RE.
++
+
+
- +? Matches 1 or more repetitions of the preceding RE.
- ? Greedily matches 0 or 1 repetitions of the preceding RE.
- ?? Matches 0 or 1 repetitions of the preceding RE.
A|B Matches A, if A is unmatched then matches B, where A and B are arbitrary REs.
{m} Matches exactly m many repetitions of the previous RE.
{m,n} Greedily matches from m many to n many repetitions of the previous RE.
@@ -77,3 +83,134 @@ A regular expression specifies a set of strings that matches it. This cheat shee
).
\t Matches the ASCII Horizontal Tab.
\v Matches the ASCII Vertical Tab ().
+
+#########################
+
+### Regular Expression Cheat Sheet with Examples
+
+Regular Expressions (regex) are patterns used to match strings in text. Below is a cheat sheet with common regex patterns and examples.
+---
+
+### **1. Anchors**
+
+| Pattern | Description | Example | Matches |
+| ------- | ------------------- | -------- | -------------- |
+| `^` | Start of the string | `^Hello` | `Hello world!` |
+| `$` | End of the string | `world$` | `Hello world!` |
+
+---
+
+### **2. Quantifiers**
+
+| Pattern | Description | Example | Matches |
+| ------- | ------------------------------- | --------- | ------------------------ |
+| `*` | 0 or more | `a*` | `aaa`, `b` |
+| `+` | 1 or more | `a+` | `aaa`, but not `b` |
+| `?` | 0 or 1 | `colou?r` | `color`, `colour` |
+| `{n}` | Exactly `n` occurrences | `a{3}` | `aaa`, but not `aa` |
+| `{n,}` | At least `n` occurrences | `a{2,}` | `aa`, `aaa` |
+| `{n,m}` | Between `n` and `m` occurrences | `a{2,3}` | `aa`, `aaa`, but not `a` |
+
+---
+
+### **3. Character Classes**
+
+| Pattern | Description | Example | Matches |
+| ------- | ---------------------------------------- | ------- | --------------- |
+| `.` | Any character except newline | `a.b` | `acb`, `a9b` |
+| `\d` | Any digit (0-9) | `\d+` | `123`, `9` |
+| `\D` | Any non-digit | `\D+` | `abc`, `@#` |
+| `\w` | Any word character (alphanumeric or `_`) | `\w+` | `hello_123` |
+| `\W` | Any non-word character | `\W+` | `@!`, ` #` |
+| `\s` | Any whitespace | `\s+` | ` `, `\t`, `\n` |
+| `\S` | Any non-whitespace | `\S+` | `abc`, `123` |
+
+---
+
+### **4. Logical OR and Grouping**
+
+| Pattern | Description | Example | Matches |
+| ------- | ----------- | ----------------------- | ------- |
+| `a | b` | Match either `a` or `b` | `cat |
+| `(ab | cd)` | Grouping | `(ab |
+
+---
+
+### **5. Escape Characters**
+
+| Pattern | Description | Example | Matches |
+| ------- | ----------- | --------- | ------- |
+| `\.` | Literal dot | `a\.b` | `a.b` |
+| `\[` | Literal `[` | `\[abc\]` | `[abc]` |
+
+---
+
+### **6. Ranges**
+
+| Pattern | Description | Example | Matches |
+| -------------- | --------------------------- | -------- | ------------ |
+| `[a-z]` | Lowercase letters | `[a-z]+` | `abc`, `xyz` |
+| `[A-Z]` | Uppercase letters | `[A-Z]+` | `ABC`, `XYZ` |
+| `[0-9]` | Digits | `[0-9]+` | `123`, `456` |
+| `[a-zA-Z0-9_]` | Alphanumeric and underscore | `\w+` | `hello123_` |
+
+---
+
+### **7. Special Sequences**
+
+| Pattern | Description | Example | Matches |
+| ---------- | ------------------- | ------------- | ----------------- |
+| `(?=...)` | Positive lookahead | `foo(?=bar)` | `foo` in `foobar` |
+| `(?!...)` | Negative lookahead | `foo(?!bar)` | `foo` in `foobaz` |
+| `(?<=...)` | Positive lookbehind | `(?<=foo)bar` | `bar` in `foobar` |
+| `(?
+```
+
+#### JavaScript Example:
+
+```javascript
+// Match a URL
+let pattern = /https?:\/\/[^\s]+/g;
+let text = "Visit https://example.com for more info.";
+console.log(text.match(pattern)); // Output: [ 'https://example.com' ]
+```
+
+ [regular-expressions-v2.pdf](regular-expressions-v2.pdf)
+
+ [regular-expressions-cheat-sheet-v1.pdf](regular-expressions-cheat-sheet-v1.pdf)
+
+ [regex-cheatsheet.pdf](regex-cheatsheet.pdf)
diff --git a/SQL.md b/SQL.md
index bda398f..2080c56 100644
--- a/SQL.md
+++ b/SQL.md
@@ -194,6 +194,26 @@ Um anzugeben, wie diese Daten sortiert werden sollen, können wir die `DESC`- od
`ORDER BY avg_speed ASC`
+
+
+## Datumsangaben behandeln
+
+Daten in SQL haben ein bestimmtes Format und wir können sie ähnlich wie Zahlen abfragen. Um ein Datum in einer Abfrage zu schreiben, verwendet man das Format: YYYY-MM-DD (2012-09-24)
+
+Um Datumsangaben abzufragen, kann man alle Operatoren verwenden, wie – größer (`>`), kleiner (`<`) oder gleich (`=`) innerhalb des Schlüsselworts WHERE:
+
+```sql
+SELECTÂ *Â FROMÂ table1WHEREÂ col1Â >Â '2011-01-13'
+```
+
+Wir können sogar das Schlüsselwort BETWEEN verwenden:
+
+```sql
+SELECTÂ *Â FROMÂ table1WHEREÂ col1Â BETWEENÂ '2010-01-01'Â ANDÂ '2010-02-25
+```
+
+#############################################################
+
## Eigenschaften einer Tabelle
```sql
@@ -935,40 +955,38 @@ Das Ergebnis sollte nur die relevanten Sitze enthalten.
Bevor Sie mit der Lösung der Herausforderung beginnen, werfen Sie einen Blick auf die Tabellendaten. **Sie sind nicht sauber**. Die Spalten `is_next_gov` und `is_spoke_bad` enthalten Einsen und Nullen sowie auch yes's und no's.
| ministers | | | |
-| :-------: | ---- | ----------- | ------------ |
+|:---------:| ---- | ----------- | ------------ |
| | seat | is_next_gov | is_spoke_bad |
-| 1 | 1 | 0 | 0 |
-| 2 | 2 | 0 | 1 |
-| 3 | 3 | yes | no |
-| 4 | 4 | no | no |
-| 5 | 5 | 1 | no |
-| 6 | 6 | yes | no |
-| 7 | 7 | 1 | no |
-| 8 | 8 | 0 | yes |
-| 9 | 9 | 0 | 1 |
-| 10 | 10 | no | 1 |
-| 11 | 11 | yes | yes |
-| 12 | 12 | 1 | 1 |
-| 13 | 13 | 1 | 1 |
-| 14 | 14 | 1 | 1 |
-| 15 | 15 | yes | 0 |
-| 16 | 16 | 0 | 0 |
-| 17 | 17 | 0 | 0 |
-| 18 | 18 | 0 | no |
-| 19 | 19 | 1 | yes |
-| 20 | 20 | 1 | no |
-| 21 | 21 | 0 | 0 |
-| 22 | 22 | 1 | 0 |
-| 23 | 23 | yes | 1 |
-| 24 | 24 | yes | 1 |
-| 25 | 25 | no | yes |
-| 26 | 26 | 1 | no |
-| 27 | 27 | 0 | yes |
-| 28 | 28 | yes | no |
-| 29 | 29 | no | 0 |
-| 30 | 30 | yes | 0 |
-
-
+| 1 | 1 | 0 | 0 |
+| 2 | 2 | 0 | 1 |
+| 3 | 3 | yes | no |
+| 4 | 4 | no | no |
+| 5 | 5 | 1 | no |
+| 6 | 6 | yes | no |
+| 7 | 7 | 1 | no |
+| 8 | 8 | 0 | yes |
+| 9 | 9 | 0 | 1 |
+| 10 | 10 | no | 1 |
+| 11 | 11 | yes | yes |
+| 12 | 12 | 1 | 1 |
+| 13 | 13 | 1 | 1 |
+| 14 | 14 | 1 | 1 |
+| 15 | 15 | yes | 0 |
+| 16 | 16 | 0 | 0 |
+| 17 | 17 | 0 | 0 |
+| 18 | 18 | 0 | no |
+| 19 | 19 | 1 | yes |
+| 20 | 20 | 1 | no |
+| 21 | 21 | 0 | 0 |
+| 22 | 22 | 1 | 0 |
+| 23 | 23 | yes | 1 |
+| 24 | 24 | yes | 1 |
+| 25 | 25 | no | yes |
+| 26 | 26 | 1 | no |
+| 27 | 27 | 0 | yes |
+| 28 | 28 | yes | no |
+| 29 | 29 | no | 0 |
+| 30 | 30 | yes | 0 |
select seat from ministers where (seat % 2 = 0) and (is_spoke_bad = 0 or is_spoke_bad = 'no' )and (is_next_gov = 1 or is_next_gov = 'yes');
@@ -991,28 +1009,28 @@ Ein schwerer Krimineller ist jemand, der alle folgenden Kriterien erfüllt:
Benenne die Spalte als `worst_criminals`.
| police_report | | | | |
-| :-----------: | ----------------- | ------ | ------------- | ------------ |
+|:-------------:| ----------------- | ------ | ------------- | ------------ |
| | name | report | map | severe_score |
-| 1 | Domingos Holden | VYyPJw | Lockinge | 2 |
-| 2 | Isabel Enid | | Findochty | 7 |
-| 3 | Tadgán Musa | FgDqud | Kara's Vale | 10 |
-| 4 | Filip Baxter | D1rJqH | Kirkwall | 3 |
-| 5 | Edorta Elias | pQ53RC | Dewsbury | 9 |
-| 6 | Kəmal Davy | BsI86j | Kara's Vale | 2 |
-| 7 | Isokrates Bituin | | Findochty | 5 |
-| 8 | Kassy Ramirus | Pkjv7J | Kirkwall | 7 |
-| 9 | Doris Blessing | 0kJXq1 | Dalmerlington | 6 |
-| 10 | Nedeljka Ganesh | EVe9ha | Kara's Vale | 8 |
-| 11 | Karlene Timotheus | 2HUBHz | Dewsbury | 7 |
-| 12 | Emerens Raman | PAGdHl | Findochty | 1 |
-| 13 | Mijo Ambrosios | | Luton | 5 |
-| 14 | Karlene Jairus | 4Z63Q5 | Dalmerlington | 8 |
-| 15 | Khordad Peter | | Findochty | 2 |
-| 16 | Biagio Mai | | Findochty | 9 |
-| 17 | Liwen Sigiward | B51ETs | Mansfield | 3 |
-| 18 | Svante Mona | DC0kGh | Caerleon | 5 |
-| 19 | Kshitija Ladislav | cSA0hA | Caerleon | 2 |
-| 20 | Ha-Eun Tatiana | YNYhHV | Kara's Vale | 4 |
+| 1 | Domingos Holden | VYyPJw | Lockinge | 2 |
+| 2 | Isabel Enid | | Findochty | 7 |
+| 3 | Tadgán Musa | FgDqud | Kara's Vale | 10 |
+| 4 | Filip Baxter | D1rJqH | Kirkwall | 3 |
+| 5 | Edorta Elias | pQ53RC | Dewsbury | 9 |
+| 6 | Kəmal Davy | BsI86j | Kara's Vale | 2 |
+| 7 | Isokrates Bituin | | Findochty | 5 |
+| 8 | Kassy Ramirus | Pkjv7J | Kirkwall | 7 |
+| 9 | Doris Blessing | 0kJXq1 | Dalmerlington | 6 |
+| 10 | Nedeljka Ganesh | EVe9ha | Kara's Vale | 8 |
+| 11 | Karlene Timotheus | 2HUBHz | Dewsbury | 7 |
+| 12 | Emerens Raman | PAGdHl | Findochty | 1 |
+| 13 | Mijo Ambrosios | | Luton | 5 |
+| 14 | Karlene Jairus | 4Z63Q5 | Dalmerlington | 8 |
+| 15 | Khordad Peter | | Findochty | 2 |
+| 16 | Biagio Mai | | Findochty | 9 |
+| 17 | Liwen Sigiward | B51ETs | Mansfield | 3 |
+| 18 | Svante Mona | DC0kGh | Caerleon | 5 |
+| 19 | Kshitija Ladislav | cSA0hA | Caerleon | 2 |
+| 20 | Ha-Eun Tatiana | YNYhHV | Kara's Vale | 4 |
select name as worst_criminals from police_report where (report like '%g%' or report like '%b%' or report is null ) and map in ('Caerleon', 'Dewsbury', 'Kirkwall', 'Findochty') order by severe_score desc limit 5
@@ -1045,34 +1063,34 @@ Führen Sie diese Schritte aus:
- Dann fast abgelaufene Säfte
- Verwenden Sie (current_year - expiration_year) zum Sortieren
-| beverages | | | |
-| :-------: | ---- | ------------ | --------------- |
-| | id | current_year | expiration_year |
-| 1 | 145 | 2013 | 2014 |
-| 2 | 156 | 2001 | 2015 |
-| 3 | 167 | 2009 | 2004 |
-| 4 | 178 | 2005 | 2000 |
-| 5 | 124 | 2013 | 2006 |
-| 6 | 189 | 2002 | 2014 |
-| 7 | 198 | 2007 | 2013 |
-| 8 | 201 | 2004 | 2007 |
-| 9 | 206 | 2000 | 2000 |
-| 10 | 112 | 2011 | 2002 |
-| 11 | 209 | 2008 | 2004 |
-| 12 | 125 | 2015 | 2012 |
-| 13 | 980 | 2008 | 2005 |
-| 14 | 402 | 2010 | 2011 |
-| 15 | 391 | 2008 | 2009 |
-| 16 | 144 | 2015 | 2013 |
-| 17 | 213 | 2014 | 2007 |
-| 18 | 100 | 2001 | 2000 |
-| 19 | 145 | 2002 | 2004 |
-| 20 | 981 | 2011 | 2014 |
-| 21 | 210 | 2002 | 2007 |
-| 22 | 392 | 2010 | 2006 |
-| 23 | 393 | 2007 | 2013 |
-| 24 | 113 | 2010 | 2002 |
-| 25 | 255 | 2001 | 2008 |
+| beverages | | | |
+|:---------:| --- | ------------ | --------------- |
+| | id | current_year | expiration_year |
+| 1 | 145 | 2013 | 2014 |
+| 2 | 156 | 2001 | 2015 |
+| 3 | 167 | 2009 | 2004 |
+| 4 | 178 | 2005 | 2000 |
+| 5 | 124 | 2013 | 2006 |
+| 6 | 189 | 2002 | 2014 |
+| 7 | 198 | 2007 | 2013 |
+| 8 | 201 | 2004 | 2007 |
+| 9 | 206 | 2000 | 2000 |
+| 10 | 112 | 2011 | 2002 |
+| 11 | 209 | 2008 | 2004 |
+| 12 | 125 | 2015 | 2012 |
+| 13 | 980 | 2008 | 2005 |
+| 14 | 402 | 2010 | 2011 |
+| 15 | 391 | 2008 | 2009 |
+| 16 | 144 | 2015 | 2013 |
+| 17 | 213 | 2014 | 2007 |
+| 18 | 100 | 2001 | 2000 |
+| 19 | 145 | 2002 | 2004 |
+| 20 | 981 | 2011 | 2014 |
+| 21 | 210 | 2002 | 2007 |
+| 22 | 392 | 2010 | 2006 |
+| 23 | 393 | 2007 | 2013 |
+| 24 | 113 | 2010 | 2002 |
+| 25 | 255 | 2001 | 2008 |
```sql
SELECT id as to_renew
@@ -1081,16 +1099,12 @@ WHERE current_year - expiration_year > 6 OR current_year = expiration_year OR ex
ORDER by current_year-expiration_year DESC
```
-
-
## Wiederholung – Neue Spalten erstellen
### Challenge
-
-
> Verfügbare Tabellen und Spalten:
->
+>
> - `items`**:** `id`
Eine quartische Funktion ist definiert:
@@ -1121,8 +1135,4 @@ a*a*a
-- Potenz von 3
```
-
-
-
-
`select id , (3*id*id*id*id + 5*id*id*id + 0.9*id*id + 2.2 * id +1 )as quartic from items`
diff --git a/regex-cheatsheet.pdf b/regex-cheatsheet.pdf
new file mode 100644
index 0000000..34f785b
Binary files /dev/null and b/regex-cheatsheet.pdf differ
diff --git a/regular-expressions-cheat-sheet-v1.pdf b/regular-expressions-cheat-sheet-v1.pdf
new file mode 100644
index 0000000..a1ee284
Binary files /dev/null and b/regular-expressions-cheat-sheet-v1.pdf differ
diff --git a/regular-expressions-v2.pdf b/regular-expressions-v2.pdf
new file mode 100644
index 0000000..53cb1fa
--- /dev/null
+++ b/regular-expressions-v2.pdf
@@ -0,0 +1,32855 @@
+%PDF-1.7
+%€€€€
+1 0 obj
+ << /Length 2 0 R >>
+stream
+0.600000 0 0.075000 -0.110000 0.525000 1.015000 d1
+
+endstream
+endobj
+
+2 0 obj
+ 51
+endobj
+
+3 0 obj
+ << /Length 4 0 R >>
+stream
+0.758000 0 0.039000 -0.006000 0.724000 0.771000 d1
+
+endstream
+endobj
+
+4 0 obj
+ 51
+endobj
+
+5 0 obj
+ << /Length 6 0 R >>
+stream
+0.256000 0 0.052000 0.000000 0.204000 0.791000 d1
+
+endstream
+endobj
+
+6 0 obj
+ 50
+endobj
+
+7 0 obj
+ << /Length 8 0 R >>
+stream
+0.755000 0 0.075000 0.000000 0.716000 0.795000 d1
+
+endstream
+endobj
+
+8 0 obj
+ 50
+endobj
+
+9 0 obj
+ << /Length 10 0 R >>
+stream
+0.577000 0 0.045000 -0.006000 0.532000 0.573000 d1
+
+endstream
+endobj
+
+10 0 obj
+ 51
+endobj
+
+11 0 obj
+ << /Length 12 0 R >>
+stream
+0.616000 0 0.045000 -0.006000 0.538000 0.771000 d1
+
+endstream
+endobj
+
+12 0 obj
+ 51
+endobj
+
+13 0 obj
+ << /Length 14 0 R >>
+stream
+0.469000 0 0.032000 -0.006000 0.437000 0.560000 d1
+
+endstream
+endobj
+
+14 0 obj
+ 51
+endobj
+
+15 0 obj
+ << /Length 16 0 R >>
+stream
+0.369000 0 0.020000 -0.006000 0.337000 0.687000 d1
+
+endstream
+endobj
+
+16 0 obj
+ 51
+endobj
+
+17 0 obj
+ << /Length 18 0 R >>
+stream
+0.910000 0 0.068000 0.000000 0.850000 0.590000 d1
+
+endstream
+endobj
+
+18 0 obj
+ 50
+endobj
+
+19 0 obj
+ << /Length 20 0 R >>
+stream
+0.600000 0 0.040000 0.000000 0.560000 0.770000 d1
+
+endstream
+endobj
+
+20 0 obj
+ 50
+endobj
+
+21 0 obj
+ << /Length 22 0 R >>
+stream
+0.755000 0 0.075000 0.000000 0.716000 0.795000 d1
+
+endstream
+endobj
+
+22 0 obj
+ 50
+endobj
+
+23 0 obj
+ << /Length 24 0 R >>
+stream
+0.412000 0 0.068000 0.000000 0.398000 0.590000 d1
+
+endstream
+endobj
+
+24 0 obj
+ 50
+endobj
+
+25 0 obj
+ << /Length 26 0 R >>
+stream
+0.617000 0 0.071000 -0.204000 0.576000 0.797000 d1
+
+endstream
+endobj
+
+26 0 obj
+ 51
+endobj
+
+27 0 obj
+ << /Length 28 0 R >>
+stream
+0.270000 0 0.045000 0.000000 0.225000 0.796000 d1
+
+endstream
+endobj
+
+28 0 obj
+ 50
+endobj
+
+29 0 obj
+ << /Length 30 0 R >>
+stream
+0.471000 0 0.045000 -0.006000 0.420000 0.574000 d1
+
+endstream
+endobj
+
+30 0 obj
+ 51
+endobj
+
+31 0 obj
+ << /Length 32 0 R >>
+stream
+0.293000 0 0.000000 0.000000 0.293000 1.000000 d1
+
+endstream
+endobj
+
+32 0 obj
+ 50
+endobj
+
+33 0 obj
+ << /Length 34 0 R >>
+stream
+0.600000 0 0.070000 -0.010000 0.510000 0.810000 d1
+
+endstream
+endobj
+
+34 0 obj
+ 51
+endobj
+
+35 0 obj
+ << /Length 36 0 R >>
+stream
+0.625000 0 0.075000 0.000000 0.578000 0.795000 d1
+
+endstream
+endobj
+
+36 0 obj
+ 50
+endobj
+
+37 0 obj
+ << /Length 38 0 R >>
+stream
+0.591000 0 0.045000 -0.006000 0.546000 0.573000 d1
+
+endstream
+endobj
+
+38 0 obj
+ 51
+endobj
+
+39 0 obj
+ << /Length 40 0 R >>
+stream
+0.392000 0 0.019000 -0.006000 0.358000 0.688000 d1
+
+endstream
+endobj
+
+40 0 obj
+ 51
+endobj
+
+41 0 obj
+ << /Length 42 0 R >>
+stream
+0.600000 0 0.088000 -0.010000 0.512000 0.658000 d1
+
+endstream
+endobj
+
+42 0 obj
+ 51
+endobj
+
+43 0 obj
+ << /Length 44 0 R >>
+stream
+0.600000 0 0.088000 -0.010000 0.512000 0.658000 d1
+
+endstream
+endobj
+
+44 0 obj
+ 51
+endobj
+
+45 0 obj
+ << /Length 46 0 R >>
+stream
+0.251000 0 0.081000 0.000000 0.170000 0.801000 d1
+
+endstream
+endobj
+
+46 0 obj
+ 50
+endobj
+
+47 0 obj
+ << /Length 48 0 R >>
+stream
+0.600000 0 0.075000 -0.110000 0.525000 1.015000 d1
+
+endstream
+endobj
+
+48 0 obj
+ 51
+endobj
+
+49 0 obj
+ << /Length 50 0 R >>
+stream
+0.583000 0 0.074000 0.000000 0.516000 0.596000 d1
+
+endstream
+endobj
+
+50 0 obj
+ 50
+endobj
+
+51 0 obj
+ << /Length 52 0 R >>
+stream
+0.797000 0 0.025000 -0.046000 0.770000 0.798000 d1
+
+endstream
+endobj
+
+52 0 obj
+ 51
+endobj
+
+53 0 obj
+ << /Length 54 0 R >>
+stream
+0.617000 0 0.071000 -0.204000 0.576000 0.797000 d1
+
+endstream
+endobj
+
+54 0 obj
+ 51
+endobj
+
+55 0 obj
+ << /Length 56 0 R >>
+stream
+0.614000 0 0.041000 -0.006000 0.546000 0.569000 d1
+
+endstream
+endobj
+
+56 0 obj
+ 51
+endobj
+
+57 0 obj
+ << /Length 58 0 R >>
+stream
+0.570000 0 0.041000 -0.006000 0.535000 0.569000 d1
+
+endstream
+endobj
+
+58 0 obj
+ 51
+endobj
+
+59 0 obj
+ << /Length 60 0 R >>
+stream
+0.589000 0 0.047000 -0.006000 0.543000 0.575000 d1
+
+endstream
+endobj
+
+60 0 obj
+ 51
+endobj
+
+61 0 obj
+ << /Length 62 0 R >>
+stream
+0.564000 0 0.045000 -0.006000 0.525000 0.573000 d1
+
+endstream
+endobj
+
+62 0 obj
+ 51
+endobj
+
+63 0 obj
+ << /Length 64 0 R >>
+stream
+0.890000 0 0.077000 0.000000 0.820000 0.599000 d1
+
+endstream
+endobj
+
+64 0 obj
+ 50
+endobj
+
+65 0 obj
+ << /Length 66 0 R >>
+stream
+0.786000 0 0.008000 0.000000 0.778000 0.524000 d1
+
+endstream
+endobj
+
+66 0 obj
+ 50
+endobj
+
+67 0 obj
+ << /Length 68 0 R >>
+stream
+0.593000 0 0.041000 -0.006000 0.553000 0.569000 d1
+
+endstream
+endobj
+
+68 0 obj
+ 51
+endobj
+
+69 0 obj
+ << /Length 70 0 R >>
+stream
+0.368000 0 0.077000 0.000000 0.348000 0.599000 d1
+
+endstream
+endobj
+
+70 0 obj
+ 50
+endobj
+
+71 0 obj
+ << /Length 72 0 R >>
+stream
+0.589000 0 0.047000 -0.006000 0.543000 0.575000 d1
+
+endstream
+endobj
+
+72 0 obj
+ 51
+endobj
+
+73 0 obj
+ << /Length 74 0 R >>
+stream
+0.538000 0 0.081000 0.000000 0.535000 0.801000 d1
+
+endstream
+endobj
+
+74 0 obj
+ 50
+endobj
+
+75 0 obj
+ << /Length 76 0 R >>
+stream
+0.611000 0 0.047000 -0.006000 0.534000 0.575000 d1
+
+endstream
+endobj
+
+76 0 obj
+ 51
+endobj
+
+77 0 obj
+ << /Length 78 0 R >>
+stream
+0.580000 0 0.070000 -0.006000 0.503000 0.592000 d1
+
+endstream
+endobj
+
+78 0 obj
+ 51
+endobj
+
+79 0 obj
+ << /Length 80 0 R >>
+stream
+0.576000 0 0.041000 -0.006000 0.536000 0.569000 d1
+
+endstream
+endobj
+
+80 0 obj
+ 51
+endobj
+
+81 0 obj
+ << /Length 82 0 R >>
+stream
+0.615000 0 0.081000 -0.204000 0.569000 0.807000 d1
+
+endstream
+endobj
+
+82 0 obj
+ 51
+endobj
+
+83 0 obj
+ << /Length 84 0 R >>
+stream
+0.251000 0 0.081000 0.000000 0.170000 0.801000 d1
+
+endstream
+endobj
+
+84 0 obj
+ 50
+endobj
+
+85 0 obj
+ << /Length 86 0 R >>
+stream
+0.576000 0 0.041000 -0.006000 0.536000 0.569000 d1
+
+endstream
+endobj
+
+86 0 obj
+ 51
+endobj
+
+87 0 obj
+ << /Length 88 0 R >>
+stream
+0.579000 0 0.077000 0.000000 0.509000 0.599000 d1
+
+endstream
+endobj
+
+88 0 obj
+ 50
+endobj
+
+89 0 obj
+ << /Length 90 0 R >>
+stream
+0.600000 0 0.065000 -0.010000 0.510000 0.634000 d1
+
+endstream
+endobj
+
+90 0 obj
+ 51
+endobj
+
+91 0 obj
+ << /Length 92 0 R >>
+stream
+0.577000 0 0.047000 -0.006000 0.530000 0.575000 d1
+
+endstream
+endobj
+
+92 0 obj
+ 51
+endobj
+
+93 0 obj
+ << /Length 94 0 R >>
+stream
+0.251000 0 0.081000 0.000000 0.170000 0.801000 d1
+
+endstream
+endobj
+
+94 0 obj
+ 50
+endobj
+
+95 0 obj
+ << /Length 96 0 R >>
+stream
+0.775000 0 0.039000 -0.006000 0.731000 0.771000 d1
+
+endstream
+endobj
+
+96 0 obj
+ 51
+endobj
+
+97 0 obj
+ << /Length 98 0 R >>
+stream
+0.600000 0 0.040000 0.000000 0.550000 0.770000 d1
+
+endstream
+endobj
+
+98 0 obj
+ 50
+endobj
+
+99 0 obj
+ << /Length 100 0 R >>
+stream
+0.675000 0 0.070000 -0.006000 0.606000 0.796000 d1
+
+endstream
+endobj
+
+100 0 obj
+ 51
+endobj
+
+101 0 obj
+ << /Length 102 0 R >>
+stream
+0.560000 0 0.047000 -0.006000 0.520000 0.575000 d1
+
+endstream
+endobj
+
+102 0 obj
+ 51
+endobj
+
+103 0 obj
+ << /Length 104 0 R >>
+stream
+0.600000 0 0.070000 -0.010000 0.530000 0.820000 d1
+
+endstream
+endobj
+
+104 0 obj
+ 51
+endobj
+
+105 0 obj
+ << /Length 106 0 R >>
+stream
+0.551000 0 0.005000 0.000000 0.545000 0.521000 d1
+
+endstream
+endobj
+
+106 0 obj
+ 50
+endobj
+
+107 0 obj
+ << /Length 108 0 R >>
+stream
+0.291000 0 0.000000 0.000000 0.291000 1.000000 d1
+
+endstream
+endobj
+
+108 0 obj
+ 50
+endobj
+
+109 0 obj
+ << /Length 110 0 R >>
+stream
+0.589000 0 0.047000 -0.006000 0.543000 0.575000 d1
+
+endstream
+endobj
+
+110 0 obj
+ 51
+endobj
+
+111 0 obj
+ << /Length 112 0 R >>
+stream
+0.589000 0 0.068000 0.000000 0.529000 0.590000 d1
+
+endstream
+endobj
+
+112 0 obj
+ 50
+endobj
+
+113 0 obj
+ << /Length 114 0 R >>
+stream
+0.584000 0 0.081000 0.000000 0.514000 0.801000 d1
+
+endstream
+endobj
+
+114 0 obj
+ 50
+endobj
+
+115 0 obj
+ << /Length 116 0 R >>
+stream
+0.570000 0 0.071000 0.000000 0.565000 0.791000 d1
+
+endstream
+endobj
+
+116 0 obj
+ 50
+endobj
+
+117 0 obj
+ << /Length 118 0 R >>
+stream
+0.293000 0 0.000000 0.000000 0.293000 1.000000 d1
+
+endstream
+endobj
+
+118 0 obj
+ 50
+endobj
+
+119 0 obj
+ << /Length 120 0 R >>
+stream
+0.625000 0 0.075000 0.000000 0.578000 0.795000 d1
+
+endstream
+endobj
+
+120 0 obj
+ 50
+endobj
+
+121 0 obj
+ << /Length 122 0 R >>
+stream
+0.600000 0 0.066000 0.000000 0.534000 0.626000 d1
+
+endstream
+endobj
+
+122 0 obj
+ 50
+endobj
+
+123 0 obj
+ << /Length 124 0 R >>
+stream
+0.274000 0 0.071000 0.000000 0.204000 0.791000 d1
+
+endstream
+endobj
+
+124 0 obj
+ 50
+endobj
+
+125 0 obj
+ << /Length 126 0 R >>
+stream
+0.248000 0 0.056000 0.000000 0.192000 0.789000 d1
+
+endstream
+endobj
+
+126 0 obj
+ 50
+endobj
+
+127 0 obj
+ << /Length 128 0 R >>
+stream
+0.469000 0 0.032000 -0.006000 0.437000 0.560000 d1
+
+endstream
+endobj
+
+128 0 obj
+ 51
+endobj
+
+129 0 obj
+ << /Length 130 0 R >>
+stream
+0.577000 0 0.047000 -0.006000 0.530000 0.575000 d1
+
+endstream
+endobj
+
+130 0 obj
+ 51
+endobj
+
+131 0 obj
+ << /Length 132 0 R >>
+stream
+0.600000 0 0.080000 -0.010000 0.520000 0.830000 d1
+
+endstream
+endobj
+
+132 0 obj
+ 51
+endobj
+
+133 0 obj
+ << /Length 134 0 R >>
+stream
+0.600000 0 0.068000 -0.010000 0.532000 0.808000 d1
+
+endstream
+endobj
+
+134 0 obj
+ 51
+endobj
+
+135 0 obj
+ << /Length 136 0 R >>
+stream
+0.617000 0 0.071000 -0.204000 0.576000 0.797000 d1
+
+endstream
+endobj
+
+136 0 obj
+ 51
+endobj
+
+137 0 obj
+ << /Length 138 0 R >>
+stream
+0.890000 0 0.077000 0.000000 0.820000 0.599000 d1
+
+endstream
+endobj
+
+138 0 obj
+ 50
+endobj
+
+139 0 obj
+ << /Length 140 0 R >>
+stream
+0.600000 0 0.000000 0.000000 0.600000 1.000000 d1
+
+endstream
+endobj
+
+140 0 obj
+ 50
+endobj
+
+141 0 obj
+ << /Length 142 0 R >>
+stream
+0.589000 0 0.068000 0.000000 0.529000 0.590000 d1
+
+endstream
+endobj
+
+142 0 obj
+ 50
+endobj
+
+143 0 obj
+ << /Length 144 0 R >>
+stream
+0.614000 0 0.041000 -0.006000 0.546000 0.569000 d1
+
+endstream
+endobj
+
+144 0 obj
+ 51
+endobj
+
+145 0 obj
+ << /Length 146 0 R >>
+stream
+0.600000 0 0.080000 0.000000 0.550000 0.845000 d1
+
+endstream
+endobj
+
+146 0 obj
+ 50
+endobj
+
+147 0 obj
+ << /Length 148 0 R >>
+stream
+0.890000 0 0.077000 0.000000 0.820000 0.599000 d1
+
+endstream
+endobj
+
+148 0 obj
+ 50
+endobj
+
+149 0 obj
+ << /Length 150 0 R >>
+stream
+0.270000 0 0.045000 0.000000 0.225000 0.796000 d1
+
+endstream
+endobj
+
+150 0 obj
+ 50
+endobj
+
+151 0 obj
+ << /Length 152 0 R >>
+stream
+0.824000 0 0.008000 0.000000 0.816000 0.524000 d1
+
+endstream
+endobj
+
+152 0 obj
+ 50
+endobj
+
+153 0 obj
+ << /Length 154 0 R >>
+stream
+0.576000 0 0.041000 -0.006000 0.536000 0.767000 d1
+
+endstream
+endobj
+
+154 0 obj
+ 51
+endobj
+
+155 0 obj
+ << /Length 156 0 R >>
+stream
+0.600000 0 0.040000 0.000000 0.560000 0.770000 d1
+
+endstream
+endobj
+
+156 0 obj
+ 50
+endobj
+
+157 0 obj
+ << /Length 158 0 R >>
+stream
+0.274000 0 0.071000 0.000000 0.204000 0.791000 d1
+
+endstream
+endobj
+
+158 0 obj
+ 50
+endobj
+
+159 0 obj
+ << /Length 160 0 R >>
+stream
+0.471000 0 0.045000 -0.006000 0.420000 0.574000 d1
+
+endstream
+endobj
+
+160 0 obj
+ 51
+endobj
+
+161 0 obj
+ << /Length 162 0 R >>
+stream
+0.589000 0 0.060000 -0.006000 0.521000 0.582000 d1
+
+endstream
+endobj
+
+162 0 obj
+ 51
+endobj
+
+163 0 obj
+ << /Length 164 0 R >>
+stream
+0.580000 0 0.036000 -0.246000 0.504000 0.798000 d1
+
+endstream
+endobj
+
+164 0 obj
+ 51
+endobj
+
+165 0 obj
+ << /Length 166 0 R >>
+stream
+0.910000 0 0.068000 0.000000 0.850000 0.590000 d1
+
+endstream
+endobj
+
+166 0 obj
+ 50
+endobj
+
+167 0 obj
+ << /Length 168 0 R >>
+stream
+0.600000 0 0.085000 -0.010000 0.515000 0.825000 d1
+
+endstream
+endobj
+
+168 0 obj
+ 51
+endobj
+
+169 0 obj
+ << /Length 170 0 R >>
+stream
+0.819000 0 0.023000 -0.060000 0.786000 0.809000 d1
+
+endstream
+endobj
+
+170 0 obj
+ 51
+endobj
+
+171 0 obj
+ << /Length 172 0 R >>
+stream
+0.537000 0 0.075000 0.000000 0.518000 0.795000 d1
+
+endstream
+endobj
+
+172 0 obj
+ 50
+endobj
+
+173 0 obj
+ << /Length 174 0 R >>
+stream
+0.591000 0 0.071000 0.000000 0.532000 0.791000 d1
+
+endstream
+endobj
+
+174 0 obj
+ 50
+endobj
+
+175 0 obj
+ << /Length 176 0 R >>
+stream
+0.600000 0 0.090000 -0.010000 0.510000 0.650000 d1
+
+endstream
+endobj
+
+176 0 obj
+ 51
+endobj
+
+177 0 obj
+ << /Length 178 0 R >>
+stream
+0.274000 0 0.071000 0.000000 0.204000 0.791000 d1
+
+endstream
+endobj
+
+178 0 obj
+ 50
+endobj
+
+179 0 obj
+ << /Length 180 0 R >>
+stream
+0.630000 0 0.039000 -0.246000 0.562000 0.807000 d1
+
+endstream
+endobj
+
+180 0 obj
+ 51
+endobj
+
+181 0 obj
+ << /Length 182 0 R >>
+stream
+0.248000 0 0.056000 0.000000 0.192000 0.789000 d1
+
+endstream
+endobj
+
+182 0 obj
+ 50
+endobj
+
+183 0 obj
+ << /Length 184 0 R >>
+stream
+0.593000 0 0.041000 -0.006000 0.553000 0.569000 d1
+
+endstream
+endobj
+
+184 0 obj
+ 51
+endobj
+
+185 0 obj
+ << /Length 186 0 R >>
+stream
+0.630000 0 0.039000 -0.246000 0.562000 0.807000 d1
+
+endstream
+endobj
+
+186 0 obj
+ 51
+endobj
+
+187 0 obj
+ << /Length 188 0 R >>
+stream
+0.577000 0 0.047000 -0.006000 0.530000 0.575000 d1
+
+endstream
+endobj
+
+188 0 obj
+ 51
+endobj
+
+189 0 obj
+ << /Length 190 0 R >>
+stream
+0.392000 0 0.019000 -0.006000 0.358000 0.688000 d1
+
+endstream
+endobj
+
+190 0 obj
+ 51
+endobj
+
+191 0 obj
+ << /Length 192 0 R >>
+stream
+0.611000 0 0.047000 -0.006000 0.534000 0.575000 d1
+
+endstream
+endobj
+
+192 0 obj
+ 51
+endobj
+
+193 0 obj
+ << /Length 194 0 R >>
+stream
+0.600000 0 0.088000 -0.180000 0.507000 0.828000 d1
+
+endstream
+endobj
+
+194 0 obj
+ 51
+endobj
+
+195 0 obj
+ << /Length 196 0 R >>
+stream
+0.584000 0 0.081000 0.000000 0.514000 0.801000 d1
+
+endstream
+endobj
+
+196 0 obj
+ 50
+endobj
+
+197 0 obj
+ << /Length 198 0 R >>
+stream
+0.251000 0 0.081000 0.000000 0.170000 0.801000 d1
+
+endstream
+endobj
+
+198 0 obj
+ 50
+endobj
+
+199 0 obj
+ << /Length 200 0 R >>
+stream
+0.910000 0 0.068000 0.000000 0.850000 0.590000 d1
+
+endstream
+endobj
+
+200 0 obj
+ 50
+endobj
+
+201 0 obj
+ << /Length 202 0 R >>
+stream
+0.589000 0 0.068000 0.000000 0.529000 0.590000 d1
+
+endstream
+endobj
+
+202 0 obj
+ 50
+endobj
+
+203 0 obj
+ << /Length 204 0 R >>
+stream
+0.355000 0 0.033000 0.236000 0.322000 0.158000 d1
+
+endstream
+endobj
+
+204 0 obj
+ 50
+endobj
+
+205 0 obj
+ << /Length 206 0 R >>
+stream
+0.293000 0 0.000000 0.000000 0.293000 1.000000 d1
+
+endstream
+endobj
+
+206 0 obj
+ 50
+endobj
+
+207 0 obj
+ << /Length 208 0 R >>
+stream
+0.593000 0 0.041000 -0.006000 0.553000 0.569000 d1
+
+endstream
+endobj
+
+208 0 obj
+ 51
+endobj
+
+209 0 obj
+ << /Length 210 0 R >>
+stream
+0.910000 0 0.068000 0.000000 0.850000 0.590000 d1
+
+endstream
+endobj
+
+210 0 obj
+ 50
+endobj
+
+211 0 obj
+ << /Length 212 0 R >>
+stream
+0.274000 0 0.071000 0.000000 0.204000 0.791000 d1
+
+endstream
+endobj
+
+212 0 obj
+ 50
+endobj
+
+213 0 obj
+ << /Length 214 0 R >>
+stream
+0.293000 0 0.000000 0.000000 0.293000 1.000000 d1
+
+endstream
+endobj
+
+214 0 obj
+ 50
+endobj
+
+215 0 obj
+ << /Length 216 0 R >>
+stream
+0.570000 0 0.041000 -0.006000 0.535000 0.569000 d1
+
+endstream
+endobj
+
+216 0 obj
+ 51
+endobj
+
+217 0 obj
+ << /Length 218 0 R >>
+stream
+0.274000 0 0.071000 0.000000 0.204000 0.791000 d1
+
+endstream
+endobj
+
+218 0 obj
+ 50
+endobj
+
+219 0 obj
+ << /Length 220 0 R >>
+stream
+0.620000 0 0.046000 -0.246000 0.544000 0.814000 d1
+
+endstream
+endobj
+
+220 0 obj
+ 51
+endobj
+
+221 0 obj
+ << /Length 222 0 R >>
+stream
+0.611000 0 0.047000 -0.006000 0.534000 0.575000 d1
+
+endstream
+endobj
+
+222 0 obj
+ 51
+endobj
+
+223 0 obj
+ << /Length 224 0 R >>
+stream
+0.471000 0 0.045000 -0.006000 0.420000 0.574000 d1
+
+endstream
+endobj
+
+224 0 obj
+ 51
+endobj
+
+225 0 obj
+ << /Length 226 0 R >>
+stream
+0.469000 0 0.032000 -0.006000 0.437000 0.560000 d1
+
+endstream
+endobj
+
+226 0 obj
+ 51
+endobj
+
+227 0 obj
+ << /Length 228 0 R >>
+stream
+0.630000 0 0.039000 -0.246000 0.562000 0.807000 d1
+
+endstream
+endobj
+
+228 0 obj
+ 51
+endobj
+
+229 0 obj
+ << /Length 230 0 R >>
+stream
+0.576000 0 0.041000 -0.006000 0.536000 0.569000 d1
+
+endstream
+endobj
+
+230 0 obj
+ 51
+endobj
+
+231 0 obj
+ << /Length 232 0 R >>
+stream
+0.576000 0 0.041000 -0.006000 0.536000 0.569000 d1
+
+endstream
+endobj
+
+232 0 obj
+ 51
+endobj
+
+233 0 obj
+ << /Length 234 0 R >>
+stream
+0.551000 0 0.005000 0.000000 0.545000 0.521000 d1
+
+endstream
+endobj
+
+234 0 obj
+ 50
+endobj
+
+235 0 obj
+ << /Length 236 0 R >>
+stream
+0.620000 0 0.046000 -0.246000 0.544000 0.814000 d1
+
+endstream
+endobj
+
+236 0 obj
+ 51
+endobj
+
+237 0 obj
+ << /Length 238 0 R >>
+stream
+0.256000 0 0.084000 0.000000 0.172000 0.804000 d1
+
+endstream
+endobj
+
+238 0 obj
+ 50
+endobj
+
+239 0 obj
+ << /Length 240 0 R >>
+stream
+0.246000 0 0.052000 -0.006000 0.194000 0.194000 d1
+
+endstream
+endobj
+
+240 0 obj
+ 51
+endobj
+
+241 0 obj
+ << /Length 242 0 R >>
+stream
+0.579000 0 0.077000 0.000000 0.509000 0.599000 d1
+
+endstream
+endobj
+
+242 0 obj
+ 50
+endobj
+
+243 0 obj
+ << /Length 244 0 R >>
+stream
+0.600000 0 0.111000 0.000000 0.534000 0.671000 d1
+
+endstream
+endobj
+
+244 0 obj
+ 50
+endobj
+
+245 0 obj
+ << /Length 246 0 R >>
+stream
+0.591000 0 0.071000 0.000000 0.532000 0.791000 d1
+
+endstream
+endobj
+
+246 0 obj
+ 50
+endobj
+
+247 0 obj
+ << /Length 248 0 R >>
+stream
+0.538000 0 0.081000 0.000000 0.535000 0.801000 d1
+
+endstream
+endobj
+
+248 0 obj
+ 50
+endobj
+
+249 0 obj
+ << /Length 250 0 R >>
+stream
+0.274000 0 0.071000 0.000000 0.204000 0.791000 d1
+
+endstream
+endobj
+
+250 0 obj
+ 50
+endobj
+
+251 0 obj
+ << /Length 252 0 R >>
+stream
+0.248000 0 0.056000 0.000000 0.192000 0.789000 d1
+
+endstream
+endobj
+
+252 0 obj
+ 50
+endobj
+
+253 0 obj
+ << /Length 254 0 R >>
+stream
+0.620000 0 0.046000 -0.246000 0.544000 0.814000 d1
+
+endstream
+endobj
+
+254 0 obj
+ 51
+endobj
+
+255 0 obj
+ << /Length 256 0 R >>
+stream
+0.615000 0 0.081000 -0.204000 0.569000 0.807000 d1
+
+endstream
+endobj
+
+256 0 obj
+ 51
+endobj
+
+257 0 obj
+ << /Length 258 0 R >>
+stream
+0.369000 0 0.020000 -0.006000 0.337000 0.687000 d1
+
+endstream
+endobj
+
+258 0 obj
+ 51
+endobj
+
+259 0 obj
+ << /Length 260 0 R >>
+stream
+0.560000 0 0.047000 -0.006000 0.520000 0.575000 d1
+
+endstream
+endobj
+
+260 0 obj
+ 51
+endobj
+
+261 0 obj
+ << /Length 262 0 R >>
+stream
+0.593000 0 0.041000 -0.006000 0.553000 0.569000 d1
+
+endstream
+endobj
+
+262 0 obj
+ 51
+endobj
+
+263 0 obj
+ << /Length 264 0 R >>
+stream
+0.615000 0 0.081000 -0.006000 0.569000 0.807000 d1
+
+endstream
+endobj
+
+264 0 obj
+ 51
+endobj
+
+265 0 obj
+ << /Length 266 0 R >>
+stream
+0.551000 0 0.005000 0.000000 0.545000 0.521000 d1
+
+endstream
+endobj
+
+266 0 obj
+ 50
+endobj
+
+267 0 obj
+ << /Length 268 0 R >>
+stream
+0.517000 0 0.007000 0.000000 0.510000 0.523000 d1
+
+endstream
+endobj
+
+268 0 obj
+ 50
+endobj
+
+269 0 obj
+ << /Length 270 0 R >>
+stream
+0.364000 0 0.029000 0.000000 0.341000 0.755000 d1
+
+endstream
+endobj
+
+270 0 obj
+ 50
+endobj
+
+271 0 obj
+ << /Length 272 0 R >>
+stream
+0.589000 0 0.068000 0.000000 0.529000 0.590000 d1
+
+endstream
+endobj
+
+272 0 obj
+ 50
+endobj
+
+273 0 obj
+ << /Length 274 0 R >>
+stream
+0.412000 0 0.068000 0.000000 0.398000 0.590000 d1
+
+endstream
+endobj
+
+274 0 obj
+ 50
+endobj
+
+275 0 obj
+ << /Length 276 0 R >>
+stream
+0.368000 0 0.077000 0.000000 0.348000 0.599000 d1
+
+endstream
+endobj
+
+276 0 obj
+ 50
+endobj
+
+277 0 obj
+ << /Length 278 0 R >>
+stream
+0.537000 0 0.075000 0.000000 0.518000 0.795000 d1
+
+endstream
+endobj
+
+278 0 obj
+ 50
+endobj
+
+279 0 obj
+ << /Length 280 0 R >>
+stream
+0.392000 0 0.019000 -0.006000 0.358000 0.688000 d1
+
+endstream
+endobj
+
+280 0 obj
+ 51
+endobj
+
+281 0 obj
+ << /Length 282 0 R >>
+stream
+0.270000 0 0.045000 0.000000 0.225000 0.796000 d1
+
+endstream
+endobj
+
+282 0 obj
+ 50
+endobj
+
+283 0 obj
+ << /Length 284 0 R >>
+stream
+0.620000 0 0.075000 0.000000 0.597000 0.795000 d1
+
+endstream
+endobj
+
+284 0 obj
+ 50
+endobj
+
+285 0 obj
+ << /Length 286 0 R >>
+stream
+0.694000 0 0.011000 0.000000 0.683000 0.731000 d1
+
+endstream
+endobj
+
+286 0 obj
+ 50
+endobj
+
+287 0 obj
+ << /Length 288 0 R >>
+stream
+0.758000 0 0.039000 -0.006000 0.724000 0.771000 d1
+
+endstream
+endobj
+
+288 0 obj
+ 51
+endobj
+
+289 0 obj
+ << /Length 290 0 R >>
+stream
+0.807000 0 0.039000 -0.006000 0.768000 0.771000 d1
+
+endstream
+endobj
+
+290 0 obj
+ 51
+endobj
+
+291 0 obj
+ << /Length 292 0 R >>
+stream
+0.593000 0 0.041000 -0.006000 0.553000 0.569000 d1
+
+endstream
+endobj
+
+292 0 obj
+ 51
+endobj
+
+293 0 obj
+ << /Length 294 0 R >>
+stream
+0.276000 0 0.046000 -0.006000 0.231000 0.543000 d1
+
+endstream
+endobj
+
+294 0 obj
+ 51
+endobj
+
+295 0 obj
+ << /Length 296 0 R >>
+stream
+0.615000 0 0.047000 -0.006000 0.534000 0.773000 d1
+
+endstream
+endobj
+
+296 0 obj
+ 51
+endobj
+
+297 0 obj
+ << /Length 298 0 R >>
+stream
+0.616000 0 0.047000 -0.204000 0.534000 0.773000 d1
+
+endstream
+endobj
+
+298 0 obj
+ 51
+endobj
+
+299 0 obj
+ << /Length 300 0 R >>
+stream
+0.276000 0 0.046000 -0.006000 0.231000 0.231000 d1
+
+endstream
+endobj
+
+300 0 obj
+ 51
+endobj
+
+301 0 obj
+ << /Length 302 0 R >>
+stream
+0.614000 0 0.041000 -0.006000 0.546000 0.569000 d1
+
+endstream
+endobj
+
+302 0 obj
+ 51
+endobj
+
+303 0 obj
+ << /Length 304 0 R >>
+stream
+0.617000 0 0.041000 -0.006000 0.546000 0.767000 d1
+
+endstream
+endobj
+
+304 0 obj
+ 51
+endobj
+
+305 0 obj
+ << /Length 306 0 R >>
+stream
+0.291000 0 0.000000 0.000000 0.291000 1.000000 d1
+
+endstream
+endobj
+
+306 0 obj
+ 50
+endobj
+
+307 0 obj
+ << /Length 308 0 R >>
+stream
+0.291000 0 0.000000 0.000000 0.291000 1.000000 d1
+
+endstream
+endobj
+
+308 0 obj
+ 50
+endobj
+
+309 0 obj
+ << /Length 310 0 R >>
+stream
+0.293000 0 0.000000 0.000000 0.293000 1.000000 d1
+
+endstream
+endobj
+
+310 0 obj
+ 50
+endobj
+
+311 0 obj
+ << /Length 312 0 R >>
+stream
+0.270000 0 0.045000 0.000000 0.225000 0.796000 d1
+
+endstream
+endobj
+
+312 0 obj
+ 50
+endobj
+
+313 0 obj
+ << /Length 314 0 R >>
+stream
+0.552000 0 0.012000 0.000000 0.541000 0.732000 d1
+
+endstream
+endobj
+
+314 0 obj
+ 50
+endobj
+
+315 0 obj
+ << /Length 316 0 R >>
+stream
+0.270000 0 0.045000 0.000000 0.225000 0.796000 d1
+
+endstream
+endobj
+
+316 0 obj
+ 50
+endobj
+
+317 0 obj
+ << /Length 318 0 R >>
+stream
+0.576000 0 0.041000 -0.006000 0.536000 0.569000 d1
+
+endstream
+endobj
+
+318 0 obj
+ 51
+endobj
+
+319 0 obj
+ << /Length 320 0 R >>
+stream
+0.758000 0 0.039000 -0.006000 0.724000 0.771000 d1
+
+endstream
+endobj
+
+320 0 obj
+ 51
+endobj
+
+321 0 obj
+ << /Length 322 0 R >>
+stream
+0.469000 0 0.032000 -0.006000 0.437000 0.560000 d1
+
+endstream
+endobj
+
+322 0 obj
+ 51
+endobj
+
+323 0 obj
+ << /Length 324 0 R >>
+stream
+0.412000 0 0.068000 0.000000 0.398000 0.590000 d1
+
+endstream
+endobj
+
+324 0 obj
+ 50
+endobj
+
+325 0 obj
+ << /Length 326 0 R >>
+stream
+0.392000 0 0.019000 -0.006000 0.358000 0.688000 d1
+
+endstream
+endobj
+
+326 0 obj
+ 51
+endobj
+
+327 0 obj
+ << /Length 328 0 R >>
+stream
+0.755000 0 0.075000 0.000000 0.716000 0.795000 d1
+
+endstream
+endobj
+
+328 0 obj
+ 50
+endobj
+
+329 0 obj
+ << /Length 330 0 R >>
+stream
+0.580000 0 0.041000 -0.006000 0.552000 0.773000 d1
+
+endstream
+endobj
+
+330 0 obj
+ 51
+endobj
+
+331 0 obj
+ << /Length 332 0 R >>
+stream
+0.910000 0 0.068000 0.000000 0.850000 0.590000 d1
+
+endstream
+endobj
+
+332 0 obj
+ 50
+endobj
+
+333 0 obj
+ << /Length 334 0 R >>
+stream
+0.593000 0 0.041000 -0.006000 0.553000 0.569000 d1
+
+endstream
+endobj
+
+334 0 obj
+ 51
+endobj
+
+335 0 obj
+ << /Length 336 0 R >>
+stream
+0.276000 0 0.046000 -0.006000 0.231000 0.231000 d1
+
+endstream
+endobj
+
+336 0 obj
+ 51
+endobj
+
+337 0 obj
+ << /Length 338 0 R >>
+stream
+0.614000 0 0.041000 -0.006000 0.546000 0.569000 d1
+
+endstream
+endobj
+
+338 0 obj
+ 51
+endobj
+
+339 0 obj
+ << /Length 340 0 R >>
+stream
+0.614000 0 0.041000 -0.006000 0.546000 0.569000 d1
+
+endstream
+endobj
+
+340 0 obj
+ 51
+endobj
+
+341 0 obj
+ << /Length 342 0 R >>
+stream
+0.614000 0 0.041000 -0.006000 0.546000 0.569000 d1
+
+endstream
+endobj
+
+342 0 obj
+ 51
+endobj
+
+343 0 obj
+ << /Length 344 0 R >>
+stream
+0.469000 0 0.032000 -0.006000 0.437000 0.560000 d1
+
+endstream
+endobj
+
+344 0 obj
+ 51
+endobj
+
+345 0 obj
+ << /Length 346 0 R >>
+stream
+0.617000 0 0.071000 -0.204000 0.576000 0.797000 d1
+
+endstream
+endobj
+
+346 0 obj
+ 51
+endobj
+
+347 0 obj
+ << /Length 348 0 R >>
+stream
+0.412000 0 0.068000 0.000000 0.398000 0.590000 d1
+
+endstream
+endobj
+
+348 0 obj
+ 50
+endobj
+
+349 0 obj
+ << /Length 350 0 R >>
+stream
+0.625000 0 0.075000 0.000000 0.603000 0.795000 d1
+
+endstream
+endobj
+
+350 0 obj
+ 50
+endobj
+
+351 0 obj
+ << /Length 352 0 R >>
+stream
+0.614000 0 0.041000 -0.006000 0.546000 0.569000 d1
+
+endstream
+endobj
+
+352 0 obj
+ 51
+endobj
+
+353 0 obj
+ << /Length 354 0 R >>
+stream
+0.824000 0 0.008000 0.000000 0.816000 0.524000 d1
+
+endstream
+endobj
+
+354 0 obj
+ 50
+endobj
+
+355 0 obj
+ << /Length 356 0 R >>
+stream
+0.614000 0 0.041000 -0.006000 0.546000 0.569000 d1
+
+endstream
+endobj
+
+356 0 obj
+ 51
+endobj
+
+357 0 obj
+ << /Length 358 0 R >>
+stream
+0.589000 0 0.060000 -0.006000 0.521000 0.582000 d1
+
+endstream
+endobj
+
+358 0 obj
+ 51
+endobj
+
+359 0 obj
+ << /Length 360 0 R >>
+stream
+0.392000 0 0.019000 -0.006000 0.358000 0.688000 d1
+
+endstream
+endobj
+
+360 0 obj
+ 51
+endobj
+
+361 0 obj
+ << /Length 362 0 R >>
+stream
+0.617000 0 0.071000 -0.204000 0.576000 0.797000 d1
+
+endstream
+endobj
+
+362 0 obj
+ 51
+endobj
+
+363 0 obj
+ << /Length 364 0 R >>
+stream
+0.392000 0 0.019000 -0.006000 0.358000 0.688000 d1
+
+endstream
+endobj
+
+364 0 obj
+ 51
+endobj
+
+365 0 obj
+ << /Length 366 0 R >>
+stream
+0.617000 0 0.071000 -0.204000 0.576000 0.797000 d1
+
+endstream
+endobj
+
+366 0 obj
+ 51
+endobj
+
+367 0 obj
+ << /Length 368 0 R >>
+stream
+0.589000 0 0.068000 0.000000 0.529000 0.590000 d1
+
+endstream
+endobj
+
+368 0 obj
+ 50
+endobj
+
+369 0 obj
+ << /Length 370 0 R >>
+stream
+0.570000 0 0.041000 -0.006000 0.535000 0.569000 d1
+
+endstream
+endobj
+
+370 0 obj
+ 51
+endobj
+
+371 0 obj
+ << /Filter /FlateDecode
+ /Length 372 0 R
+ >>
+stream
+x�ÙËjÛ@Æñ½ŸBËvQ¬ûB@rbÈ¢š¾€k+©¡–�â,òö=3ß¡¥�üãEKã|¶Gs~猊–«»›»iN–ßæãö~<'ûi7�OÇçy;&?ÇÇý´Èòd·ßžý§ø÷ö°9-–öæû—§óx¸›Ž‹««dùÝ~ùtž_’ëýãaóífýq‘$Éòë¼çýôøúõûçÓé÷x§s’.®¯“Ýø`ûysú²9ŒÉ²ÿ4|Zý{ñÇËiLl1ös¦Õl�»ñé´ÙŽófzWiz�\×׋qÚ½ú�¿ãçÃö×födšÖeÌú«¯3™2ere:ÊÊÜR¦T¦¢L¥Œ®Ï_}�©c¦ÂÏi”i)Óz&Oó6MÓž²�²+Êô1Ó4”b†÷i¥Ì@™›˜iRÊÜÆL�k^ÇL“C&“£†er”Óz2wDÖ2wDµÍÜísæŽ2ÊȺÎä¨Á5ËQS\à(“#ô�ÉQMv3wtC9*pírTÔ”qG¸f9*h͆#dp¿s9Âúçîˆj›»#ÚŸ\ŽÐ~.GØ÷¹;"�¹x]rTPåîgu�µ\ŽlÛ!#G
®Kޏnrt‹õwGX79ªWï\›m’ra(çžÈAឨ~ÖD!SÒ^òÄy½´fŒªI!Oؓ֌1ƒ×垨&…½_Yz¿&î k"O8w÷„ß%OxvYÁB×Sº#:·K9Â3¹”#<“K9ÂÚ–rd;Í{]Ê’Å!ã–È@é–¨¥,Ù(€Œ[ÂõÈQƒ×%Cö•�‘!®ë†J7DuÜݳUnˆú±rCt]•ñz.0d7Ð!ƒ½QÉöaå~èµñ�Ás¦’ì±J~Œ,dä{Ìô˜Áër?Ô•ü ÕJ~Ða-?¸Ï¶��©é^ÍŠ3´‡vÑ!ƒ÷=öŸÆ÷3òƒg™-6dИ5DÈðçÈ�ÝB@Æý�±Z~¬]!#?6ª!#?v4BÆýൻ2fM2Vþ·36b†¾Ë¾$dr;Æñ·¢+GâŒYé #Cv¼BF†l ㆨöÖ¤!c£2n¿K†ø»dÈZ
22d¥ƒŒ¡ÅÆ
ÑLldÈJûv¦•!+ddˆ3òcÇ&däÇAÆýÐoÝ®G~8#?v[÷ƒkv?4ËZ÷C÷
+û¡3£•!�‘œ›ü`/·òƒ3¨“ÎÈ®¹“ÜÃî?�ü`uòƒ}ѹê÷N~p;ù±‘÷ƒ{è~¨¿:÷Cž;ù±±ùÁY×É�ã�‘»½};ÓËα^~pöòƒýÞ_à§—Üç^~8#?X‹^~°î½üpF~ÐXï~pŸåç|ï~0#?Ø_½ü`Ÿöòƒ™A~pfòƒóg�œ™ƒü`¿òƒý5¸r8¸ªéà~hfòóÿgÿŠOºÂçøDjû<Ïö°*>‹�¤Âèý4þ}bv:žÂ»ÂŸ?g~6ï
+endstream
+endobj
+
+372 0 obj
+ 1109
+endobj
+
+373 0 obj
+ [ 0.616000 0.564000 0.256000 0.583000 0.577000 0.591000 0.675000 0.600000 0.600000 0.600000 0.786000 0.579000 0.538000 0.615000 0.251000 0.368000 0.369000 0.291000 0.560000 0.577000 0.620000 0.611000 0.248000 0.471000 0.471000 0.589000 0.584000 0.890000 0.600000 0.600000 0.600000 0.600000 0.600000 0.600000 0.600000 0.600000 0.600000 0.600000 0.600000 0.600000 0.600000 0.600000 0.600000 0.600000 0.270000 0.576000 0.614000 0.274000 0.274000 0.910000 0.630000 0.797000 0.819000 0.248000 0.577000 0.589000 0.620000 0.611000 0.251000 0.251000 0.890000 0.469000 0.591000 0.392000 0.910000 0.589000 0.617000 0.274000 0.593000 0.293000 0.625000 0.614000 0.570000 0.355000 0.576000 0.551000 0.256000 0.910000 0.591000 0.617000 0.538000 0.620000 0.580000 0.615000 0.589000 0.369000 0.471000 0.615000 0.580000 0.579000 0.775000 0.251000 0.560000 0.611000 0.517000 0.890000 0.469000 0.364000 0.589000 0.412000 0.368000 0.248000 0.392000 0.270000 0.246000 0.577000 0.620000 0.758000 0.276000 0.615000 0.616000 0.614000 0.617000 0.291000 0.291000 0.293000 0.584000 0.694000 0.593000 0.576000 0.552000 0.593000 0.576000 0.570000 0.617000 0.758000 0.824000 0.412000 0.392000 0.392000 0.807000 0.469000 0.274000 0.755000 0.755000 0.537000 0.580000 0.270000 0.570000 0.910000 0.589000 0.276000 0.293000 0.614000 0.614000 0.589000 0.270000 0.469000 0.617000 0.412000 0.625000 0.293000 0.589000 0.614000 0.593000 0.274000 0.551000 0.576000 0.630000 0.625000 0.824000 0.758000 0.755000 0.469000 0.593000 0.593000 0.274000 0.614000 0.614000 0.589000 0.630000 0.392000 0.392000 0.412000 0.617000 0.617000 0.910000 0.589000 0.276000 0.293000 0.551000 0.570000 0.576000 0.270000 0.537000 ]
+endobj
+
+374 0 obj
+ << /CharProcs << /C4 9 0 R
+ /C96 13 0 R
+ /C0 11 0 R
+ /C13 81 0 R
+ /C95 63 0 R
+ /C28 33 0 R
+ /C150 35 0 R
+ /C16 15 0 R
+ /C176 17 0 R
+ /C40 131 0 R
+ /C125 3 0 R
+ /C9 1 0 R
+ /C33 43 0 R
+ /C2 5 0 R
+ /C162 7 0 R
+ /C86 29 0 R
+ /C151 31 0 R
+ /C91 45 0 R
+ /C124 135 0 R
+ /C29 133 0 R
+ /C133 21 0 R
+ /C7 19 0 R
+ /C173 23 0 R
+ /C146 27 0 R
+ /C79 25 0 R
+ /C37 47 0 R
+ /C3 49 0 R
+ /C32 145 0 R
+ /C27 147 0 R
+ /C46 143 0 R
+ /C66 53 0 R
+ /C51 51 0 R
+ /C1 61 0 R
+ /C55 59 0 R
+ /C71 55 0 R
+ /C123 57 0 R
+ /C5 37 0 R
+ /C129 39 0 R
+ /C30 41 0 R
+ /C10 65 0 R
+ /C121 67 0 R
+ /C84 71 0 R
+ /C15 69 0 R
+ /C12 73 0 R
+ /C21 75 0 R
+ /C88 77 0 R
+ /C182 79 0 R
+ /C11 87 0 R
+ /C157 85 0 R
+ /C14 83 0 R
+ /C34 89 0 R
+ /C19 91 0 R
+ /C59 93 0 R
+ /C90 95 0 R
+ /C41 97 0 R
+ /C6 99 0 R
+ /C18 101 0 R
+ /C17 107 0 R
+ /C31 103 0 R
+ /C156 105 0 R
+ /C25 109 0 R
+ /C145 111 0 R
+ /C70 119 0 R
+ /C26 113 0 R
+ /C138 115 0 R
+ /C142 117 0 R
+ /C22 125 0 R
+ /C61 127 0 R
+ /C105 129 0 R
+ /C35 121 0 R
+ /C132 123 0 R
+ /C60 137 0 R
+ /C140 141 0 R
+ /C42 139 0 R
+ /C44 149 0 R
+ /C126 151 0 R
+ /C82 163 0 R
+ /C45 153 0 R
+ /C155 157 0 R
+ /C8 155 0 R
+ /C152 161 0 R
+ /C23 159 0 R
+ /C49 165 0 R
+ /C39 167 0 R
+ /C52 169 0 R
+ /C135 171 0 R
+ /C62 173 0 R
+ /C43 175 0 R
+ /C67 177 0 R
+ /C50 179 0 R
+ /C53 181 0 R
+ /C118 183 0 R
+ /C158 185 0 R
+ /C54 187 0 R
+ /C63 189 0 R
+ /C57 191 0 R
+ /C38 193 0 R
+ /C116 195 0 R
+ /C58 197 0 R
+ /C64 199 0 R
+ /C65 201 0 R
+ /C73 203 0 R
+ /C179 205 0 R
+ /C68 207 0 R
+ /C77 209 0 R
+ /C166 211 0 R
+ /C69 213 0 R
+ /C72 215 0 R
+ /C47 217 0 R
+ /C20 219 0 R
+ /C93 221 0 R
+ /C24 223 0 R
+ /C131 225 0 R
+ /C170 227 0 R
+ /C74 229 0 R
+ /C119 231 0 R
+ /C75 233 0 R
+ /C56 235 0 R
+ /C76 237 0 R
+ /C104 239 0 R
+ /C89 241 0 R
+ /C36 243 0 R
+ /C78 245 0 R
+ /C80 247 0 R
+ /C48 249 0 R
+ /C101 251 0 R
+ /C81 253 0 R
+ /C83 255 0 R
+ /C85 257 0 R
+ /C92 259 0 R
+ /C154 261 0 R
+ /C87 263 0 R
+ /C180 265 0 R
+ /C94 267 0 R
+ /C97 269 0 R
+ /C98 271 0 R
+ /C99 273 0 R
+ /C100 275 0 R
+ /C184 277 0 R
+ /C102 279 0 R
+ /C103 281 0 R
+ /C106 283 0 R
+ /C117 285 0 R
+ /C107 287 0 R
+ /C130 289 0 R
+ /C165 291 0 R
+ /C108 293 0 R
+ /C109 295 0 R
+ /C110 297 0 R
+ /C178 299 0 R
+ /C111 301 0 R
+ /C112 303 0 R
+ /C113 305 0 R
+ /C114 307 0 R
+ /C115 309 0 R
+ /C183 311 0 R
+ /C120 313 0 R
+ /C137 315 0 R
+ /C122 317 0 R
+ /C161 319 0 R
+ /C163 321 0 R
+ /C127 323 0 R
+ /C128 325 0 R
+ /C134 327 0 R
+ /C136 329 0 R
+ /C139 331 0 R
+ /C164 333 0 R
+ /C141 335 0 R
+ /C168 337 0 R
+ /C143 339 0 R
+ /C144 341 0 R
+ /C147 343 0 R
+ /C148 345 0 R
+ /C149 347 0 R
+ /C159 349 0 R
+ /C153 351 0 R
+ /C160 353 0 R
+ /C167 355 0 R
+ /C169 357 0 R
+ /C171 359 0 R
+ /C174 361 0 R
+ /C172 363 0 R
+ /C175 365 0 R
+ /C177 367 0 R
+ /C181 369 0 R
+ >>
+ /Encoding << /Type /Encoding
+ /Differences [ 0 /C0 /C1 /C2 /C3 /C4 /C5 /C6 /C7 /C8 /C9 /C10 /C11 /C12 /C13 /C14 /C15 /C16 /C17 /C18 /C19 /C20 /C21 /C22 /C23 /C24 /C25 /C26 /C27 /C28 /C29 /C30 /C31 /C32 /C33 /C34 /C35 /C36 /C37 /C38 /C39 /C40 /C41 /C42 /C43 /C44 /C45 /C46 /C47 /C48 /C49 /C50 /C51 /C52 /C53 /C54 /C55 /C56 /C57 /C58 /C59 /C60 /C61 /C62 /C63 /C64 /C65 /C66 /C67 /C68 /C69 /C70 /C71 /C72 /C73 /C74 /C75 /C76 /C77 /C78 /C79 /C80 /C81 /C82 /C83 /C84 /C85 /C86 /C87 /C88 /C89 /C90 /C91 /C92 /C93 /C94 /C95 /C96 /C97 /C98 /C99 /C100 /C101 /C102 /C103 /C104 /C105 /C106 /C107 /C108 /C109 /C110 /C111 /C112 /C113 /C114 /C115 /C116 /C117 /C118 /C119 /C120 /C121 /C122 /C123 /C124 /C125 /C126 /C127 /C128 /C129 /C130 /C131 /C132 /C133 /C134 /C135 /C136 /C137 /C138 /C139 /C140 /C141 /C142 /C143 /C144 /C145 /C146 /C147 /C148 /C149 /C150 /C151 /C152 /C153 /C154 /C155 /C156 /C157 /C158 /C159 /C160 /C161 /C162 /C163 /C164 /C165 /C166 /C167 /C168 /C169 /C170 /C171 /C172 /C173 /C174 /C175 /C176 /C177 /C178 /C179 /C180 /C181 /C182 /C183 /C184 ]
+ >>
+ /FontBBox [ 0.000000 0.000000 0.000000 0.000000 ]
+ /FontMatrix [ 1.000000 0.000000 0.000000 1.000000 0.000000 0.000000 ]
+ /Type /Font
+ /ToUnicode 371 0 R
+ /FirstChar 0
+ /LastChar 184
+ /Widths 373 0 R
+ /Resources << >>
+ /Subtype /Type3
+ /FontDescriptor << /Type /FontDescriptor
+ /Flags 32
+ /FontBBox [ 0.000000 0.000000 0.000000 0.000000 ]
+ /ItalicAngle 0
+ >>
+ >>
+endobj
+
+375 0 obj
+ << /Length 376 0 R >>
+stream
+0.600000 0 0.085000 -0.010000 0.515000 0.655000 d1
+
+endstream
+endobj
+
+376 0 obj
+ 51
+endobj
+
+377 0 obj
+ << /Length 378 0 R >>
+stream
+0.600000 0 0.092000 -0.180000 0.512000 0.832000 d1
+
+endstream
+endobj
+
+378 0 obj
+ 51
+endobj
+
+379 0 obj
+ << /Length 380 0 R >>
+stream
+0.600000 0 0.080000 0.000000 0.550000 0.845000 d1
+
+endstream
+endobj
+
+380 0 obj
+ 50
+endobj
+
+381 0 obj
+ << /Length 382 0 R >>
+stream
+0.580000 0 0.041000 -0.006000 0.552000 0.773000 d1
+
+endstream
+endobj
+
+382 0 obj
+ 51
+endobj
+
+383 0 obj
+ << /Length 384 0 R >>
+stream
+0.600000 0 0.135000 -0.005000 0.490000 0.870000 d1
+
+endstream
+endobj
+
+384 0 obj
+ 51
+endobj
+
+385 0 obj
+ << /Length 386 0 R >>
+stream
+0.256000 0 0.052000 0.000000 0.204000 0.791000 d1
+
+endstream
+endobj
+
+386 0 obj
+ 50
+endobj
+
+387 0 obj
+ << /Length 388 0 R >>
+stream
+0.600000 0 0.185000 -0.125000 0.485000 1.155000 d1
+
+endstream
+endobj
+
+388 0 obj
+ 51
+endobj
+
+389 0 obj
+ << /Length 390 0 R >>
+stream
+0.584000 0 0.081000 0.000000 0.514000 0.801000 d1
+
+endstream
+endobj
+
+390 0 obj
+ 50
+endobj
+
+391 0 obj
+ << /Length 392 0 R >>
+stream
+0.564000 0 0.045000 -0.006000 0.525000 0.573000 d1
+
+endstream
+endobj
+
+392 0 obj
+ 51
+endobj
+
+393 0 obj
+ << /Length 394 0 R >>
+stream
+0.611000 0 0.047000 -0.006000 0.534000 0.575000 d1
+
+endstream
+endobj
+
+394 0 obj
+ 51
+endobj
+
+395 0 obj
+ << /Length 396 0 R >>
+stream
+0.580000 0 0.070000 -0.006000 0.503000 0.592000 d1
+
+endstream
+endobj
+
+396 0 obj
+ 51
+endobj
+
+397 0 obj
+ << /Length 398 0 R >>
+stream
+0.611000 0 0.047000 -0.006000 0.534000 0.575000 d1
+
+endstream
+endobj
+
+398 0 obj
+ 51
+endobj
+
+399 0 obj
+ << /Length 400 0 R >>
+stream
+0.251000 0 0.081000 0.000000 0.170000 0.801000 d1
+
+endstream
+endobj
+
+400 0 obj
+ 50
+endobj
+
+401 0 obj
+ << /Length 402 0 R >>
+stream
+0.251000 0 0.081000 0.000000 0.170000 0.801000 d1
+
+endstream
+endobj
+
+402 0 obj
+ 50
+endobj
+
+403 0 obj
+ << /Length 404 0 R >>
+stream
+0.600000 0 0.088000 -0.010000 0.508000 0.828000 d1
+
+endstream
+endobj
+
+404 0 obj
+ 51
+endobj
+
+405 0 obj
+ << /Length 406 0 R >>
+stream
+0.600000 0 0.115000 -0.125000 0.415000 1.085000 d1
+
+endstream
+endobj
+
+406 0 obj
+ 51
+endobj
+
+407 0 obj
+ << /Length 408 0 R >>
+stream
+0.589000 0 0.068000 0.000000 0.529000 0.590000 d1
+
+endstream
+endobj
+
+408 0 obj
+ 50
+endobj
+
+409 0 obj
+ << /Length 410 0 R >>
+stream
+0.600000 0 0.092000 0.000000 0.510000 0.652000 d1
+
+endstream
+endobj
+
+410 0 obj
+ 50
+endobj
+
+411 0 obj
+ << /Length 412 0 R >>
+stream
+0.600000 0 0.111000 0.000000 0.534000 0.671000 d1
+
+endstream
+endobj
+
+412 0 obj
+ 50
+endobj
+
+413 0 obj
+ << /Length 414 0 R >>
+stream
+0.577000 0 0.047000 -0.006000 0.530000 0.575000 d1
+
+endstream
+endobj
+
+414 0 obj
+ 51
+endobj
+
+415 0 obj
+ << /Length 416 0 R >>
+stream
+0.570000 0 0.041000 -0.006000 0.535000 0.569000 d1
+
+endstream
+endobj
+
+416 0 obj
+ 51
+endobj
+
+417 0 obj
+ << /Length 418 0 R >>
+stream
+0.625000 0 0.075000 0.000000 0.578000 0.795000 d1
+
+endstream
+endobj
+
+418 0 obj
+ 50
+endobj
+
+419 0 obj
+ << /Length 420 0 R >>
+stream
+0.551000 0 0.005000 0.000000 0.545000 0.521000 d1
+
+endstream
+endobj
+
+420 0 obj
+ 50
+endobj
+
+421 0 obj
+ << /Length 422 0 R >>
+stream
+0.579000 0 0.077000 0.000000 0.509000 0.599000 d1
+
+endstream
+endobj
+
+422 0 obj
+ 50
+endobj
+
+423 0 obj
+ << /Length 424 0 R >>
+stream
+0.538000 0 0.081000 0.000000 0.535000 0.801000 d1
+
+endstream
+endobj
+
+424 0 obj
+ 50
+endobj
+
+425 0 obj
+ << /Length 426 0 R >>
+stream
+0.617000 0 0.071000 -0.204000 0.576000 0.797000 d1
+
+endstream
+endobj
+
+426 0 obj
+ 51
+endobj
+
+427 0 obj
+ << /Length 428 0 R >>
+stream
+0.600000 0 0.085000 0.290000 0.515000 0.165000 d1
+
+endstream
+endobj
+
+428 0 obj
+ 50
+endobj
+
+429 0 obj
+ << /Length 430 0 R >>
+stream
+0.600000 0 0.115000 -0.125000 0.415000 1.085000 d1
+
+endstream
+endobj
+
+430 0 obj
+ 51
+endobj
+
+431 0 obj
+ << /Length 432 0 R >>
+stream
+0.538000 0 0.081000 0.000000 0.535000 0.801000 d1
+
+endstream
+endobj
+
+432 0 obj
+ 50
+endobj
+
+433 0 obj
+ << /Length 434 0 R >>
+stream
+0.600000 0 0.085000 0.065000 0.515000 0.615000 d1
+
+endstream
+endobj
+
+434 0 obj
+ 50
+endobj
+
+435 0 obj
+ << /Length 436 0 R >>
+stream
+0.600000 0 0.066000 0.000000 0.534000 0.626000 d1
+
+endstream
+endobj
+
+436 0 obj
+ 50
+endobj
+
+437 0 obj
+ << /Length 438 0 R >>
+stream
+0.617000 0 0.041000 -0.006000 0.546000 0.767000 d1
+
+endstream
+endobj
+
+438 0 obj
+ 51
+endobj
+
+439 0 obj
+ << /Length 440 0 R >>
+stream
+0.377000 0 0.020000 -0.006000 0.344000 0.688000 d1
+
+endstream
+endobj
+
+440 0 obj
+ 51
+endobj
+
+441 0 obj
+ << /Length 442 0 R >>
+stream
+0.600000 0 0.065000 -0.010000 0.510000 0.634000 d1
+
+endstream
+endobj
+
+442 0 obj
+ 51
+endobj
+
+443 0 obj
+ << /Length 444 0 R >>
+stream
+0.600000 0 0.185000 -0.125000 0.485000 1.155000 d1
+
+endstream
+endobj
+
+444 0 obj
+ 51
+endobj
+
+445 0 obj
+ << /Length 446 0 R >>
+stream
+0.471000 0 0.045000 -0.006000 0.420000 0.574000 d1
+
+endstream
+endobj
+
+446 0 obj
+ 51
+endobj
+
+447 0 obj
+ << /Length 448 0 R >>
+stream
+0.615000 0 0.081000 -0.006000 0.569000 0.807000 d1
+
+endstream
+endobj
+
+448 0 obj
+ 51
+endobj
+
+449 0 obj
+ << /Length 450 0 R >>
+stream
+0.369000 0 0.020000 -0.006000 0.337000 0.687000 d1
+
+endstream
+endobj
+
+450 0 obj
+ 51
+endobj
+
+451 0 obj
+ << /Length 452 0 R >>
+stream
+0.471000 0 0.045000 -0.006000 0.420000 0.574000 d1
+
+endstream
+endobj
+
+452 0 obj
+ 51
+endobj
+
+453 0 obj
+ << /Length 454 0 R >>
+stream
+0.617000 0 0.041000 -0.006000 0.546000 0.767000 d1
+
+endstream
+endobj
+
+454 0 obj
+ 51
+endobj
+
+455 0 obj
+ << /Length 456 0 R >>
+stream
+0.368000 0 0.077000 0.000000 0.348000 0.599000 d1
+
+endstream
+endobj
+
+456 0 obj
+ 50
+endobj
+
+457 0 obj
+ << /Length 458 0 R >>
+stream
+0.600000 0 0.080000 0.000000 0.550000 0.845000 d1
+
+endstream
+endobj
+
+458 0 obj
+ 50
+endobj
+
+459 0 obj
+ << /Length 460 0 R >>
+stream
+0.577000 0 0.047000 -0.006000 0.530000 0.575000 d1
+
+endstream
+endobj
+
+460 0 obj
+ 51
+endobj
+
+461 0 obj
+ << /Length 462 0 R >>
+stream
+0.600000 0 0.000000 0.000000 0.600000 1.000000 d1
+
+endstream
+endobj
+
+462 0 obj
+ 50
+endobj
+
+463 0 obj
+ << /Length 464 0 R >>
+stream
+0.904000 0 0.084000 0.000000 0.820000 0.804000 d1
+
+endstream
+endobj
+
+464 0 obj
+ 50
+endobj
+
+465 0 obj
+ << /Length 466 0 R >>
+stream
+0.600000 0 0.080000 0.340000 0.520000 0.470000 d1
+
+endstream
+endobj
+
+466 0 obj
+ 50
+endobj
+
+467 0 obj
+ << /Length 468 0 R >>
+stream
+0.611000 0 0.047000 -0.006000 0.534000 0.575000 d1
+
+endstream
+endobj
+
+468 0 obj
+ 51
+endobj
+
+469 0 obj
+ << /Length 470 0 R >>
+stream
+0.576000 0 0.041000 -0.006000 0.536000 0.569000 d1
+
+endstream
+endobj
+
+470 0 obj
+ 51
+endobj
+
+471 0 obj
+ << /Length 472 0 R >>
+stream
+0.469000 0 0.032000 -0.006000 0.437000 0.560000 d1
+
+endstream
+endobj
+
+472 0 obj
+ 51
+endobj
+
+473 0 obj
+ << /Length 474 0 R >>
+stream
+0.364000 0 0.029000 0.000000 0.341000 0.755000 d1
+
+endstream
+endobj
+
+474 0 obj
+ 50
+endobj
+
+475 0 obj
+ << /Length 476 0 R >>
+stream
+0.471000 0 0.045000 -0.006000 0.420000 0.574000 d1
+
+endstream
+endobj
+
+476 0 obj
+ 51
+endobj
+
+477 0 obj
+ << /Length 478 0 R >>
+stream
+0.589000 0 0.068000 0.000000 0.529000 0.590000 d1
+
+endstream
+endobj
+
+478 0 obj
+ 50
+endobj
+
+479 0 obj
+ << /Length 480 0 R >>
+stream
+0.615000 0 0.081000 -0.006000 0.569000 0.807000 d1
+
+endstream
+endobj
+
+480 0 obj
+ 51
+endobj
+
+481 0 obj
+ << /Length 482 0 R >>
+stream
+0.368000 0 0.077000 0.000000 0.348000 0.599000 d1
+
+endstream
+endobj
+
+482 0 obj
+ 50
+endobj
+
+483 0 obj
+ << /Length 484 0 R >>
+stream
+0.810000 0 0.046000 -0.006000 0.764000 0.778000 d1
+
+endstream
+endobj
+
+484 0 obj
+ 51
+endobj
+
+485 0 obj
+ << /Length 486 0 R >>
+stream
+0.910000 0 0.068000 0.000000 0.850000 0.590000 d1
+
+endstream
+endobj
+
+486 0 obj
+ 50
+endobj
+
+487 0 obj
+ << /Length 488 0 R >>
+stream
+0.364000 0 0.029000 0.000000 0.341000 0.755000 d1
+
+endstream
+endobj
+
+488 0 obj
+ 50
+endobj
+
+489 0 obj
+ << /Length 490 0 R >>
+stream
+0.251000 0 0.081000 0.000000 0.170000 0.801000 d1
+
+endstream
+endobj
+
+490 0 obj
+ 50
+endobj
+
+491 0 obj
+ << /Length 492 0 R >>
+stream
+0.584000 0 0.081000 0.000000 0.514000 0.801000 d1
+
+endstream
+endobj
+
+492 0 obj
+ 50
+endobj
+
+493 0 obj
+ << /Length 494 0 R >>
+stream
+0.615000 0 0.047000 -0.006000 0.534000 0.773000 d1
+
+endstream
+endobj
+
+494 0 obj
+ 51
+endobj
+
+495 0 obj
+ << /Length 496 0 R >>
+stream
+0.368000 0 0.077000 0.000000 0.348000 0.599000 d1
+
+endstream
+endobj
+
+496 0 obj
+ 50
+endobj
+
+497 0 obj
+ << /Length 498 0 R >>
+stream
+0.611000 0 0.047000 -0.006000 0.534000 0.575000 d1
+
+endstream
+endobj
+
+498 0 obj
+ 51
+endobj
+
+499 0 obj
+ << /Length 500 0 R >>
+stream
+0.579000 0 0.077000 0.000000 0.509000 0.599000 d1
+
+endstream
+endobj
+
+500 0 obj
+ 50
+endobj
+
+501 0 obj
+ << /Length 502 0 R >>
+stream
+0.324000 0 0.034000 -0.198000 0.324000 1.076000 d1
+
+endstream
+endobj
+
+502 0 obj
+ 51
+endobj
+
+503 0 obj
+ << /Length 504 0 R >>
+stream
+0.615000 0 0.047000 -0.006000 0.534000 0.773000 d1
+
+endstream
+endobj
+
+504 0 obj
+ 51
+endobj
+
+505 0 obj
+ << /Length 506 0 R >>
+stream
+0.600000 0 0.085000 0.170000 0.515000 0.405000 d1
+
+endstream
+endobj
+
+506 0 obj
+ 50
+endobj
+
+507 0 obj
+ << /Length 508 0 R >>
+stream
+0.600000 0 0.100000 0.000000 0.520000 0.830000 d1
+
+endstream
+endobj
+
+508 0 obj
+ 50
+endobj
+
+509 0 obj
+ << /Length 510 0 R >>
+stream
+0.248000 0 0.056000 0.000000 0.192000 0.789000 d1
+
+endstream
+endobj
+
+510 0 obj
+ 50
+endobj
+
+511 0 obj
+ << /Length 512 0 R >>
+stream
+0.600000 0 0.080000 0.000000 0.550000 0.845000 d1
+
+endstream
+endobj
+
+512 0 obj
+ 50
+endobj
+
+513 0 obj
+ << /Length 514 0 R >>
+stream
+0.600000 0 0.115000 -0.125000 0.415000 1.085000 d1
+
+endstream
+endobj
+
+514 0 obj
+ 51
+endobj
+
+515 0 obj
+ << /Length 516 0 R >>
+stream
+0.369000 0 0.020000 -0.006000 0.337000 0.687000 d1
+
+endstream
+endobj
+
+516 0 obj
+ 51
+endobj
+
+517 0 obj
+ << /Length 518 0 R >>
+stream
+0.251000 0 0.081000 0.000000 0.170000 0.801000 d1
+
+endstream
+endobj
+
+518 0 obj
+ 50
+endobj
+
+519 0 obj
+ << /Length 520 0 R >>
+stream
+0.579000 0 0.077000 0.000000 0.509000 0.599000 d1
+
+endstream
+endobj
+
+520 0 obj
+ 50
+endobj
+
+521 0 obj
+ << /Length 522 0 R >>
+stream
+0.600000 0 0.115000 -0.125000 0.415000 1.085000 d1
+
+endstream
+endobj
+
+522 0 obj
+ 51
+endobj
+
+523 0 obj
+ << /Length 524 0 R >>
+stream
+0.615000 0 0.081000 -0.204000 0.569000 0.807000 d1
+
+endstream
+endobj
+
+524 0 obj
+ 51
+endobj
+
+525 0 obj
+ << /Length 526 0 R >>
+stream
+0.291000 0 0.000000 0.000000 0.291000 1.000000 d1
+
+endstream
+endobj
+
+526 0 obj
+ 50
+endobj
+
+527 0 obj
+ << /Length 528 0 R >>
+stream
+0.579000 0 0.077000 0.000000 0.509000 0.599000 d1
+
+endstream
+endobj
+
+528 0 obj
+ 50
+endobj
+
+529 0 obj
+ << /Length 530 0 R >>
+stream
+0.617000 0 0.071000 -0.204000 0.576000 0.797000 d1
+
+endstream
+endobj
+
+530 0 obj
+ 51
+endobj
+
+531 0 obj
+ << /Length 532 0 R >>
+stream
+0.471000 0 0.045000 -0.006000 0.420000 0.574000 d1
+
+endstream
+endobj
+
+532 0 obj
+ 51
+endobj
+
+533 0 obj
+ << /Length 534 0 R >>
+stream
+0.614000 0 0.041000 -0.006000 0.546000 0.569000 d1
+
+endstream
+endobj
+
+534 0 obj
+ 51
+endobj
+
+535 0 obj
+ << /Length 536 0 R >>
+stream
+0.369000 0 0.020000 -0.006000 0.337000 0.687000 d1
+
+endstream
+endobj
+
+536 0 obj
+ 51
+endobj
+
+537 0 obj
+ << /Length 538 0 R >>
+stream
+0.579000 0 0.077000 0.000000 0.509000 0.599000 d1
+
+endstream
+endobj
+
+538 0 obj
+ 50
+endobj
+
+539 0 obj
+ << /Length 540 0 R >>
+stream
+0.615000 0 0.047000 -0.006000 0.534000 0.773000 d1
+
+endstream
+endobj
+
+540 0 obj
+ 51
+endobj
+
+541 0 obj
+ << /Length 542 0 R >>
+stream
+0.614000 0 0.041000 -0.006000 0.546000 0.569000 d1
+
+endstream
+endobj
+
+542 0 obj
+ 51
+endobj
+
+543 0 obj
+ << /Length 544 0 R >>
+stream
+0.246000 0 0.052000 -0.006000 0.194000 0.194000 d1
+
+endstream
+endobj
+
+544 0 obj
+ 51
+endobj
+
+545 0 obj
+ << /Length 546 0 R >>
+stream
+0.600000 0 0.080000 -0.180000 0.526000 1.000000 d1
+
+endstream
+endobj
+
+546 0 obj
+ 51
+endobj
+
+547 0 obj
+ << /Length 548 0 R >>
+stream
+0.611000 0 0.047000 -0.006000 0.534000 0.575000 d1
+
+endstream
+endobj
+
+548 0 obj
+ 51
+endobj
+
+549 0 obj
+ << /Length 550 0 R >>
+stream
+0.544000 0 0.007000 0.000000 0.538000 0.727000 d1
+
+endstream
+endobj
+
+550 0 obj
+ 50
+endobj
+
+551 0 obj
+ << /Length 552 0 R >>
+stream
+0.274000 0 0.071000 0.000000 0.204000 0.791000 d1
+
+endstream
+endobj
+
+552 0 obj
+ 50
+endobj
+
+553 0 obj
+ << /Length 554 0 R >>
+stream
+0.576000 0 0.041000 -0.006000 0.536000 0.569000 d1
+
+endstream
+endobj
+
+554 0 obj
+ 51
+endobj
+
+555 0 obj
+ << /Length 556 0 R >>
+stream
+0.614000 0 0.041000 -0.006000 0.546000 0.569000 d1
+
+endstream
+endobj
+
+556 0 obj
+ 51
+endobj
+
+557 0 obj
+ << /Length 558 0 R >>
+stream
+0.591000 0 0.071000 0.000000 0.532000 0.791000 d1
+
+endstream
+endobj
+
+558 0 obj
+ 50
+endobj
+
+559 0 obj
+ << /Length 560 0 R >>
+stream
+0.593000 0 0.041000 -0.006000 0.553000 0.569000 d1
+
+endstream
+endobj
+
+560 0 obj
+ 51
+endobj
+
+561 0 obj
+ << /Length 562 0 R >>
+stream
+0.293000 0 0.000000 0.000000 0.293000 1.000000 d1
+
+endstream
+endobj
+
+562 0 obj
+ 50
+endobj
+
+563 0 obj
+ << /Length 564 0 R >>
+stream
+0.616000 0 0.045000 -0.006000 0.538000 0.771000 d1
+
+endstream
+endobj
+
+564 0 obj
+ 51
+endobj
+
+565 0 obj
+ << /Length 566 0 R >>
+stream
+0.600000 0 0.115000 -0.125000 0.415000 1.085000 d1
+
+endstream
+endobj
+
+566 0 obj
+ 51
+endobj
+
+567 0 obj
+ << /Length 568 0 R >>
+stream
+0.600000 0 0.092000 0.000000 0.510000 0.822000 d1
+
+endstream
+endobj
+
+568 0 obj
+ 50
+endobj
+
+569 0 obj
+ << /Length 570 0 R >>
+stream
+0.387000 0 0.027000 0.000000 0.365000 0.753000 d1
+
+endstream
+endobj
+
+570 0 obj
+ 50
+endobj
+
+571 0 obj
+ << /Length 572 0 R >>
+stream
+0.570000 0 0.041000 -0.006000 0.535000 0.569000 d1
+
+endstream
+endobj
+
+572 0 obj
+ 51
+endobj
+
+573 0 obj
+ << /Length 574 0 R >>
+stream
+0.591000 0 0.071000 0.000000 0.532000 0.791000 d1
+
+endstream
+endobj
+
+574 0 obj
+ 50
+endobj
+
+575 0 obj
+ << /Length 576 0 R >>
+stream
+0.470000 0 0.041000 -0.006000 0.426000 0.570000 d1
+
+endstream
+endobj
+
+576 0 obj
+ 51
+endobj
+
+577 0 obj
+ << /Length 578 0 R >>
+stream
+0.600000 0 0.092000 0.000000 0.510000 0.652000 d1
+
+endstream
+endobj
+
+578 0 obj
+ 50
+endobj
+
+579 0 obj
+ << /Length 580 0 R >>
+stream
+0.355000 0 0.033000 0.236000 0.322000 0.158000 d1
+
+endstream
+endobj
+
+580 0 obj
+ 50
+endobj
+
+581 0 obj
+ << /Length 582 0 R >>
+stream
+0.372000 0 0.029000 0.000000 0.349000 0.755000 d1
+
+endstream
+endobj
+
+582 0 obj
+ 50
+endobj
+
+583 0 obj
+ << /Length 584 0 R >>
+stream
+0.615000 0 0.081000 -0.204000 0.569000 0.807000 d1
+
+endstream
+endobj
+
+584 0 obj
+ 51
+endobj
+
+585 0 obj
+ << /Length 586 0 R >>
+stream
+0.364000 0 0.029000 0.000000 0.341000 0.755000 d1
+
+endstream
+endobj
+
+586 0 obj
+ 50
+endobj
+
+587 0 obj
+ << /Length 588 0 R >>
+stream
+0.368000 0 0.077000 0.000000 0.348000 0.599000 d1
+
+endstream
+endobj
+
+588 0 obj
+ 50
+endobj
+
+589 0 obj
+ << /Length 590 0 R >>
+stream
+0.600000 0 0.215000 -0.010000 0.385000 0.375000 d1
+
+endstream
+endobj
+
+590 0 obj
+ 51
+endobj
+
+591 0 obj
+ << /Length 592 0 R >>
+stream
+0.248000 0 0.056000 0.000000 0.192000 0.789000 d1
+
+endstream
+endobj
+
+592 0 obj
+ 50
+endobj
+
+593 0 obj
+ << /Length 594 0 R >>
+stream
+0.248000 0 0.056000 0.000000 0.192000 0.789000 d1
+
+endstream
+endobj
+
+594 0 obj
+ 50
+endobj
+
+595 0 obj
+ << /Length 596 0 R >>
+stream
+0.438000 0 0.042000 0.472000 0.381000 0.296000 d1
+
+endstream
+endobj
+
+596 0 obj
+ 50
+endobj
+
+597 0 obj
+ << /Length 598 0 R >>
+stream
+0.600000 0 0.111000 0.000000 0.534000 0.671000 d1
+
+endstream
+endobj
+
+598 0 obj
+ 50
+endobj
+
+599 0 obj
+ << /Length 600 0 R >>
+stream
+0.274000 0 0.071000 0.000000 0.204000 0.791000 d1
+
+endstream
+endobj
+
+600 0 obj
+ 50
+endobj
+
+601 0 obj
+ << /Length 602 0 R >>
+stream
+0.577000 0 0.047000 -0.006000 0.530000 0.575000 d1
+
+endstream
+endobj
+
+602 0 obj
+ 51
+endobj
+
+603 0 obj
+ << /Length 604 0 R >>
+stream
+0.583000 0 0.074000 0.000000 0.516000 0.596000 d1
+
+endstream
+endobj
+
+604 0 obj
+ 50
+endobj
+
+605 0 obj
+ << /Length 606 0 R >>
+stream
+0.615000 0 0.081000 -0.006000 0.569000 0.807000 d1
+
+endstream
+endobj
+
+606 0 obj
+ 51
+endobj
+
+607 0 obj
+ << /Length 608 0 R >>
+stream
+0.577000 0 0.047000 -0.006000 0.530000 0.575000 d1
+
+endstream
+endobj
+
+608 0 obj
+ 51
+endobj
+
+609 0 obj
+ << /Length 610 0 R >>
+stream
+0.259000 0 0.077000 0.000000 0.182000 0.797000 d1
+
+endstream
+endobj
+
+610 0 obj
+ 50
+endobj
+
+611 0 obj
+ << /Length 612 0 R >>
+stream
+0.521000 0 0.013000 0.000000 0.508000 0.733000 d1
+
+endstream
+endobj
+
+612 0 obj
+ 50
+endobj
+
+613 0 obj
+ << /Length 614 0 R >>
+stream
+0.600000 0 0.085000 -0.010000 0.515000 0.655000 d1
+
+endstream
+endobj
+
+614 0 obj
+ 51
+endobj
+
+615 0 obj
+ << /Length 616 0 R >>
+stream
+0.369000 0 0.020000 -0.006000 0.337000 0.687000 d1
+
+endstream
+endobj
+
+616 0 obj
+ 51
+endobj
+
+617 0 obj
+ << /Length 618 0 R >>
+stream
+0.270000 0 0.045000 0.000000 0.225000 0.796000 d1
+
+endstream
+endobj
+
+618 0 obj
+ 50
+endobj
+
+619 0 obj
+ << /Length 620 0 R >>
+stream
+0.291000 0 0.000000 0.000000 0.291000 1.000000 d1
+
+endstream
+endobj
+
+620 0 obj
+ 50
+endobj
+
+621 0 obj
+ << /Length 622 0 R >>
+stream
+0.576000 0 0.041000 -0.006000 0.536000 0.569000 d1
+
+endstream
+endobj
+
+622 0 obj
+ 51
+endobj
+
+623 0 obj
+ << /Length 624 0 R >>
+stream
+0.612000 0 0.045000 -0.006000 0.538000 0.573000 d1
+
+endstream
+endobj
+
+624 0 obj
+ 51
+endobj
+
+625 0 obj
+ << /Length 626 0 R >>
+stream
+0.890000 0 0.077000 0.000000 0.820000 0.599000 d1
+
+endstream
+endobj
+
+626 0 obj
+ 50
+endobj
+
+627 0 obj
+ << /Length 628 0 R >>
+stream
+0.600000 0 0.055000 0.000000 0.545000 0.605000 d1
+
+endstream
+endobj
+
+628 0 obj
+ 50
+endobj
+
+629 0 obj
+ << /Length 630 0 R >>
+stream
+0.577000 0 0.045000 -0.006000 0.532000 0.573000 d1
+
+endstream
+endobj
+
+630 0 obj
+ 51
+endobj
+
+631 0 obj
+ << /Length 632 0 R >>
+stream
+0.248000 0 0.056000 0.000000 0.192000 0.789000 d1
+
+endstream
+endobj
+
+632 0 obj
+ 50
+endobj
+
+633 0 obj
+ << /Length 634 0 R >>
+stream
+0.600000 0 0.115000 -0.125000 0.415000 1.085000 d1
+
+endstream
+endobj
+
+634 0 obj
+ 51
+endobj
+
+635 0 obj
+ << /Length 636 0 R >>
+stream
+0.600000 0 0.055000 0.000000 0.520000 0.755000 d1
+
+endstream
+endobj
+
+636 0 obj
+ 50
+endobj
+
+637 0 obj
+ << /Length 638 0 R >>
+stream
+0.897000 0 0.074000 0.000000 0.830000 0.596000 d1
+
+endstream
+endobj
+
+638 0 obj
+ 50
+endobj
+
+639 0 obj
+ << /Length 640 0 R >>
+stream
+0.383000 0 0.074000 0.000000 0.365000 0.596000 d1
+
+endstream
+endobj
+
+640 0 obj
+ 50
+endobj
+
+641 0 obj
+ << /Length 642 0 R >>
+stream
+0.600000 0 0.115000 -0.125000 0.415000 1.085000 d1
+
+endstream
+endobj
+
+642 0 obj
+ 51
+endobj
+
+643 0 obj
+ << /Length 644 0 R >>
+stream
+0.600000 0 0.100000 0.000000 0.520000 0.830000 d1
+
+endstream
+endobj
+
+644 0 obj
+ 50
+endobj
+
+645 0 obj
+ << /Length 646 0 R >>
+stream
+0.527000 0 0.081000 0.000000 0.509000 0.801000 d1
+
+endstream
+endobj
+
+646 0 obj
+ 50
+endobj
+
+647 0 obj
+ << /Length 648 0 R >>
+stream
+0.563000 0 0.034000 -0.006000 0.527000 0.745000 d1
+
+endstream
+endobj
+
+648 0 obj
+ 51
+endobj
+
+649 0 obj
+ << /Length 650 0 R >>
+stream
+0.617000 0 0.071000 -0.204000 0.576000 0.797000 d1
+
+endstream
+endobj
+
+650 0 obj
+ 51
+endobj
+
+651 0 obj
+ << /Length 652 0 R >>
+stream
+0.600000 0 0.185000 -0.125000 0.485000 1.155000 d1
+
+endstream
+endobj
+
+652 0 obj
+ 51
+endobj
+
+653 0 obj
+ << /Length 654 0 R >>
+stream
+0.600000 0 0.075000 -0.110000 0.525000 1.015000 d1
+
+endstream
+endobj
+
+654 0 obj
+ 51
+endobj
+
+655 0 obj
+ << /Length 656 0 R >>
+stream
+0.591000 0 0.045000 -0.006000 0.546000 0.573000 d1
+
+endstream
+endobj
+
+656 0 obj
+ 51
+endobj
+
+657 0 obj
+ << /Length 658 0 R >>
+stream
+0.600000 0 0.135000 -0.005000 0.490000 0.870000 d1
+
+endstream
+endobj
+
+658 0 obj
+ 51
+endobj
+
+659 0 obj
+ << /Length 660 0 R >>
+stream
+0.617000 0 0.041000 -0.006000 0.546000 0.767000 d1
+
+endstream
+endobj
+
+660 0 obj
+ 51
+endobj
+
+661 0 obj
+ << /Length 662 0 R >>
+stream
+0.366000 0 0.028000 0.588000 0.339000 0.160000 d1
+
+endstream
+endobj
+
+662 0 obj
+ 50
+endobj
+
+663 0 obj
+ << /Length 664 0 R >>
+stream
+0.325000 0 0.001000 -0.197000 0.290000 1.043000 d1
+
+endstream
+endobj
+
+664 0 obj
+ 51
+endobj
+
+665 0 obj
+ << /Length 666 0 R >>
+stream
+0.251000 0 0.081000 0.000000 0.170000 0.801000 d1
+
+endstream
+endobj
+
+666 0 obj
+ 50
+endobj
+
+667 0 obj
+ << /Length 668 0 R >>
+stream
+0.615000 0 0.047000 -0.006000 0.534000 0.773000 d1
+
+endstream
+endobj
+
+668 0 obj
+ 51
+endobj
+
+669 0 obj
+ << /Length 670 0 R >>
+stream
+0.589000 0 0.047000 -0.006000 0.543000 0.575000 d1
+
+endstream
+endobj
+
+670 0 obj
+ 51
+endobj
+
+671 0 obj
+ << /Length 672 0 R >>
+stream
+0.620000 0 0.046000 -0.246000 0.544000 0.814000 d1
+
+endstream
+endobj
+
+672 0 obj
+ 51
+endobj
+
+673 0 obj
+ << /Length 674 0 R >>
+stream
+0.554000 0 0.041000 -0.092000 0.514000 0.944000 d1
+
+endstream
+endobj
+
+674 0 obj
+ 51
+endobj
+
+675 0 obj
+ << /Length 676 0 R >>
+stream
+0.615000 0 0.081000 -0.204000 0.569000 0.807000 d1
+
+endstream
+endobj
+
+676 0 obj
+ 51
+endobj
+
+677 0 obj
+ << /Length 678 0 R >>
+stream
+0.355000 0 0.033000 0.236000 0.322000 0.158000 d1
+
+endstream
+endobj
+
+678 0 obj
+ 50
+endobj
+
+679 0 obj
+ << /Length 680 0 R >>
+stream
+0.600000 0 0.088000 -0.010000 0.518000 0.658000 d1
+
+endstream
+endobj
+
+680 0 obj
+ 51
+endobj
+
+681 0 obj
+ << /Length 682 0 R >>
+stream
+0.522000 0 0.084000 0.000000 0.504000 0.804000 d1
+
+endstream
+endobj
+
+682 0 obj
+ 50
+endobj
+
+683 0 obj
+ << /Length 684 0 R >>
+stream
+0.694000 0 0.011000 0.000000 0.683000 0.731000 d1
+
+endstream
+endobj
+
+684 0 obj
+ 50
+endobj
+
+685 0 obj
+ << /Length 686 0 R >>
+stream
+0.600000 0 0.115000 -0.125000 0.415000 1.085000 d1
+
+endstream
+endobj
+
+686 0 obj
+ 51
+endobj
+
+687 0 obj
+ << /Length 688 0 R >>
+stream
+0.552000 0 0.012000 0.000000 0.541000 0.732000 d1
+
+endstream
+endobj
+
+688 0 obj
+ 50
+endobj
+
+689 0 obj
+ << /Length 690 0 R >>
+stream
+0.600000 0 0.080000 -0.180000 0.526000 1.000000 d1
+
+endstream
+endobj
+
+690 0 obj
+ 51
+endobj
+
+691 0 obj
+ << /Length 692 0 R >>
+stream
+0.412000 0 0.068000 0.000000 0.398000 0.590000 d1
+
+endstream
+endobj
+
+692 0 obj
+ 50
+endobj
+
+693 0 obj
+ << /Length 694 0 R >>
+stream
+0.452000 0 0.013000 0.000000 0.440000 0.733000 d1
+
+endstream
+endobj
+
+694 0 obj
+ 50
+endobj
+
+695 0 obj
+ << /Length 696 0 R >>
+stream
+0.526000 0 0.008000 0.000000 0.518000 0.524000 d1
+
+endstream
+endobj
+
+696 0 obj
+ 50
+endobj
+
+697 0 obj
+ << /Length 698 0 R >>
+stream
+0.579000 0 0.077000 0.000000 0.509000 0.599000 d1
+
+endstream
+endobj
+
+698 0 obj
+ 50
+endobj
+
+699 0 obj
+ << /Length 700 0 R >>
+stream
+0.355000 0 0.033000 0.260000 0.322000 0.116000 d1
+
+endstream
+endobj
+
+700 0 obj
+ 50
+endobj
+
+701 0 obj
+ << /Length 702 0 R >>
+stream
+0.742000 0 0.084000 0.000000 0.696000 0.804000 d1
+
+endstream
+endobj
+
+702 0 obj
+ 50
+endobj
+
+703 0 obj
+ << /Length 704 0 R >>
+stream
+0.600000 0 0.100000 0.000000 0.520000 0.830000 d1
+
+endstream
+endobj
+
+704 0 obj
+ 50
+endobj
+
+705 0 obj
+ << /Length 706 0 R >>
+stream
+0.617000 0 0.071000 -0.204000 0.576000 0.797000 d1
+
+endstream
+endobj
+
+706 0 obj
+ 51
+endobj
+
+707 0 obj
+ << /Length 708 0 R >>
+stream
+0.588000 0 0.011000 0.000000 0.577000 0.731000 d1
+
+endstream
+endobj
+
+708 0 obj
+ 50
+endobj
+
+709 0 obj
+ << /Length 710 0 R >>
+stream
+0.586000 0 0.077000 0.000000 0.520000 0.797000 d1
+
+endstream
+endobj
+
+710 0 obj
+ 50
+endobj
+
+711 0 obj
+ << /Length 712 0 R >>
+stream
+0.517000 0 0.007000 0.000000 0.510000 0.523000 d1
+
+endstream
+endobj
+
+712 0 obj
+ 50
+endobj
+
+713 0 obj
+ << /Length 714 0 R >>
+stream
+0.580000 0 0.036000 -0.246000 0.504000 0.798000 d1
+
+endstream
+endobj
+
+714 0 obj
+ 51
+endobj
+
+715 0 obj
+ << /Length 716 0 R >>
+stream
+0.617000 0 0.041000 -0.006000 0.546000 0.767000 d1
+
+endstream
+endobj
+
+716 0 obj
+ 51
+endobj
+
+717 0 obj
+ << /Length 718 0 R >>
+stream
+0.577000 0 0.047000 -0.006000 0.530000 0.575000 d1
+
+endstream
+endobj
+
+718 0 obj
+ 51
+endobj
+
+719 0 obj
+ << /Length 720 0 R >>
+stream
+0.600000 0 0.225000 -0.005000 0.375000 0.960000 d1
+
+endstream
+endobj
+
+720 0 obj
+ 51
+endobj
+
+721 0 obj
+ << /Length 722 0 R >>
+stream
+0.786000 0 0.008000 0.000000 0.778000 0.524000 d1
+
+endstream
+endobj
+
+722 0 obj
+ 50
+endobj
+
+723 0 obj
+ << /Length 724 0 R >>
+stream
+0.600000 0 0.088000 -0.010000 0.508000 0.828000 d1
+
+endstream
+endobj
+
+724 0 obj
+ 51
+endobj
+
+725 0 obj
+ << /Length 726 0 R >>
+stream
+0.600000 0 0.055000 0.000000 0.520000 0.755000 d1
+
+endstream
+endobj
+
+726 0 obj
+ 50
+endobj
+
+727 0 obj
+ << /Length 728 0 R >>
+stream
+0.293000 0 0.000000 0.000000 0.293000 1.000000 d1
+
+endstream
+endobj
+
+728 0 obj
+ 50
+endobj
+
+729 0 obj
+ << /Length 730 0 R >>
+stream
+0.368000 0 0.077000 0.000000 0.348000 0.599000 d1
+
+endstream
+endobj
+
+730 0 obj
+ 50
+endobj
+
+731 0 obj
+ << /Length 732 0 R >>
+stream
+0.291000 0 0.000000 0.000000 0.291000 1.000000 d1
+
+endstream
+endobj
+
+732 0 obj
+ 50
+endobj
+
+733 0 obj
+ << /Length 734 0 R >>
+stream
+0.248000 0 0.056000 0.000000 0.192000 0.789000 d1
+
+endstream
+endobj
+
+734 0 obj
+ 50
+endobj
+
+735 0 obj
+ << /Length 736 0 R >>
+stream
+0.369000 0 0.020000 -0.006000 0.337000 0.687000 d1
+
+endstream
+endobj
+
+736 0 obj
+ 51
+endobj
+
+737 0 obj
+ << /Length 738 0 R >>
+stream
+0.560000 0 0.047000 -0.006000 0.520000 0.575000 d1
+
+endstream
+endobj
+
+738 0 obj
+ 51
+endobj
+
+739 0 obj
+ << /Length 740 0 R >>
+stream
+0.600000 0 0.065000 -0.010000 0.510000 0.634000 d1
+
+endstream
+endobj
+
+740 0 obj
+ 51
+endobj
+
+741 0 obj
+ << /Length 742 0 R >>
+stream
+0.600000 0 0.085000 0.290000 0.515000 0.165000 d1
+
+endstream
+endobj
+
+742 0 obj
+ 50
+endobj
+
+743 0 obj
+ << /Length 744 0 R >>
+stream
+0.584000 0 0.081000 0.000000 0.514000 0.801000 d1
+
+endstream
+endobj
+
+744 0 obj
+ 50
+endobj
+
+745 0 obj
+ << /Length 746 0 R >>
+stream
+0.580000 0 0.036000 -0.246000 0.504000 0.798000 d1
+
+endstream
+endobj
+
+746 0 obj
+ 51
+endobj
+
+747 0 obj
+ << /Length 748 0 R >>
+stream
+0.600000 0 0.092000 -0.180000 0.512000 0.832000 d1
+
+endstream
+endobj
+
+748 0 obj
+ 51
+endobj
+
+749 0 obj
+ << /Length 750 0 R >>
+stream
+0.392000 0 0.019000 -0.006000 0.358000 0.688000 d1
+
+endstream
+endobj
+
+750 0 obj
+ 51
+endobj
+
+751 0 obj
+ << /Length 752 0 R >>
+stream
+0.890000 0 0.077000 0.000000 0.820000 0.599000 d1
+
+endstream
+endobj
+
+752 0 obj
+ 50
+endobj
+
+753 0 obj
+ << /Length 754 0 R >>
+stream
+0.615000 0 0.047000 -0.006000 0.534000 0.773000 d1
+
+endstream
+endobj
+
+754 0 obj
+ 51
+endobj
+
+755 0 obj
+ << /Length 756 0 R >>
+stream
+0.589000 0 0.068000 0.000000 0.529000 0.590000 d1
+
+endstream
+endobj
+
+756 0 obj
+ 50
+endobj
+
+757 0 obj
+ << /Length 758 0 R >>
+stream
+0.600000 0 0.072000 -0.140000 0.528000 1.062000 d1
+
+endstream
+endobj
+
+758 0 obj
+ 51
+endobj
+
+759 0 obj
+ << /Length 760 0 R >>
+stream
+0.593000 0 0.041000 -0.006000 0.553000 0.569000 d1
+
+endstream
+endobj
+
+760 0 obj
+ 51
+endobj
+
+761 0 obj
+ << /Length 762 0 R >>
+stream
+0.469000 0 0.032000 -0.006000 0.437000 0.560000 d1
+
+endstream
+endobj
+
+762 0 obj
+ 51
+endobj
+
+763 0 obj
+ << /Length 764 0 R >>
+stream
+0.600000 0 0.088000 -0.010000 0.512000 0.658000 d1
+
+endstream
+endobj
+
+764 0 obj
+ 51
+endobj
+
+765 0 obj
+ << /Length 766 0 R >>
+stream
+0.600000 0 0.055000 0.000000 0.545000 0.605000 d1
+
+endstream
+endobj
+
+766 0 obj
+ 50
+endobj
+
+767 0 obj
+ << /Length 768 0 R >>
+stream
+0.600000 0 0.088000 -0.010000 0.512000 0.658000 d1
+
+endstream
+endobj
+
+768 0 obj
+ 51
+endobj
+
+769 0 obj
+ << /Length 770 0 R >>
+stream
+0.600000 0 0.060000 0.000000 0.535000 0.790000 d1
+
+endstream
+endobj
+
+770 0 obj
+ 50
+endobj
+
+771 0 obj
+ << /Length 772 0 R >>
+stream
+0.438000 0 0.040000 0.473000 0.379000 0.294000 d1
+
+endstream
+endobj
+
+772 0 obj
+ 50
+endobj
+
+773 0 obj
+ << /Length 774 0 R >>
+stream
+0.600000 0 0.135000 -0.005000 0.490000 0.870000 d1
+
+endstream
+endobj
+
+774 0 obj
+ 51
+endobj
+
+775 0 obj
+ << /Length 776 0 R >>
+stream
+0.600000 0 0.065000 -0.010000 0.510000 0.634000 d1
+
+endstream
+endobj
+
+776 0 obj
+ 51
+endobj
+
+777 0 obj
+ << /Length 778 0 R >>
+stream
+0.600000 0 0.085000 -0.010000 0.515000 0.655000 d1
+
+endstream
+endobj
+
+778 0 obj
+ 51
+endobj
+
+779 0 obj
+ << /Length 780 0 R >>
+stream
+0.600000 0 0.040000 0.000000 0.550000 0.770000 d1
+
+endstream
+endobj
+
+780 0 obj
+ 50
+endobj
+
+781 0 obj
+ << /Length 782 0 R >>
+stream
+0.600000 0 0.075000 -0.110000 0.525000 1.015000 d1
+
+endstream
+endobj
+
+782 0 obj
+ 51
+endobj
+
+783 0 obj
+ << /Length 784 0 R >>
+stream
+0.469000 0 0.032000 -0.006000 0.437000 0.560000 d1
+
+endstream
+endobj
+
+784 0 obj
+ 51
+endobj
+
+785 0 obj
+ << /Length 786 0 R >>
+stream
+0.589000 0 0.068000 0.000000 0.529000 0.590000 d1
+
+endstream
+endobj
+
+786 0 obj
+ 50
+endobj
+
+787 0 obj
+ << /Length 788 0 R >>
+stream
+0.291000 0 0.000000 0.000000 0.291000 1.000000 d1
+
+endstream
+endobj
+
+788 0 obj
+ 50
+endobj
+
+789 0 obj
+ << /Length 790 0 R >>
+stream
+0.274000 0 0.071000 0.000000 0.204000 0.791000 d1
+
+endstream
+endobj
+
+790 0 obj
+ 50
+endobj
+
+791 0 obj
+ << /Length 792 0 R >>
+stream
+0.270000 0 0.045000 0.000000 0.225000 0.796000 d1
+
+endstream
+endobj
+
+792 0 obj
+ 50
+endobj
+
+793 0 obj
+ << /Length 794 0 R >>
+stream
+0.392000 0 0.019000 -0.006000 0.358000 0.688000 d1
+
+endstream
+endobj
+
+794 0 obj
+ 51
+endobj
+
+795 0 obj
+ << /Length 796 0 R >>
+stream
+0.614000 0 0.041000 -0.006000 0.546000 0.569000 d1
+
+endstream
+endobj
+
+796 0 obj
+ 51
+endobj
+
+797 0 obj
+ << /Length 798 0 R >>
+stream
+0.617000 0 0.071000 -0.204000 0.576000 0.797000 d1
+
+endstream
+endobj
+
+798 0 obj
+ 51
+endobj
+
+799 0 obj
+ << /Length 800 0 R >>
+stream
+0.625000 0 0.075000 0.000000 0.578000 0.795000 d1
+
+endstream
+endobj
+
+800 0 obj
+ 50
+endobj
+
+801 0 obj
+ << /Length 802 0 R >>
+stream
+0.392000 0 0.019000 -0.006000 0.358000 0.688000 d1
+
+endstream
+endobj
+
+802 0 obj
+ 51
+endobj
+
+803 0 obj
+ << /Length 804 0 R >>
+stream
+0.600000 0 0.115000 -0.125000 0.415000 1.085000 d1
+
+endstream
+endobj
+
+804 0 obj
+ 51
+endobj
+
+805 0 obj
+ << /Length 806 0 R >>
+stream
+0.591000 0 0.071000 0.000000 0.532000 0.791000 d1
+
+endstream
+endobj
+
+806 0 obj
+ 50
+endobj
+
+807 0 obj
+ << /Length 808 0 R >>
+stream
+0.274000 0 0.071000 0.000000 0.204000 0.791000 d1
+
+endstream
+endobj
+
+808 0 obj
+ 50
+endobj
+
+809 0 obj
+ << /Length 810 0 R >>
+stream
+0.615000 0 0.047000 -0.006000 0.534000 0.773000 d1
+
+endstream
+endobj
+
+810 0 obj
+ 51
+endobj
+
+811 0 obj
+ << /Length 812 0 R >>
+stream
+0.615000 0 0.081000 -0.204000 0.569000 0.807000 d1
+
+endstream
+endobj
+
+812 0 obj
+ 51
+endobj
+
+813 0 obj
+ << /Length 814 0 R >>
+stream
+0.615000 0 0.047000 -0.006000 0.534000 0.773000 d1
+
+endstream
+endobj
+
+814 0 obj
+ 51
+endobj
+
+815 0 obj
+ << /Length 816 0 R >>
+stream
+0.560000 0 0.047000 -0.006000 0.520000 0.575000 d1
+
+endstream
+endobj
+
+816 0 obj
+ 51
+endobj
+
+817 0 obj
+ << /Length 818 0 R >>
+stream
+0.551000 0 0.005000 0.000000 0.545000 0.521000 d1
+
+endstream
+endobj
+
+818 0 obj
+ 50
+endobj
+
+819 0 obj
+ << /Length 820 0 R >>
+stream
+0.577000 0 0.047000 -0.006000 0.530000 0.575000 d1
+
+endstream
+endobj
+
+820 0 obj
+ 51
+endobj
+
+821 0 obj
+ << /Length 822 0 R >>
+stream
+0.611000 0 0.047000 -0.006000 0.534000 0.575000 d1
+
+endstream
+endobj
+
+822 0 obj
+ 51
+endobj
+
+823 0 obj
+ << /Length 824 0 R >>
+stream
+0.471000 0 0.045000 -0.006000 0.420000 0.574000 d1
+
+endstream
+endobj
+
+824 0 obj
+ 51
+endobj
+
+825 0 obj
+ << /Length 826 0 R >>
+stream
+0.615000 0 0.081000 -0.204000 0.569000 0.807000 d1
+
+endstream
+endobj
+
+826 0 obj
+ 51
+endobj
+
+827 0 obj
+ << /Length 828 0 R >>
+stream
+0.615000 0 0.047000 -0.006000 0.534000 0.773000 d1
+
+endstream
+endobj
+
+828 0 obj
+ 51
+endobj
+
+829 0 obj
+ << /Length 830 0 R >>
+stream
+0.364000 0 0.029000 0.000000 0.341000 0.755000 d1
+
+endstream
+endobj
+
+830 0 obj
+ 50
+endobj
+
+831 0 obj
+ << /Length 832 0 R >>
+stream
+0.615000 0 0.081000 -0.006000 0.569000 0.807000 d1
+
+endstream
+endobj
+
+832 0 obj
+ 51
+endobj
+
+833 0 obj
+ << /Length 834 0 R >>
+stream
+0.560000 0 0.047000 -0.006000 0.520000 0.575000 d1
+
+endstream
+endobj
+
+834 0 obj
+ 51
+endobj
+
+835 0 obj
+ << /Length 836 0 R >>
+stream
+0.552000 0 0.012000 0.000000 0.541000 0.732000 d1
+
+endstream
+endobj
+
+836 0 obj
+ 50
+endobj
+
+837 0 obj
+ << /Length 838 0 R >>
+stream
+0.526000 0 0.008000 0.000000 0.518000 0.524000 d1
+
+endstream
+endobj
+
+838 0 obj
+ 50
+endobj
+
+839 0 obj
+ << /Length 840 0 R >>
+stream
+0.584000 0 0.081000 0.000000 0.514000 0.801000 d1
+
+endstream
+endobj
+
+840 0 obj
+ 50
+endobj
+
+841 0 obj
+ << /Length 842 0 R >>
+stream
+0.584000 0 0.081000 0.000000 0.514000 0.801000 d1
+
+endstream
+endobj
+
+842 0 obj
+ 50
+endobj
+
+843 0 obj
+ << /Length 844 0 R >>
+stream
+0.256000 0 0.084000 0.000000 0.172000 0.804000 d1
+
+endstream
+endobj
+
+844 0 obj
+ 50
+endobj
+
+845 0 obj
+ << /Length 846 0 R >>
+stream
+0.589000 0 0.047000 -0.006000 0.543000 0.575000 d1
+
+endstream
+endobj
+
+846 0 obj
+ 51
+endobj
+
+847 0 obj
+ << /Length 848 0 R >>
+stream
+0.589000 0 0.047000 -0.006000 0.543000 0.575000 d1
+
+endstream
+endobj
+
+848 0 obj
+ 51
+endobj
+
+849 0 obj
+ << /Length 850 0 R >>
+stream
+0.580000 0 0.070000 -0.006000 0.503000 0.592000 d1
+
+endstream
+endobj
+
+850 0 obj
+ 51
+endobj
+
+851 0 obj
+ << /Length 852 0 R >>
+stream
+0.246000 0 0.052000 -0.006000 0.194000 0.194000 d1
+
+endstream
+endobj
+
+852 0 obj
+ 51
+endobj
+
+853 0 obj
+ << /Length 854 0 R >>
+stream
+0.368000 0 0.077000 0.000000 0.348000 0.599000 d1
+
+endstream
+endobj
+
+854 0 obj
+ 50
+endobj
+
+855 0 obj
+ << /Length 856 0 R >>
+stream
+0.577000 0 0.047000 -0.006000 0.530000 0.575000 d1
+
+endstream
+endobj
+
+856 0 obj
+ 51
+endobj
+
+857 0 obj
+ << /Length 858 0 R >>
+stream
+0.291000 0 0.000000 0.000000 0.291000 1.000000 d1
+
+endstream
+endobj
+
+858 0 obj
+ 50
+endobj
+
+859 0 obj
+ << /Length 860 0 R >>
+stream
+0.291000 0 0.000000 0.000000 0.291000 1.000000 d1
+
+endstream
+endobj
+
+860 0 obj
+ 50
+endobj
+
+861 0 obj
+ << /Length 862 0 R >>
+stream
+0.369000 0 0.020000 -0.006000 0.337000 0.687000 d1
+
+endstream
+endobj
+
+862 0 obj
+ 51
+endobj
+
+863 0 obj
+ << /Length 864 0 R >>
+stream
+0.625000 0 0.075000 0.000000 0.578000 0.795000 d1
+
+endstream
+endobj
+
+864 0 obj
+ 50
+endobj
+
+865 0 obj
+ << /Length 866 0 R >>
+stream
+0.368000 0 0.077000 0.000000 0.348000 0.599000 d1
+
+endstream
+endobj
+
+866 0 obj
+ 50
+endobj
+
+867 0 obj
+ << /Length 868 0 R >>
+stream
+0.256000 0 0.042000 0.473000 0.199000 0.296000 d1
+
+endstream
+endobj
+
+868 0 obj
+ 50
+endobj
+
+869 0 obj
+ << /Length 870 0 R >>
+stream
+0.251000 0 0.081000 0.000000 0.170000 0.801000 d1
+
+endstream
+endobj
+
+870 0 obj
+ 50
+endobj
+
+871 0 obj
+ << /Length 872 0 R >>
+stream
+0.471000 0 0.045000 -0.006000 0.420000 0.574000 d1
+
+endstream
+endobj
+
+872 0 obj
+ 51
+endobj
+
+873 0 obj
+ << /Length 874 0 R >>
+stream
+0.471000 0 0.045000 -0.006000 0.420000 0.574000 d1
+
+endstream
+endobj
+
+874 0 obj
+ 51
+endobj
+
+875 0 obj
+ << /Length 876 0 R >>
+stream
+0.469000 0 0.032000 -0.006000 0.437000 0.560000 d1
+
+endstream
+endobj
+
+876 0 obj
+ 51
+endobj
+
+877 0 obj
+ << /Length 878 0 R >>
+stream
+0.910000 0 0.068000 0.000000 0.850000 0.590000 d1
+
+endstream
+endobj
+
+878 0 obj
+ 50
+endobj
+
+879 0 obj
+ << /Length 880 0 R >>
+stream
+0.593000 0 0.041000 -0.006000 0.553000 0.569000 d1
+
+endstream
+endobj
+
+880 0 obj
+ 51
+endobj
+
+881 0 obj
+ << /Length 882 0 R >>
+stream
+0.293000 0 0.000000 0.000000 0.293000 1.000000 d1
+
+endstream
+endobj
+
+882 0 obj
+ 50
+endobj
+
+883 0 obj
+ << /Length 884 0 R >>
+stream
+0.570000 0 0.041000 -0.006000 0.535000 0.569000 d1
+
+endstream
+endobj
+
+884 0 obj
+ 51
+endobj
+
+885 0 obj
+ << /Filter /FlateDecode
+ /Length 886 0 R
+ >>
+stream
+x�ÚÍnÛF†á½®‚ËvHü•øxÑ6¨{ŠD»jY�å…ï¾gø·‰€¼£ƒÄþD
çNSbƒ±§Íîu?½�¶»é¼=>O‹»Õê>¹ÇûÅtÜ_ýÎ_ñíi÷÷öìÉÕj�ÍYÿéu&U¦ L¦LN™|ÎTeŠ9³^Q¦œ3YJ™jÎT5eÖs&×<ùO¯3ezÊÔs&ÛP¦QÇÓzfµZ5á lçÙÌÞ7±|ÿ]žrÜ«Ò�»>èuãüº¼ƒL*kÕ-•µª¤Œ¬UeS8"מÊúM宪(#wh3•;\©ÜUs-¿¢åTršÊ ®¿TUÊÉ×RæÖYì\níÈWÕ…sEæ+“3ìiÖ